I would like to execute dynamic SQL statements which are about 10,000 characters.

When I use sp_executesql as below:

DECLARE @stmt varchar(MAX)

SET @stmt = 'xxxxxxxx.................' which is about 10,000 characters

EXEC sp_executesql @stmt

I got the following error

The character string that starts with '  select t1.e_reference xxxxxxxxxxx' is too long. Maximum length is 8000. 

As far as I know, we can use sp_executesql to execute very long statements, can't we?

I am using SQL Server 2008, Enterprise Edition, 64 bit.

How can I achieve this? Thanks.

link|improve this question

75% accept rate
Try it with nvarchar(max), it takes a nvarchar parameter, so your varchar is having to be converted, slim chance that is causing the problem – Andrew Nov 16 '11 at 11:50
I have tried it with nvarchar(MAX) as well. But it doesn't work. – TTCG Nov 16 '11 at 11:56
1  
Can you show more of your actual query? I can't reproduce this. In fact I can't even see that error in sys.messages. Are you querying a linked server? – Martin Smith Nov 16 '11 at 13:05
Yes, Martin. I am querying against Oracle Linked Server. – TTCG Nov 16 '11 at 14:09
The linked server part is kind of important information, well done to Martin for picking up on it – Andrew Nov 17 '11 at 14:37
feedback

2 Answers

Firstly, of course I agree refactor the SQL to be less than 8000, but that's not always possible in all situations.

You can split the query into multiple strings, and don't use sp_executesql

eg.

Declare @sql1 varchar(max)
Declare @sql2 varchar(max)

Select @sql1 = 'long string'
Select @sql2 = 'long string part 2'

exec (@sql1 + @sql2)

If you are querying against Oracle linked server using OpenQuery, then that has to be part of the string too e.g.

Select @sql1 = 'select blah from Openquery(oracleserver,''Select oracle stuff'')'

making sure to get the right number of single quotes in there.

link|improve this answer
feedback

The @stmt parameter for sp_executesql has a data type of nvarchar(8000), so you have exceeded the limit.

Either refactor your SQL statements into smaller parts, or put the SQL into a stored procedure.

link|improve this answer
based on what do you say it ? – Royi Namir Nov 16 '11 at 11:53
msdn.microsoft.com/en-us/library/ms188001(v=SQL.100).aspx - for a while now the docs have shown it is limited by nvarchar(max), historically back in sql 2k you would be right – Andrew Nov 16 '11 at 11:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.