Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
Removes a database and all files associated with that database.
Important
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.
Transact-SQL Syntax Conventions
Syntax
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;
See Also
Reference
ALTER DATABASE (Transact-SQL)
CREATE DATABASE (Transact-SQL)
DBCC (Transact-SQL)
sp_detach_db (Transact-SQL)