Table of Contents
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 35-25 EXPORT_USERS Parameters
Parameter | Description |
---|---|
|
Indicates how rows in the export file are 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 is formatted with rows delimited by line feeds.
BEGIN APEX_UTIL.EXPORT_USERS; END;
Parent topic: APEX_UTIL