Delete Statistics

You can delete (drop) statistics from tables and views in SQL Server 2012 by using SQL Server Management Studio or Transact-SQL

In This Topic

  • Before you begin:

    Limitations and Restrictions

    Security

  • To drop statistics from a table or view, using:

    SQL Server Management Studio

    Transact-SQL

Before You Begin

Limitations and Restrictions

  • Be careful when you drop statistics. Doing so may affect the execution plan chosen by the query optimizer.

  • Statistics on indexes cannot be dropped by using DROP STATISTICS. Statistics remain as long as the index exists.

Security

Permissions

Requires ALTER permission on the table or view.

Arrow icon used with Back to Top link [Top]

Using SQL Server Management Studio

To drop statistics from a table or view

  1. In Object Explorer, click the plus sign to expand the database in which you want to delete a statistic.

  2. Click the plus sign to expand the Tables folder.

  3. Click the plus sign to expand the table in which you want to delete a statistic.

  4. Click the plus sign to expand the Statistics folder.

  5. Right-click the statistics object that you want to delete and select Delete.

  6. In the Delete Object dialog box, ensure that the correct statistic has been selected and click OK.

Arrow icon used with Back to Top link [Top]

Using Transact-SQL

To drop statistics from a table or view

  1. In Object Explorer, connect to an instance of Database Engine.

  2. On the Standard bar, click New Query.

  3. Copy and paste the following example into the query window and click Execute.

    USE AdventureWorks2012;
    GO
    -- First, create two statistics named VendorCredit and CustomerTotal
    -- The first statistic uses a random 50% sample of information provided from the Name and CreditRating columns in the Purchasing.Vendor table.
    CREATE STATISTICS VendorCredit
        ON Purchasing.Vendor (Name, CreditRating)
        WITH SAMPLE 50 PERCENT
    -- The second statistic uses all of the information from the CustomerID and TotalDue columns in the Sales.SalesOrderHeader table
    CREATE STATISTICS CustomerTotal
        ON Sales.SalesOrderHeader (CustomerID, TotalDue)
        WITH FULLSCAN;
    GO
    -- This next statement drops both of the statistics created above. Note that the naming convention is [table_name].[statistics_name].
    DROP STATISTICS Purchasing.Vendor.VendorCredit, Sales.SalesOrderHeader.CustomerTotal;
    GO
    

For more information, see DROP STATISTICS (Transact-SQL).

Arrow icon used with Back to Top link [Top]