You are on page 1of 2

-------------------

*************************************************************** This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish or display any part, in any form or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. Copyright (C) 1988, 2010, Oracle and/or its affiliates. All Rights Reserved. ***************************************************************

--- ****************************************************************** -- ****************************************************************** ------- ****************************************************************** REMARK -- This script sets up the PeopleSoft Owner ID. An Oracle DBA is REMARK -- required to run this script. set echo on spool psadmin.log REMARK REMARK REMARK REMARK REMARK REMARK REMARK REMARK REMARK REMARK REMARK ACCEPT PROMPT ACCEPT PROMPT PROMPT PROMPT PROMPT PROMPT PROMPT PROMPT ACCEPT ADMIN CHAR FORMAT 'A8' 'Enter name of PeopleSoft Owner ID(max. 8 characters): ' PASSWORD CHAR FORMAT 'A8' 'Enter PeopleSoft Owner ID password(max. 8 characters): ' Enter a desired default tablespace for this user. Please Note: The tablespace must already exist If you are unsure, enter PSDEFAULT or SYSTEM TSPACE CHAR REMARK PROMPT 'Enter desired default tablespace:'

REMARK -- Create the PeopleSoft Administrator schema. create user SYSADM identified by SYSADM default tablespace PSDEFAULT temporary tablespace pstemp; grant PSADMIN TO SYSADM; REMARK REMARK REMARK REMARK ----PeopleSoft Administrator needs unlimited tablespace in order to create the PeopleSoft application tablespaces and tables in Data Mover. This system privilege can only be granted to schemas, not Oracle roles.

grant unlimited tablespace to SYSADM; REMARK -- Run the commands below to create database synonyms. REMARK -- Modify the connect string appropriately for your organization. connect system/manager set echo off @%ORACLE_HOME%\rdbms\admin\catdbsyn @%ORACLE_HOME%\sqlplus\admin\pupbld spool off exit

You might also like