This function exports the given workspace's definition and users. The optional p_with_%
parameters which all default to false can be used to include additional information in the export.
Syntax
function get_workspace ( p_workspace_id in number, p_with_date in boolean default false, p_with_team_development in boolean default false, p_with_misc in boolean default false ) return wwv_flow_t_export_files;
Parameters
Table 15-4 GET_WORKSPACE Function Parameters
Parameters | Description |
---|---|
|
The workspace id. |
|
If |
|
If |
|
If |
Returns
A table of apex_t_export_file
.
Examples
Export the definition of workspace #12345678.
declare l_file apex_t_export_files; begin l_files := apex_export.get_workspace(p_workspace_id => 12345678); end;
Parent topic: APEX_EXPORT