Answer Posted / anand
The UPDATE STATISTICS statement defines the storage
requirements of tables and indexes as well as the value
distribution of columns, and stores this information in the
database catalog.
Syntax
<update statistics statement> ::=
UPDATE STAT[ISTICS] COLUMN <table name>.<column name>
[ESTIMATE [<sample definition>]]
| UPDATE STAT[ISTICS] COLUMN (<column name>,...) FOR <table
name> [ESTIMATE [<sample definition>]]
| UPDATE STAT[ISTICS] COLUMN (*) FOR <table name> [ESTIMATE
[<sample definition>]]
| UPDATE STAT[ISTICS] <table name> [ESTIMATE [<sample
definition>]]
| UPDATE STAT[ISTICS] [<owner>.][<identifier>]* [ESTIMATE
[<sample definition>]]
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is database isolation in sql server? : sql server database administration
what is the difference in login security modes between v6.5 and 7.0? : Sql server database administration
What are out-of-range errors with date and time literals?
How do you debug a procedure in sql server?
What is data source object?
What is buffer cash and log cache in sql server?
How to execute function in stored procedure sql server?
How do I trace a query in sql server?
What is normalization? Describe its different types.
Define cross join in sql server joins?
What is the guest user account in sql server? What login is it mapped to it? : sql server security
I have all the primary data files, secondary data files as well as logs. Now, tell me can I still restore the database without having a full backup? : sql server database administration
What do you know about normalization and de- normalization?
How to search for a string in all stored procedure in sql server?
How to achieve Paging of records in SQL SERVER?