19.20 REMOVE_TABLE Procedure

This procedure removes a table for the specified blueprint.

Syntax

APEX_DG_DATA_GEN.REMOVE_TABLE (
    p_blueprint             IN VARCHAR2,
    p_table_name            IN VARCHAR2 )

Parameters

Table 19-20 REMOVE_TABLE Parameters

Parameter Description
p_blueprint Identifier for the blueprint.
p_table_name Table name to be removed from blueprint.

Example

BEGIN
   apex_dg_data_gen.remove_table(
                p_blueprint               => 'Cars',
                p_table_name              => 'MY_CARS');
END;