|
|
|
|
|
HListScheduling (Function) In french: HListePlanification
Available only with this kind of connection
Lists scheduled elements defined on an HFSQL server: scheduled tasks (stored procedure), backup, optimization, refresh of a materialized view.
tabDescSvg is array dynamic of hBackupDescription
tabDescSvg = HListScheduling(MaConnexionBase, hlpBackup)
hDescSvg is hBackupDescription
FOR EACH hDescSvg OF tabDescSvg
IF hDescSvg.LimitNumberBackups = 3 THEN
hDescSvg.LimitNumberBackups = 5
HModifyScheduling(MaConnexionBase, hDescSvg)
END
END
Syntax
<Result> = HListScheduling(<Connection> , <Type of scheduling>)
<Result>: Array Array containing the listed descriptions. The type of the array elements depends on <Type of scheduling>. <Connection>: Character string or Connection variable Connection to use. This connection corresponds to: <Type of scheduling>: Integer constant Type of scheduling to list: | | hlpBackup | Scheduling of backups. | hlpMaterializedView | Tasks for refreshing the materialized views. | hlpOptimization | Tasks for optimizing data files (reindexing, calculation of statistics). | hlpTask | Scheduled tasks that run a stored procedure. |
Remarks Necessary rights To list the tasks for refreshing materialized views or scheduled tasks, it is necessary to have the connection rights (constant hRightsConnection or hRightsEncryptedConnection) for each database that contains a view to process or a stored procedure to run.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|