Home > APEX_UTIL > EXPORT_USERS Procedure
Previous |
Next |
When called from a page, this procedure produces an export file of the current workspace definition, workspace users, and workspace groups. To execute this procedure, the current user must have administrative privilege in the workspace.
Syntax
APEX_UTIL.EXPORT_USERS( p_export_format IN VARCHAR2 DEFAULT 'UNIX');
Parameters
Table: EXPORT_USERS Parameters describes the parameters available in the EXPORT_USERS
procedure.
EXPORT_USERS Parameters
Parameter | Description |
---|---|
|
Indicates how rows in the export file will be formatted. Specify |
Example
The following example shows how to use the EXPORT_USERS
procedure. Call this procedure from a page to produce an export file containing the current workspace definition, list of workspace users and list of workspace groups. The file will be formatted with rows delimited by line feeds.
BEGIN APEX_UTIL.EXPORT_USERS; END;