Viewing 15 posts - 35,896 through 35,910 (of 49,552 total)
John Colby (11/12/2009)
I had been (up until reading this article) creating a clustered index that was also a cover index, i.e. the index had every single field.
The clustered index...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 7:30 am
Please post the code used to create the DB and the exact error message that you get.
Either write the create DB statement yourself or use the 'script' button on the...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 5:29 am
Bhaskar Basak (11/12/2009)
The table has almost 10 mn records and for today only 100K has added so as per the default threshhold the behaviour...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 5:24 am
INNOCENT GUMBO (11/12/2009)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 3:32 am
Expected behaviour. Stats are only updated after a certain threshold of rows change. On larger tables that's 20%. If you find that you need to manually update stats then either...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 3:32 am
Sy-1148362 (11/12/2009)
SSC is an ocean and people may or may not look at my issue.
Yes, that's true, however forum etiquette (here and virtually everywhere else) is to pick the...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 3:25 am
Please don't cross post. It just wastes peoples time and fragments replies.
No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic817651-150-1.aspx
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 2:50 am
From books online:
cntr_value
Current value of the counter.
Note:
For per-second counters, this value is cumulative. The rate value must be calculated by sampling the value at discrete...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 2:41 am
Are you shrinking the DB? Maintenance plan or auto_shrink? That'll fragment anything.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 2:33 am
The index that you have there is completely useless for seeks. The leading column is not used in the where clause at all. That query will execute with an index...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 2:33 am
tsd_suresh (11/12/2009)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 2:32 am
TheSQLGuru (11/11/2009)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 2:24 am
GDI Lord (11/12/2009)
GilaMonster (11/10/2009)
DTA often suggests multi-column statistics, which Auto_Create will never create.Why?
Why does DTA recommend them or why does auto_create never create them?
For the first, I don't know. Personally...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 2:14 am
hlam-1032421 (11/11/2009)
… good clustering. One school says to put the clustered index on the column or set of columns that would be...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 12, 2009 at 2:12 am
blambu56 (11/11/2009)
I want to make it a concatenated PK with ClientNumber and ClientAcctNumber for the TMP9999 table. That would be the only guaranteed unique data in this file.
But the combination...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 11, 2009 at 12:37 pm
Viewing 15 posts - 35,896 through 35,910 (of 49,552 total)