8.18 GET_DATASET_IMPORT_MODE Function
This function returns the dataset import mode for the supplied dataset. If no import mode has been set, this function returns null.
Syntax
FUNCTION apex_application_install.get_dataset_import_mode (
p_static_id IN VARCHAR2 )
RETURN t_dataset_import_mode;Parameters
| Parameter | Description |
|---|---|
p_static_id |
Static ID used to reference the dataset. |
Example
The following example returns the dataset import mode setting for the supplied dataset.
declare
l_import_mode t_dataset_import_mode;
begin
l_import_mode := apex_application_install.get_dataset_import_mode('HR');
end;
Parent topic: APEX_APPLICATION_INSTALL