Viewing 15 posts - 5,176 through 5,190 (of 5,843 total)
1) Did you show the xml query plan or all text plan and verify that the query was doing partition elimination and only reading the march partition?
2) Does the fragmentation...
May 19, 2008 at 12:17 pm
A LOT of stuff happens when you issue a simple SELECT statement! While the select is running, you certainly wouldn't want someone to alter the table underneath you and...
May 16, 2008 at 7:32 am
Spot-on Mario!
Oh, and for this one "It's as if people naively think the tool itself will solve all their problems with no tuning necessary. I've witnessed this all too often...
May 15, 2008 at 11:02 am
blocking is definitely the first thing to look for here. 12 logical reads returning 200-300 rows is essentially instantaneous yet the query took 14 sec.
May 15, 2008 at 7:22 am
I told you how to check for blocks: sp_who2 active
you don't do hash joins - the optimizer can. forget I mentioned it
cross product is when joins are many-to-many...
May 15, 2008 at 5:35 am
1) have you checked for blocking? These two tables are EXTREMELY small and even if they are a massive cross product and/or have to do a hash join they...
May 15, 2008 at 5:12 am
1) IMNSHO, the tlog has nothing to do with the described behavior. It is a red herring.
2) You need to find out why, very specifically, things are running slow....
May 15, 2008 at 5:06 am
colin Leversuch-Roberts (5/14/2008)
May 14, 2008 at 3:58 pm
Marios Philippopoulos (5/14/2008)
dsc (5/14/2008)
It'll most end in answers like "It's not the SAN, it's it usage by applications". It's also almost impossible to get a meanigful overview of the current...
May 14, 2008 at 12:12 pm
Jeffrey Irish (5/14/2008)
SQL Server Guru might be right, but then what exactly do you learn?
Any good perf tuner should ensure proper mentoring of permanent staff when called in for a...
May 14, 2008 at 11:23 am
stefanogalizia (5/13/2008)
thanks for responses. The db is not serving a web site but a massive SMS sending, we are a mobileVAS provider.
At the moment, to be honest,...
May 14, 2008 at 7:47 am
Hans Lindgren (5/14/2008)
GilaMonster (5/12/2008)
Is the DB set to autoclose?
I just wanted to point out that if the DB is being hit 600 times per minute no SQL Server Instance would...
May 14, 2008 at 7:41 am
1) Several people here have a mis-conception about what a clustered index scan is. It IS a table scan in this case.
2) Jeff is probably right (as usual) -...
May 14, 2008 at 7:28 am
I believe the distance limit for LVD SCSI is 25 meters. (http://www.interfacebus.com/Design_Connector_SCSI.html). not sure of other, newer technologies, but 25meters gives a LOT of room for drives to attach...
May 13, 2008 at 6:05 pm
CoetzeeW (5/13/2008)
Good...
May 13, 2008 at 5:51 pm
Viewing 15 posts - 5,176 through 5,190 (of 5,843 total)