|
|
|
|
HModifyScheduledBackup (Function) In french: HModifieSauvegardePlanifiée
Available only with this kind of connection
Modifies a backup scheduling. This scheduling was described by a hBackupDescription variable.
// Describe the connection MyDatabaseConnection is Connection arrBck is dynamic array of hBackupDescription arrBck = HListScheduledBackup(MyDatabaseConnection) hBck is hBackupDescription FOR EACH hBck OF arrBck IF hBck.LimitNumberBackups = 3 THEN hBck.LimitNumberBackups = 5 HModifyScheduledBackup(MyDatabaseConnection, hBck) END END
Syntax
<Result> = HModifyScheduledBackup(<Connection> , <Scheduled backup>)
<Result>: Boolean - True if the scheduled backup was modified,
- False if an error occurred.
<Connection>: Character string or Connection variable Connection for which a scheduled backup must be modified. This connection corresponds to: <Scheduled backup>: hBackupDescription variable Name of the hBackupDescription variable to modify. Remarks Necessary rights To have the rights to modify a scheduled backup, you must: - be the owner of the scheduled backup.
- be super-user.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|