24.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
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;
Parent topic: APEX_DG_DATA_GEN