Note: Your folder must be named apex. This is compulsory.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--
-- Run script apexins.sql with parameters:
--
-- @apexins.sql tablespace_apex tablespace_files tablespace_temp images
--
-- Where:
-- tablespace_apex is the name of the tablespace for the Oracle Application Express application user.
-- tablespace_files is the name of the tablespace for the Oracle Application Express files user.
-- tablespace_temp is the name of the temporary tablespace or tablespace group.
-- images is the virtual directory for Oracle Application Express images.
-- (To support future Oracle Application Express upgrades, define the virtual image directory as /i/.)
--
@apexins.sql sysaux sysaux
temp
/i/
|
1
2
3
4
5
6
|
--
-- Running script apex_epg_config.sql with parameter:
-- @apex_epg_config.sql
--
@apex_epg_config.sql C:\DevPrograms
|
1
2
3
|
-- Unlock user anonymous:
alter
user
anonymous account unlock;
|
1
2
3
4
5
6
7
|
--
-- Running script: @apxconf.sql
-- Setup password for ADMIN
-- Configuring XDB Http Listener port
--
@apxconf.sql
|