Class BackupExecBackupTaskSqlSettings
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the Backup Exec SQL server settings to use for each backup task.
public class BackupExecBackupTaskSqlSettings : GlobalSerializableClassicBase
- Inheritance
-
BackupExecBackupTaskSqlSettings
Constructors
BackupExecBackupTaskSqlSettings()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.BackupExecBackupTaskSqlSettings class.
public BackupExecBackupTaskSqlSettings()
Properties
ContinueOnConsistencyCheckFailure
Gets or sets whether to continue with the backup if the consistency check fails.
public BooleanOption ContinueOnConsistencyCheckFailure { get; set; }
Property Value
CreateDiskCopy
Gets or sets whether to create on-disk copies of SQL backups to be placed on the SQL server where the database is located.
public BooleanOption CreateDiskCopy { get; set; }
Property Value
DiskCopyPath
Gets or sets the path where disk copies should be placed. This setting only applies when CreateDiskCopy is set to true.
public string DiskCopyPath { get; set; }
Property Value
PostConsistencyCheck
Gets or sets the consistency check to perform after backup.
public BackupExecSqlConsistencyCheckMethod PostConsistencyCheck { get; set; }
Property Value
PostConsistencyCheckString
Gets the consistency check to perform after backup as a human readable string.
public string PostConsistencyCheckString { get; set; }
Property Value
PreConsistencyCheck
Gets or sets the consistency check to perform before backup.
public BackupExecSqlConsistencyCheckMethod PreConsistencyCheck { get; set; }
Property Value
PreConsistencyCheckString
Gets the consistency check to perform before backup as a human readable string.
public string PreConsistencyCheckString { get; set; }
Property Value
SqlBackupType
Gets or sets the SQL backup type.
public BackupExecSqlBackupType SqlBackupType { get; set; }
Property Value
SqlBackupTypeString
Gets the SQL backup type as a human readable string.
public string SqlBackupTypeString { get; set; }
Property Value
UseChecksumOnBackup
Gets or sets whether to use checksums on backups (SQL 2005 or later).
public BooleanOption UseChecksumOnBackup { get; set; }
Property Value
UseSoftwareCompression
Gets or sets whether to use SQL Server 2008 Enterprise Edition software compression.
public BooleanOption UseSoftwareCompression { get; set; }