In SQL 2000, I have a varchar(5000) field that is filled with only 803 characters (including spaces) when I do:
select LEN(Field) from Table1
I get 803 characters as the length.
When I do:
Select Field from Table1
I get only the first 255 characters of the 803.
Is there a limit as to how much data a select will return?
How do I select the entire contents of the field and return it to the Query Analyzer?
Thanks,
Craig
select LEN(Field) from Table1
I get 803 characters as the length.
When I do:
Select Field from Table1
I get only the first 255 characters of the 803.
Is there a limit as to how much data a select will return?
How do I select the entire contents of the field and return it to the Query Analyzer?
Thanks,
Craig