Viewing 15 posts - 4,411 through 4,425 (of 5,685 total)
GSquared (1/10/2011)
Since you're using SQL 2008, can you switch from delimited lists of parameter values to a table variable parameter? Those are more efficient.
I haven't had the opportunity to...
January 10, 2011 at 5:15 pm
Not all of us that got it wrong misunderstood the question. Some of us learned/were reminded of something today... like why I always seem to use INSTEAD OF triggers.
:blush:
January 10, 2011 at 4:25 pm
mister.magoo (1/10/2011)
mounish (1/10/2011)
January 10, 2011 at 4:20 pm
mounish (1/10/2011)
Tried that too, Still no change !!
Heh, and if you can't easily compare what you have to Lutz, it sounds like you've buried this in a larger query... can...
January 10, 2011 at 4:00 pm
If this isn't the first statement in the batch, you need a semicolon.
Change:
WITH cte AS
to:
;WITH cte AS
January 10, 2011 at 3:00 pm
There's a number of solutions out there, but the problem is you have to know what you're looking for.
For example, the First-In First-Out logic (FIFO)
Google: SQL FIFO Inventory
This is from...
January 10, 2011 at 2:56 pm
Lamprey13 (1/10/2011)
What is the question?
It was in the subtitle on the main page, it doesn't show here, unfortunately, and he didn't realize he'd need to repeat it in the first...
January 10, 2011 at 1:25 pm
You can't use IF mid-query. IF is used for proc control, not mid-statement decisions, you want CASE for that usually, but neither here...
So this:
F @ContactType = 'Broker'
Begin
SET s.BrokerID =...
January 10, 2011 at 1:24 pm
siamak.s16 (1/10/2011)
January 10, 2011 at 1:17 pm
To answer your question directly:
No, removing the 1=1 component in the where clause will not affect performance. As a matter of fact, 1=1 never does anything in the optimizer,...
January 10, 2011 at 12:58 pm
Grant Fritchey (1/10/2011)
Craig Farrell (1/10/2011)
Grant Fritchey (1/10/2011)
January 10, 2011 at 12:55 pm
Ninja's_RGR'us (1/10/2011)
Craig Farrell (1/10/2011)
Yikes. Wow. :w00t:
Now, THAT'S a Table Spool. Just the estimate, I know,...
January 10, 2011 at 12:52 pm
An alternate solution would be to have a server trigger generate a Service Broker item, and then have the recieving queue do a send_db_mail. Or just have the trigger...
January 10, 2011 at 12:45 pm
a_ud (1/10/2011)
January 10, 2011 at 10:45 am
Viewing 15 posts - 4,411 through 4,425 (of 5,685 total)