|
|
|
|
|
HExecuteScheduledBackup (Function) In french: HExécuteSauvegardePlanifiée
Available only with this kind of connection
Forces the execution of a scheduled backup. The scheduled backup is run during the call to the function instead of being run according to its scheduling.
DatabaseConnection is Connection
hBck is hBackupDescription
hBck.WithIndex = False
hBck.Source = DatabaseConnection.Database
hBck.Description = DatabaseConnection.Database
hBck.SchedulingFull.Month = "12"
hBck.SchedulingFull.Hour = "22"
hBck.SchedulingDifferential.Month = "12"
hBck.SchedulingDifferential.Hour = "23"
HAddScheduledBackup(DatabaseConnection, hBck)
IF HExecuteScheduledBackup(DatabaseConnection, hBck.Identifier, False) = False THEN
Error("HExecuteScheduledBackup failed (full backup): " + ...
HErrorInfo(hErrFullDetails))
END
Syntax
<Result> = HExecuteScheduledBackup(<Connection> , <Backup identifier> [, <Type of backup>])
<Result>: Boolean - True if the scheduled backup was immediately triggered,
- False if an error occurred.
<Connection>: Character string or Connection variable Connection for which the scheduled backup must be performed. This connection corresponds to: <Backup identifier>: Integer Identifier of the scheduled backup to run. <Type of backup>: Optional boolean Type of backup to perform: - True (default value): Differential backup.
- False: Full backup.
Remark: A differential backup can be performed only if the backup task includes a differential scheduling.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|