I leave it to you to apply this to a table... 
Declare @str varchar(1000), @Source varchar(100)Set @str = 'some text some text SOURCE text to retrieve SOURCE some text some text'Set @Source = 'SOURCE'Select @str, substring(@str, charindex(@Source,@str,1)+LEN(@Source), charindex(@Source,@str,charindex(@Source,@str,1)+1) - (charindex(@Source,@str,1)+LEN(@Source)) )
Corey
snSQL on previous signature "...Oh and by the way Seventhnight, your signature is so wrong! On so many levels, morally, gramatically and there is a typo!"