Поделиться через


Метод Rename

Renames the database.

Пространство имен:  Microsoft.SqlServer.Management.Smo
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
Public Sub Rename ( _
    newName As String _
)
'Применение
Dim instance As Database
Dim newName As String

instance.Rename(newName)
public void Rename(
    string newName
)
public:
virtual void Rename(
    String^ newName
) sealed
abstract Rename : 
        newName:string -> unit 
override Rename : 
        newName:string -> unit 
public final function Rename(
    newName : String
)

Параметры

Реализует интерфейс

IRenamable. . :: . .Rename(String)

Замечания

Note:   An alternative to renaming the database is to create a synonym for the database.

Примеры

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")

'Rename the database
db.Rename("AdventureWorks2")

'Refresh the properties on the database.
db.Refresh()
db.Rename("AdventureWorks")