You are on page 1of 1

Amazon Web Services Configuring Amazon RDS as an Oracle PeopleSoft Database

Application-Specific Tablespace Creation [ xxddl.sql ]


Modify the application-specific tablespace creation script for the PeopleSoft
application you are creating. For example, epddl.sql for FSCM or hcddl.sql
for HCM. Please refer to the PeopleTools Installation for Oracle for details on
the DDL scripts that are appropriate for your application. Modify all CREATE
TABLESPACE commands as below.

Delivered:

CREATE TABLESPACE AMAPP DATAFILE


'/u04/oradata/<SID>/amapp.dbf' SIZE 2M
EXTENT MANAGEMENT LOCAL AUTOALLOCATE
SEGMENT SPACE MANAGEMENT AUTO
/

Modified:

CREATE TABLESPACE AMAPP EXTENT MANAGEMENT LOCAL AUTOALLOCATE


SEGMENT SPACE MANAGEMENT AUTO
/

DB Owner Script [ dbowner.sql ]


Replace system/manager with the RDS Master username and Master
password.

Delivered:

CONNECT system/manager;

Modified (Replace with your credentials):

CONNECT <RDS Master username>/<RDS Master password>;

Page 32

You might also like