I have the next query:
select 'some text: ' + cast(description as varchar(8000)) + ' end text'
From descriptionTable
but my description field it’s larger than 8000 chars, so what can I do?, or do I have to make an application.
Thanks,
j2gl
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try this:
Because
Returns 8000 and 8020 respectively. Good luck.