Viewing 15 posts - 6,811 through 6,825 (of 7,636 total)
OK, I have it, tried it and get the same error.
This appears to be a simple length limitation in XML. removing any one text character makes the error go...
May 27, 2008 at 1:12 pm
Matt makes a great point. We really need the DDL's also.
May 27, 2008 at 12:24 pm
Sorry, I am pretty sure that the only ways for you to return information from a function are through the Function return value itself or else as an exception. ...
May 27, 2008 at 12:20 pm
We cannot read this very well, the tags all got eaten by the BB software. Could you please re-edit it with the editor at this link:http://extras.sqlservercentral.com/prettifier/prettifier.aspx and re-post it?
Thanks,
May 27, 2008 at 12:13 pm
Chirag (5/26/2008)
I have already queried sys.objects table and there is no object named "PositionInsert_sp".
When you did this, did you use "WITH [NOLOCK]"? If not, try it with NOLOCK, you...
May 27, 2008 at 12:09 pm
You need to put the verb "EXEC " in front of the ""sp_detach_db"'s in order to execute them.
You can get away without it only for the first command in a...
May 27, 2008 at 12:03 pm
Robert A. Schottland (5/27/2008)
May 27, 2008 at 12:00 pm
Matt Miller (5/27/2008)
within SSMS: Tools, Options, Scripting. Set the extended properties to FALSE, and enable scripting the permissions. These set the default scripting options.
I always forget where they hide...
May 27, 2008 at 11:49 am
Show us the whole procedure. Not just the DELETE query. The other parts of the procedure are important to this also because they are all part of the...
May 27, 2008 at 11:47 am
Well, your not giving us much of the context there, but try doing a DELETE TOP (10000) instead, with a WHILE loop around it that loops until @@ROWCOUNT=0.
Of course, I...
May 27, 2008 at 11:19 am
Not sure if this is your problem, but I don't think that you can do that from a CLR function. SQLFunctions have a great number of restrictions on them....
May 27, 2008 at 11:13 am
Adam Machanic's books are excellent: Expert SQL Server 2005 Development and Pro SQL Server 2005.
May 27, 2008 at 11:10 am
Viewing 15 posts - 6,811 through 6,825 (of 7,636 total)