I am over SQL Server 2008 and I have a field with a huge amount of data. When I apply...
DATALENGTH(field_name)
... I get to know my field is 288.946 characters long, but on MS SQL Server Management Studio, when I try to copy-paste the result of a simple SELECT of that field into a text editor (Notepad+), it seems like SQL Server only packs 43.679 characters... Or is it that the buffer for copying text in Windows is blowing the maximum number of characters? I have tested already and the limit isn't with Notepad+ line size or something... If I copy-paste into a new query window in SQL Server, the result is the same text string limited to 43.679 characters.
Well, the question is: I need to copy-paste the whole content of that field... Is there something special I should do in my query? Thank you.