Viewing 15 posts - 4,186 through 4,200 (of 9,643 total)
After I submitted my last post I noticed you were really asking for performance. Really the only thing you can do is index and update stats. If your...
September 24, 2009 at 2:04 pm
Do you mean that you replaced the WHERE with an AND to put the t.phonenumber is null part of the ON clause of the LEFT OUTER JOIN?
If this is what...
September 24, 2009 at 1:52 pm
The only problem with using BETWEEN is that it evaluates to >= and = and = '9/1/2009' AND
theDate < '10/1/2009'
[/code]
September 24, 2009 at 1:19 pm
Usually this means you have an object that extends beyond the borders of the page. It's usually something being wider than the margins of the page. Preview is...
September 24, 2009 at 1:00 pm
I personally think encrypting sp's is a waste of time. If you are concerned about your IP or proprietary business logic it should go in the application or use...
September 24, 2009 at 12:54 pm
As usual it depends. If your business logic requires rbar you should have it in SSIS. If it can be don in a set based fashion use sp's.
September 24, 2009 at 8:50 am
I'm a fan of artificial keys for reasons already mentioned. Remember that SQL server defaults the pk to also be the clustered index so that data is also contained...
September 24, 2009 at 8:34 am
Is this a stored procedure or adhoc SQL? If it is a stored procedure you might be dealing with parameter sniffing.
In some cases option recompile might be the...
September 24, 2009 at 8:22 am
Grant Fritchey (9/24/2009)
Steve, is the SSC party on Monday night this year? I haven't paid for my entry fee to it yet. Need to get that done.
You definitely do. ...
September 24, 2009 at 7:51 am
Bob Hovious 24601 (9/23/2009)
AllRIGHT! Extra effort paid off. I just got approval to go to PASS. 😀 😀 😀
Awesome! Another...
September 24, 2009 at 7:27 am
GSquared (9/23/2009)
Silverfox (9/23/2009)
Gianluca Sartori (9/23/2009)
He already has decided to increase lock timeout and kill process, so, why...
September 23, 2009 at 10:22 am
Grant Fritchey (9/22/2009)
Jack Corbett (9/22/2009)
September 22, 2009 at 2:51 pm
I don't think you need a temp table. You just need to take out any reference to the server name from the query.
September 22, 2009 at 2:39 pm
You can restore msdb like any other database, http://msdn.microsoft.com/en-us/library/ms190749(SQL.90).aspx, if you have a backup. You can also restore master as well, http://msdn.microsoft.com/en-us/library/ms190679(SQL.90).aspx, if you have a backup.
If you do...
September 22, 2009 at 1:56 pm
Viewing 15 posts - 4,186 through 4,200 (of 9,643 total)