Tagged Questions
The table-statistics tag has no wiki summary.
1
vote
2answers
91 views
Do table statistics get updated during the creation of a clustered index?
After I have created a clustered index on a table, is there any point in updating the statistics for that table?
Cheers.
0
votes
0answers
113 views
Auto Update Statistics and FULLSCAN in SQL Server 2008 R2
Is it possible to force FULLSCAN when statistics are updated automatically by SQL Server 2008 R2?
If not, is a planned UPDATE STATISTICS WITH FULLSCAN the best way to keep statistics up-to-date?
...
0
votes
2answers
50 views
Retrieving Time Dependent Data Statistics (counts) by flag, split on foreign id, across multiple tables, returned in one dataset
I have a table of items that are split on a siteId and a status.
CREATE TABLE ItemDetail (
ItemNumber long,
SiteId int,
Status int,
Created datetime
)
And ...
0
votes
3answers
330 views
What are the implications of having out of date table statistics on a Sybase/SQLServer database?
For example, for heavily used tables with volumes in the order of 10 million rows that grow by a million rows a month, if the stats are 6-8 months old how detrimental to the performance of the ...