19.19 REMOVE_DATA_SOURCE Procedure
This procedure removes metadata associated with the data source for the given blueprint.
Syntax
APEX_DG_DATA_GEN.REMOVE_DATA_SOURCE (
    p_blueprint             IN VARCHAR2,
    p_name                  IN VARCHAR2 )Parameters
Table 19-19 REMOVE_DATA_SOURCE Parameters
| Parameter | Description | 
|---|---|
| p_blueprint | Identifies the blueprint. | 
| p_name | Data source to be removed from blueprint. | 
Example
BEGIN
   apex_dg_data_gen.remove_data_source(
                p_blueprint           => 'Cars',
                p_name                => 'apex_dg_builtin_cars');
END;Parent topic: APEX_DG_DATA_GEN