Name of one of the following database objects whose statistics are to be dropped.
- Table or global temporary table
- Single-table view
You can only request HELP STATISTICS reports for single-table views.
- Single-table query
You can only request HELP STATISTICS reports for single-table queries.
You cannot drop statistics on journal or global temporary trace tables because you cannot collect statistics on those database objects.
- database_name
- Containing database for table_name if something other than the current database.
- user_name
- Containing user for table_name if something other than the current user.
- TEMPORARY
- Statistics are to be dropped for a materialized global temporary table.
Example: Dropping All Statistics for a Table
This request drops any statistics that exist for the employee table.
DROP STATISTICS ON employee;