Viewing 15 posts - 8,341 through 8,355 (of 14,953 total)
Hire someone who knows SQL Server, probably a contractor, and have them look at your database.
Something is causing the blocks. Till you know what, and solve it, nothing else...
September 23, 2009 at 7:46 am
I'd have to go with "it depends".
If you're doing the assigned duties of your job correctly and efficiently, but can't do anything beyond that, you're not failing your employer. ...
September 23, 2009 at 7:42 am
ZA_Crafty (9/22/2009)
It became simply too easy to ask something on a forum, or search it on google.
Welcome to the New Generation of IT.
If you...
September 23, 2009 at 7:38 am
Lynn Pettis (9/22/2009)
Jeff Moden (9/22/2009)
Lynn Pettis (9/22/2009)
September 22, 2009 at 2:51 pm
Jeff beat me to the punch on limiting the total number of rows processed as an added speed boost.
Lynn, try this with the function:
select *
from dbo.ufn_tally2(1,-1,1);
You can correct for that...
September 22, 2009 at 2:48 pm
Jeff Moden (9/22/2009)
timothyawiseman (9/22/2009)
September 22, 2009 at 2:09 pm
Lynn Pettis (9/22/2009)
row_number() over (order by a1.N)
Something I have noticed when working with the windowing functions in queries using them, if the...
September 22, 2009 at 2:02 pm
I'd also be more inclined to believe that it's either a parameter sniffing problem, or a case of where you really need two different execution plans.
Have you tried running it...
September 22, 2009 at 12:07 pm
Is this part hard-coded:
(empcode between '99201' and '99205' or empcode between '99211' and '99215' or
empcode between '99241' and '99245' or empcode between '99354' and '99355' or
empcode between '99381'...
September 18, 2009 at 12:34 pm
Paul White (9/18/2009)
Whenever I consider writing for SSC, two things put me off:1. The submission process itself; and
2. The daft comments
Paul
I must be doing something wrong. I've...
September 18, 2009 at 7:29 am
Lynn Pettis (9/17/2009)
September 18, 2009 at 7:25 am
Simon-413722 (9/15/2009)
September 18, 2009 at 7:20 am
Ol'SureHand (9/15/2009)
rob.lobbe (9/15/2009)
This works if you are the ONLY one using the database.Running in a production system you can't just go about changing the recovery model.
Not so sure about it.
MSDN...
September 18, 2009 at 7:19 am
crainlee2 (9/17/2009)
Any idea why searching with a LIKE clause on an indexed table would be slower than searching with a LIKE clause on a non-indexed table?LC
Can you post both execution...
September 18, 2009 at 7:04 am
It'll have to be a job that runs in those databases, since create/alter commands don't play well with three-part-names.
Create a job that queries the DDL log for new objects, parses...
September 17, 2009 at 11:48 am
Viewing 15 posts - 8,341 through 8,355 (of 14,953 total)