Delete Data or Log Files from a Database

This topic describes how to delete data or log files in SQL Server 2012 by using SQL Server Management Studio or Transact-SQL.

In This Topic

  • Before you begin:

    Prerequisites

    Security

  • To delete data or logs files from a database, using:

    SQL Server Management Studio

    Transact-SQL

Before You Begin

Prerequisites

  • A file must be empty before it can be deleted. For more information, see Shrink a File.

Security

Permissions

Requires ALTER permission on the database.

Arrow icon used with Back to Top link [Top]

Using SQL Server Management Studio

To delete data or log files from a database

  1. In Object Explorer, connect to an instance of the SQL Server Database Engine and then expand that instance.

  2. Expand Databases, right-click the database from which to delete the file, and then click Properties.

  3. Select the Files page.

  4. In the Database files grid, select the file to delete and then click Remove.

  5. Click OK.

Arrow icon used with Back to Top link [Top]

Using Transact-SQL

To delete data or log files from a database

  1. Connect to the Database Engine.

  2. From the Standard bar, click New Query.

  3. Copy and paste the following example into the query window and click Execute. This example removes the file test1dat4.

USE master;
GO
ALTER DATABASE AdventureWorks2012
REMOVE FILE test1dat4;
GO

For more examples, see ALTER DATABASE File and Filegroup Options (Transact-SQL).

Arrow icon used with Back to Top link [Top]

See Also

Concepts

Shrink a Database

Add Data or Log Files to a Database