sp_dbremove (języka Transact-SQL)
Usuwa bazę danych i wszystkie skojarzone z nią pliki.
Important Note: |
---|
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. Firma Microsoft zaleca użycie USUWANIE BAZY DANYCH zamiast niego. |
sp_dbremove [ @dbname = ] 'database' [ , [ @dropdev = ] 'dropdev' ]
Argumenty
[ @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.
Wartości kodów powrotnych
0 (sukces) lub 1 (brak)
Zestawy wyników
None
Uprawnienia
Członkostwo w grupie wymaga sysadmin stała rola serwera.
Przykłady
W następującym przykładzie usunięto bazy danych o nazwie sales i wszystkie pliki skojarzone z nim.
EXEC sp_dbremove sales;