24.23 UPDATE_BLUEPRINT Procedure
This procedure updates the attributes of an existing blueprint.
Syntax
APEX_DG_DATA_GEN.UPDATE_BLUEPRINT (
p_name IN VARCHAR2,
p_new_name IN VARCHAR2 DEFAULT NULL,
p_display_name IN VARCHAR2 DEFAULT NULL,
p_description IN VARCHAR2 DEFAULT NULL,
p_lang IN VARCHAR2 DEFAULT 'en',
p_default_schema IN VARCHAR2 DEFAULT NULL )
Parameters
Parameter | Description |
---|---|
p_name |
Name of blueprint to update. |
p_new_name |
The new name (rename). The name is upper cased and special characters removed. |
p_display_name |
Friendly display name. |
p_description |
Description of the blueprint. |
p_lang |
Blueprint language determines values from built-in data sources. If the built-in data source has 0 records in this language, en is used.
|
Example
BEGIN
apex_dg_data_gen.update_blueprint(
p_name => 'Cars',
p_display_name => 'My Cars',
p_description => 'An updated blueprint to generate car data');
END;
Parent topic: APEX_DG_DATA_GEN