sp_dbremove (Transact-SQL)

Removes a database and all files associated with that database.

Ważna informacjaWażne:

This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. We recommend that you use DROP DATABASE instead.

Ikona łącza do tematu Transact-SQL Syntax Conventions

Składnia

sp_dbremove [ @dbname = ] 'database' [ , [ @dropdev = ] 'dropdev' ] 

Arguments

  • [ @dbname= ] 'database'
    Is the name of the database to be removed. database is sysname, with a default value of NULL.

  • [ @dropdev= ] 'dropdev'
    Is a flag provided for backward compatibility only and is currently ignored. dropdev has the value dropdev.

Return Code Values

0 (success) or 1 (failure)

Result Sets

None

Permissions

Requires membership in the sysadmin fixed server role.

Examples

The following example removes a database named sales and all files associated with it.

EXEC sp_dbremove sales;

Zobacz także

Odwołanie

ALTER DATABASE (Transact-SQL)

CREATE DATABASE (Transact-SQL)

DBCC (Transact-SQL)

sp_detach_db (Transact-SQL)