-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
set echo on | ||
spool {{ stage }}/setup_bipaud.log | ||
|
||
create tablespace MISAUD_TS; | ||
|
||
create profile nart | ||
limit PASSWORD_REUSE_TIME unlimited | ||
PASSWORD_LIFE_TIME unlimited; | ||
|
||
create user BIP_AUDIT_OWNER identified by "{{ bip_audit_owner_password }}" | ||
default tablespace MISAUD_TS | ||
profile NART; | ||
grant CONNECT, CREATE JOB, CREATE PROCEDURE, CREATE SEQUENCE, CREATE TABLE, CREATE TRIGGER, UNLIMITED TABLESPACE to BIP_AUDIT_OWNER; | ||
|
||
create user BODS_IPS_AUDIT_OWNER identified by "{{ bods_ips_audit_password }}" | ||
default tablespace MISAUD_TS | ||
profile NART; | ||
grant CONNECT, CREATE JOB, CREATE PROCEDURE, CREATE SEQUENCE, CREATE TABLE, UNLIMITED TABLESPACE to BODS_IPS_AUDIT_OWNER; | ||
|
||
spool off | ||
exit; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
set echo on | ||
spool {{ stage }}/setup_bipaud.log | ||
|
||
create tablespace MISSYS_TS; | ||
create tablespace BODIREP_TS; | ||
|
||
create profile nart | ||
limit PASSWORD_REUSE_TIME unlimited | ||
PASSWORD_LIFE_TIME unlimited; | ||
|
||
create user BIP_SYSTEM_OWNER identified by "{{ bip_system_owner_password }}" | ||
default tablespace MISSYS_TS | ||
profile NART; | ||
grant CONNECT, CREATE PROCEDURE, CREATE TABLE, UNLIMITED TABLESPACE to BIP_SYSTEM_OWNER; | ||
|
||
create user BODS_IPS_SYSTEM_OWNER identified by "{{ bods_ips_system_owner_password }}" | ||
default tablespace MISSYS_TS | ||
profile NART; | ||
grant CONNECT, CREATE PROCEDURE, CREATE TABLE, UNLIMITED TABLESPACE to BODS_IPS_SYSTEM_OWNER; | ||
|
||
create user BODS_REPO_OWNER identified by "{{ bods_repo_owner_password }}" | ||
default tablespace BODIREP_TS | ||
profile NART; | ||
grant CONNECT, CREATE SEQUENCE, CREATE TABLE, CREATE VIEW, UNLIMITED TABLESPACE to BODS_REPO_OWNER; | ||
|
||
spool off | ||
exit; |