On Saturday, 11 May 2013 14:21:35 UTC+1, contracer wrote:
> Hi,
>
> Please, can you help me how extract nth word in string ccs.errormessage ?
I think /that's/ a case to write a user-defined function,
particularly if n isn't fixed. In the function, you can
use CHARINDEX(' ', @message, @previousSpace+1) to find
each word break - if the word break is a single space.