The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
122 views

How do you get Hibernate to update database statistics?

I am putting a lot of rows into a database table that was previously nearly empty, Im then creating a report based on data in that table. Although the table is indexed the queries are taking far too ...
1
vote
2answers
48 views

Creating Chord Matrix in Mysql / GROUP BY Syntax

I am doing some data analysis in MYSQL and hoping that the following is possible. I have a table that documents user blog topics as follows. I have a total of 25 topics, and would like to abstract ...
0
votes
1answer
176 views

will show table status display exact rows in the table?

I have a table in DB and it is approx 90 GB in space. I tried to count no of rows in the table select count(idNewsNotification) from notification and it resulted 4982397 1 row in set (59 min 48.35 ...
0
votes
1answer
68 views

record order in T-sql changing with statistics update

I am facing an issue with the record order in the given query. SELECT EA.eaid, --int , PK of table1 EA.an, --varchar(max) EA.dn, --varchar(max) ET.etid, --int ET.st --int FROM dbo.table1 EA JOIN ...
2
votes
1answer
136 views

What is the format of TSQL STATS_STREAM (undocumented feature)? Does it contain all the Statistics Data?

I have a huge table on one server, and need to copy the table to the production server. I can do this, but then I need to generate statistics, which will take a long time on a system that I don't want ...
1
vote
1answer
504 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
84 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 ...
1
vote
2answers
135 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
3answers
396 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 ...