|
|
|
|
|
HDeleteScheduledBackup (Function) In french: HSupprimeSauvegardePlanifiée
Available only with this kind of connection
Deletes a scheduled backup from an HFSQL Client/Server server. ctMyDatabase is Connection
arrBckDesc is array dynamic of hBackupDescription
arrBckDesc = HListScheduledBackup(ctMyDatabase)
hBckDesc is hBackupDescription
FOR EACH hBckDesc OF arrBckDesc
IF Position(hBckDesc.Source, ctMyDatabase.Database, 0, IgnoreCase) > 0 THEN
HDeleteScheduledBackup(ctMyDatabase, hBckDesc.Identifier)
END
END
Syntax
<Result> = HDeleteScheduledBackup(<Connection> , <Scheduled backup>)
<Result>: Boolean - True if the scheduled backup was deleted,
- False if an error occurred. HErrorInfo is used to identify the error.
<Connection>: Character string or Connection variable Connection for which the scheduled backup must be deleted. This connection corresponds to: <Scheduled backup>: Integer Identifier of the scheduled backup to delete. Remarks Necessary rights To have the rights to delete a scheduled backup, you must: - be the owner of the scheduled backup.
- be super-user.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|