Database.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
)

매개 변수

  • newName
    유형: System.String
    A string value that specifies the new name of the database.

구현

IRenamable.Rename(String)

주의

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

VB

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

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

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

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

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2012")

$db.Rename("AdventureWorks2012")

$db.Refresh()
$db.Rename("AdventureWorks2012")

참고 항목

참조

Database 클래스

Microsoft.SqlServer.Management.Smo 네임스페이스

관련 자료

데이터베이스 개체 작업

데이터베이스 생성, 변경 및 제거

ALTER DATABASE(Transact-SQL)