Viewing 12 posts - 16 through 27 (of 27 total)
Ninja's_RGR'us (5/11/2011)
ilker.cikrikcili (5/11/2011)
Procedure expects parameter '@statement' of type 'ntext/nchar/nvarchar'.
I have the same problem, I need a 8000 long...
May 11, 2011 at 7:01 am
sql server forces me to use nvarchar of which max size is 4000:
Procedure expects parameter '@statement' of type 'ntext/nchar/nvarchar'.
I have the same problem, I need a 8000 long data type....
May 11, 2011 at 6:50 am
Opps, I realised that it's not because of varchar(max) but DECLARE @sql NVARCHAR(1000);
I created another topic since this problem is not related to current topic.
http://www.sqlservercentral.com/Forums/Topic1106826-391-1.aspx
May 11, 2011 at 6:30 am
Dear all,
This query was working all right until today:
DECLARE @sql NVARCHAR(1000);
SET @sql = 'SELECT ''' + STUFF((
...
May 10, 2011 at 4:36 am
Thanks for advice, I'll keep in mind. But for the time being, we have single schema in DB.
April 19, 2011 at 9:46 am
Yes, you are right.
I haven't read the article yet but will do it.
Your query is clear for me, I've even converted it to query the actual tables in...
April 19, 2011 at 9:34 am
Yes! That's it!!
Thank you very much 🙂
April 19, 2011 at 9:18 am
Hi Guys,
Any update on this? 🙂
Regards
ilker
April 19, 2011 at 7:55 am
Lynn Pettis (4/18/2011)
April 18, 2011 at 10:31 am
Hmm, yes, I can't use column names in the query no matter I'm doing it with function calls or not.
As I've written in my previous post, I won't know...
April 18, 2011 at 10:28 am
Hi parthi-1705,
Yes, that's exactly what I needed but when I run your query I couldn't get columnNames:data pairs.
Let me do further tests, I'll let you know.
Thank you very much
April 18, 2011 at 10:16 am
Lynn Pettis (4/18/2011)
Why all the function calls?
Because I won't know column names at run time. Even I won't know table name. Table name will passed as a parameter to my...
April 18, 2011 at 10:12 am
Viewing 12 posts - 16 through 27 (of 27 total)