Método SqlBackup
Performs the database backup operation as specified by the properties of the Backup object used.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.SmoExtended (em Microsoft.SqlServer.SmoExtended.dll)
Sintaxe
'Declaração
Public Sub SqlBackup ( _
srv As Server _
)
'Uso
Dim instance As Backup
Dim srv As Server
instance.SqlBackup(srv)
public void SqlBackup(
Server srv
)
public:
void SqlBackup(
Server^ srv
)
member SqlBackup :
srv:Server -> unit
public function SqlBackup(
srv : Server
)
Parâmetros
- srv
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .Server
The Server object that represents the MicrosoftSQL Server instance that is the source of the backup operation.
Comentários
To perform a database backup operation using SQL Server Management Objects (SMO), the application specifies the operation process by setting Backup object properties, and then it calls the SQLBackup(Server) method.
Consulte também