Viewing 15 posts - 19,156 through 19,170 (of 22,202 total)
You should be getting a return code from the procedure when it's called initially. Normally, unless you mess with it, it's 0 for success and any other value for failure....
December 5, 2008 at 6:10 am
Prior to 2005, people (including me) tried using OPENXML to perform this function. It worked reasonably well, but instantiating the XML document back then was a pretty major performance hit,...
December 5, 2008 at 5:51 am
adrian (12/4/2008)
The following query generates the selectselect.jpg execution planselect * from (Select dbo.cap_parm('SAMPLES\PARAMETERS\Month') as a) xxx
Whereas this
Select dbo.cap_parm('SAMPLES\PARAMETERS\Month')
generates the select.jpg execution plan
They both appear identical
Yeah, from this script alone, they...
December 5, 2008 at 5:45 am
It's 4,5,and 6 that we're going for, paying for them with 1,2 and 3 and the other things already mentioned on this thread because, after all, TANSTAAFL.
December 5, 2008 at 5:25 am
Just a wrinkle on top of what you're doing, get individual scripts for each object, not one script for the entire database. It's more difficult to work with individual objects...
December 5, 2008 at 5:23 am
Tempdb is the biggest cauion in the lot. You have to know that if the tempdb fills while dealing with READ COMMITTED SNAPSHOT, then the read's against the data aren't...
December 4, 2008 at 12:33 pm
meichner (12/4/2008)
December 4, 2008 at 12:28 pm
I'm not aware of any differences in behavior on READ COMMITTED SNAPSHOT. They did introduce the SNAPSHOT isolation level though. It's much more stringent and requires actual code changes to...
December 4, 2008 at 12:23 pm
I might be off on this, but did you try this;
INSERT INTO xTable ( xCol )
VALUES ( @xmlEvents)
December 4, 2008 at 12:11 pm
I wish I knew.
You can look at the date that the statistics were last updated. If it seems to long ago (very scientific) then you can update it. You've got...
December 4, 2008 at 8:11 am
You can't put them both within the same IF clause? It's pretty simple really, if one can evaluate and the other can't, you're going to arrive at a logical error....
December 4, 2008 at 7:56 am
Hey Barry,
Yeah, the GDR got released last Tuesday. FINALLY. And yeah, DBPro & Visual Studio Team System Database Edition are the same things.
That's a good idea. I'm in the middle...
December 4, 2008 at 6:41 am
ritesh.saluja (12/4/2008)
When the performance of import would be better.
1. When I remove the index in the table and then...
December 4, 2008 at 6:36 am
Check the connection settings between the two, especially the ANSI settings. I wouldn't be surprised if they're different.
December 4, 2008 at 6:32 am
I'm not sure, but the first question I'd have is, what does the execution plan of the scalar function look like, all by it's lonesome?
December 4, 2008 at 6:29 am
Viewing 15 posts - 19,156 through 19,170 (of 22,202 total)