
Copying data from a TEXT field into two Varchar fields
convert(varchar(255), text_col) will retrieve the first 255 characters. Then
delete these (with updatetext) and get the next 255 the same way. (You'll
probably want to copy the text data to a temp table before yuo do this).
Christer Romson
Terence:
Quote:
>I'm having difficulty in finding out how to copy data from a TEXT field,
>which would contain no more than 400 chars, into two Varchar fields of 200.
>If anyone has any ideas on how to do this, I would greatly appreciate any
>help.