sp_renamedb (Transact-SQL)
Zmienia nazwę bazy danych.
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. Użyć instrukcji ALTER DATABASE zmodyfikować nazwę pola.Aby uzyskać więcej informacji zobaczALTER DATABASE języka Transact-SQL). |
sp_renamedb [ @dbname = ] 'old_name' , [ @newname = ] 'new_name'
Argumenty
[ @dbname=] 'old_name'
Is the current name of the database.old_name is sysname, with no default.[ @newname=] 'new_name'
Is the new name of the database.new_name must follow the rules for identifiers.new_name is sysname, with no default.
Wartości kodów powrotnych
sp_update_alert
Uprawnienia
Członkostwo w grupie wymaga sysadmin or dbcreator stałe role serwera.
Przykłady
Poniższy przykład tworzy Accounting bazy danych, a następnie zmienia nazwę bazy danych do Financial. The sys.databases catalog view is then queried to verify the new name of the database.
USE master;
GO
CREATE DATABASE Accounting;
GO
EXEC sp_renamedb N'Accounting', N'Financial';
GO
SELECT name, database_id, modified_date
FROM sys.databases
WHERE name = N'Financial';
GO