|
|
|
|
|
HDeleteSchedulingHistory (Function) In french: HSupprimeHistoriquePlanification
Available only with this kind of connection
Deletes the executions of a scheduled operation on an HFSQL server. This operation can be a scheduled task (stored procedure), backup, optimization or a materialized view refresh. IF NOT HDeleteSchedulingHistory(MyDatabaseConnection, MyScheduledTask) THEN
Trace(HErrorInfo())
END
Syntax
Deleting the history of a scheduled backup Hide the details
<Result> = HDeleteSchedulingHistory(<Connection> , <Scheduled backup>)
<Result>: Boolean - True if the history was deleted,
- False if an error occurs. HErrorInfo is used to identify the error.
<Connection>: Character string or Connection variable Connection to use. This connection corresponds to: <Scheduled backup>: hBackupDescription variable Name of the hBackupDescription variable used.
Deleting the history of a scheduled optimization task Hide the details
<Result> = HDeleteSchedulingHistory(<Connection> , <Scheduled optimization task>)
<Result>: Boolean - True if the history was deleted,
- False if an error occurs. HErrorInfo is used to identify the error.
<Connection>: Character string or Connection variable Connection to use. This connection corresponds to: <Scheduled optimization task>: hScheduledOptimization variable Name of the hScheduledOptimization variable used.
Deleting the history of a scheduled task Hide the details
<Result> = HDeleteSchedulingHistory(<Connection> , <Scheduled task>)
<Result>: Boolean - True if the history was deleted,
- False if an error occurs. HErrorInfo is used to identify the error.
<Connection>: Character string or Connection variable Connection to use. This connection corresponds to: <Scheduled task>: hScheduledTask variable Name of the hScheduledTask variable to be used.
Deleting the execution history of a scheduled refresh of a materialized view Hide the details
<Result> = HDeleteSchedulingHistory(<Connection> , <Materialized view>)
<Result>: Boolean - True if the history was deleted,
- False if an error occurs. HErrorInfo is used to identify the error.
<Connection>: Character string or Connection variable Connection to use. This connection corresponds to: <Materialized view>: hScheduleMaterializedView variable Name of the hScheduleMaterializedView variable to be used. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|