Viewing 15 posts - 2,476 through 2,490 (of 4,081 total)
The trigger will always fire, and will only fire, when an INSERT takes place. You will have to put logic within the trigger to test for the other conditions,...
August 31, 2009 at 3:00 pm
Why not?
August 31, 2009 at 1:57 pm
Did you have a copy of the execution plan from back before you ever started making changes?
Parameter sniffing refers to SQL generating an execution plan for a stored procedure based...
August 31, 2009 at 1:11 pm
This will illustrate using OPENROWSET to read the contents of the XML file.
Obviously you could take the FROM OPENROWSET and use it to insert a row into a table, update...
August 31, 2009 at 1:05 pm
The change in datatype shouldn't have made that much of a difference.
It is possible that your prior poor performance was due to "parameter sniffing". ...
August 31, 2009 at 12:56 pm
Is the name of the file containing the XML going to be the same every time?
August 31, 2009 at 12:12 pm
You da man, Steve.
Of course, I may not be able to derive to a point anymore....
August 31, 2009 at 11:26 am
Is it just me, or has his grammar improved?
August 31, 2009 at 10:10 am
Don't do it Lynn!!
Give no quarter!! Take no prisoners!!
Give them a broadside and see if they've got the stomach for combat!!
(Sorry... I've...
August 31, 2009 at 9:41 am
Nice going, Jordan! 😀
Have another cup of coffee and carry on. It's Monday and we all need all the help we can get.
August 31, 2009 at 9:33 am
You're welcome, Pakki.
Jeff, I decided if I kept on changing nicknames in addition to avatars I might give Steve a stroke. So out of consideration for his enlightened...
August 31, 2009 at 9:31 am
Can we have some sample data and can you tell us exactly what errors you are experiencing?
If you read this article and follow the suggestions it...
August 30, 2009 at 9:55 pm
While we're on the subject, ISNUMERIC() doesn't even truly mean NUMERIC.
declare @testString varchar(10)
set @testString = '.'
select @testString as [@testString], isnumeric(@testString) as [IsNumeric]
set @testString = ',,'
select @testString as [@testString], isnumeric(@testString) as...
August 30, 2009 at 9:45 pm
Edited to say:
Reply entered by mistake, but I can't delete this entry now.
Nothing to see here. Move along.... move along.
August 30, 2009 at 3:42 pm
Viewing 15 posts - 2,476 through 2,490 (of 4,081 total)