24.22 STOP_DATA_GENERATION Procedure
This procedure stops the current data generation process. This only works within an Oracle APEX session.
This procedure relies on an APEX Collection which tracks progress and reacts to stop instructions. The collection is named: APEX$DG$[BLUEPRINT_NAME]
and contains the following attributes:
d001 => current_timestamp of the process step
c001 => Blueprint name
c002 => Requested output format
c003 => Table name being generated
c004 => Name of the process step,
c005 => Description of the process step
n001 => Numeric identifier of the process step
Syntax
APEX_DG_DATA_GEN.STOP_DATA_GENERATION (
p_blueprint IN VARCHAR2 )
Parameters
Parameter | Description |
---|---|
p_blueprint |
Name of the blueprint. |
Example
BEGIN
apex_dg_output.stop_data_generation
(p_blueprint => 'CARS',
);
END;
Parent topic: APEX_DG_DATA_GEN