Dec 3, 2003 #1 rajkum Programmer Jul 30, 2003 48 US Hi I have a string variable in Stored Proc which is greater than 8000 characters. how do i deal with it? It is a SQL statement i am generating dynamically for a report. Thanks, Raj
Hi I have a string variable in Stored Proc which is greater than 8000 characters. how do i deal with it? It is a SQL statement i am generating dynamically for a report. Thanks, Raj
Dec 3, 2003 #2 Jamfool IS-IT--Management Apr 10, 2003 484 GB if it is this sort of thing exec (@statement) you could try splitting it to exec (@statement_p1 + @statement_p2) Upvote 0 Downvote
if it is this sort of thing exec (@statement) you could try splitting it to exec (@statement_p1 + @statement_p2)