Viewing 15 posts - 16 through 30 (of 71 total)
I don't know how big your tables are, but unless you have asynchronous updates of stats turned on then is is possible that you will encounter delays and possibly timeouts...
September 6, 2010 at 4:19 am
I'm in total agreement that in this scenario, and for new functionality in particular, the requirements should first be questioned before spending too much time/money on tuning. Ideally the project...
July 14, 2010 at 2:04 am
This makes an interesting read, particularly regarding SQL 2005 SP3's attempts to lower granularity to 1ms, but the article doesn't specifically mention GETDATE():
[url=During startup SQL Server attempts to lower the...
May 12, 2010 at 8:00 am
Paul White NZ (5/7/2010)
Hey Chris,I checked with Itzik and he agrees with my analysis...
Paul, thanks for following this up - the clarification is greatly appreciated.
Cheers
Chris
May 9, 2010 at 2:12 am
Paul White NZ (5/6/2010)
Chris Howarth-536003 (5/6/2010)
May 7, 2010 at 1:03 am
Bhuvnesh (5/4/2010)
Paul White NZ (5/4/2010)[hrHave you considered using a SELECT...INTO statement to create the table at the same time as loading? This can be minimally logged too, and is...
May 6, 2010 at 3:54 am
jcrawf02 (4/21/2010)
How do you replicate a LEFT JOIN using the where clause?
Since you asked (compatibility level 80 or lower):
WITH CTELeft
AS
(SELECT 1 AS ID UNION
SELECT 2UNION
SELECT 3UNION
SELECT 4),
CTERight
AS
(SELECT 1...
April 27, 2010 at 4:56 am
Paul White NZ (4/7/2010)
Chris Howarth-536003 (4/7/2010)
April 7, 2010 at 6:46 am
bobmclaren (4/1/2010)
I really just want to "clean it up" so that it doesn't fill my logs with so much noise.
If this is the only reason that you are looking to...
April 7, 2010 at 6:34 am
DBCC UPDATEUSAGE - doesn't that only have to be run on SQL 2000 or upon upgrade from 2000 -> 2005?
I thought the issue had been corrected in 2005 onwards?
DBCC UPDATEUSAGE...
March 27, 2010 at 1:24 am
I prefer to use system objects that aren't marked for removal from a future release of SQL Server, I prefer not to use undocumented stored procs, and I prefer accuracy...
March 26, 2010 at 8:19 am
Great article, this will be very useful.
I spotted a typo on line 65 of your stored proc:
from ::fn_trace_geteventinfo(1) AS X
...should be:
from ::fn_trace_geteventinfo(@traceid) AS X
Cheers
Chris
March 23, 2010 at 3:04 am
We keep three days of full backups (one per night) and log backups (taken at 10 min intervals for core databases, 1 hour intervals for others) in a share. We...
February 13, 2010 at 9:15 am
If you are a local admin then on a non-clustered instance you can gain System Administrator access to SQL Server by simply adding your Windows account (local or domain) to...
February 9, 2010 at 5:38 am
Viewing 15 posts - 16 through 30 (of 71 total)