Hi... in a stored procedure, I can create a varchar > 255 in length & use print to get the required result, but if use select, truncates to 255 chars... any help/ideas/workarounds please?
--------------------------------------- PRINT @myvarchar -- this shows > 255chars SELECT @myvarchar -- this TRUNCATES to 255chars ---------------------------------------