Viewing 15 posts - 391 through 405 (of 430 total)
amit.sharma 20949 (4/15/2011)
kindly do reindexing of the databse
should not be tried as the first step in troubleshooting!
April 19, 2011 at 1:50 am
sunshine-587009 (4/18/2011)
We've had a linked server to db2 since last year and have only recently experienced hanging jobs. The job runs a stored procas which selects data from DB2...
April 19, 2011 at 1:47 am
Lowell (4/13/2011)
adding and dropping linked servers are not DDL operations, and do...
April 13, 2011 at 11:22 am
Steve Jones - SSC Editor (7/11/2010)
If it was recently, the default trace should capture this.
I am not able to find this information the default trace.Please help !
April 13, 2011 at 6:45 am
Grant Fritchey (3/22/2011)
You're getting a scan on one table, overall, the system is...
March 22, 2011 at 5:43 am
Dave,
One more thing. The DTA does not advise anything.Currently the select is being fired in a view.Do you think modifying it to hit the base table can help me somehow.
thanks
Chandan
March 22, 2011 at 4:54 am
Dave,
I had a look on Gail's article but my query does not have any parameters.It has fixed select query and the execution plan does not vary as there are no...
March 22, 2011 at 4:50 am
Dave Ballantyne (3/22/2011)
Hi ,please see this link
http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/
Thanks,i will take a look on this now.Btw,could you see the execution plan for this query.Last time too you had helped me by seeing...
March 22, 2011 at 4:43 am
GilaMonster (3/7/2011)
Writes are also done to the cache and are written to disk later, not written to...
March 7, 2011 at 2:45 am
Thanks Gail! I got your point.Index scans are costly.Its just that physical ones are more as compared to logical one.Scan is a Scan.thanks for explaining so clearly!
One thing which is...
March 7, 2011 at 1:43 am
Dave,Gail!
My CPU time for this query came down to 0 ms from 3125 ms earlier.This is something awesome and you guys deserve the credit.
I have one question here.My server has...
March 7, 2011 at 12:23 am
@Gail- You hit the bull's eye.Spot on with the solution.The plan now shows seek with the two indexes.
@Dave-Thanks for this query.Works perfectly.
I realized today,execution plans are not just to look...
March 4, 2011 at 1:53 am
I have already given the DDL for indexes.Here is the DDL for table:
CREATE TABLE [dbo].[Finals](
[ReturnId] [int] IDENTITY(1,1) NOT NULL,
[primary] [varchar](20) NULL,
[secondary] [varchar](20) NULL,
[Year] [varchar](4) NULL,
[QTR] [varchar](1) NULL,
[DocType] [varchar](5) NULL,
[ScGrpID] [varchar](8)...
March 4, 2011 at 1:26 am
I read a couple of articles which says that the 'or' clause will cause a scan no matter what!
March 4, 2011 at 1:21 am
GilaMonster (3/4/2011)
Move year from the include to the key. I didn't notice the filter on that earlier
I moved 'year' to the key column in both the indexes but still the...
March 4, 2011 at 1:19 am
Viewing 15 posts - 391 through 405 (of 430 total)