Backup.SqlBackup Method
Performs the database backup operation as specified by the properties of the Backup object used.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.SmoExtended (in Microsoft.SqlServer.SmoExtended.dll)
Syntax
'Declaration
Public Sub SqlBackup ( _
srv As Server _
)
'Usage
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
)
Parameters
- srv
Type: Microsoft.SqlServer.Management.Smo.Server
The Server object that represents the MicrosoftSQL Server instance that is the source of the backup operation.
Remarks
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.
See Also