@@ -13,14 +13,14 @@ PROMPT Adding back create-trigger privilege to $UT3_DEVELOP_SCHEMA for testing
1313grant administer database trigger to $UT3_DEVELOP_SCHEMA ;
1414
1515--------------------------------------------------------------------------------
16- PROMPT Creating $ UT3_TESTER - Power-user for testing internal framework code
16+ PROMPT Creating UT3_TESTER - Power-user for testing internal framework code
1717
18- create user $ UT3_TESTER identified by "$UT3_TESTER_PASSWORD " default tablespace $UT3_TABLESPACE quota unlimited on $UT3_TABLESPACE ;
19- grant create session, create procedure, create type, create table to $ UT3_TESTER ;
18+ create user UT3_TESTER identified by "ut3 " default tablespace $UT3_TABLESPACE quota unlimited on $UT3_TABLESPACE ;
19+ grant create session, create procedure, create type, create table to UT3_TESTER;
2020
21- grant execute on dbms_lock to $ UT3_TESTER ;
21+ grant execute on dbms_lock to UT3_TESTER;
2222
23- PROMPT Granting $UT3_DEVELOP_SCHEMA code to $ UT3_TESTER
23+ PROMPT Granting $UT3_DEVELOP_SCHEMA code to UT3_TESTER
2424
2525begin
2626 for i in (
@@ -30,31 +30,31 @@ begin
3030 and generated = 'N'
3131 and object_name not like 'SYS%')
3232 loop
33- execute immediate 'grant execute on $UT3_DEVELOP_SCHEMA ."'||i.object_name||'" to $ UT3_TESTER ';
33+ execute immediate 'grant execute on $UT3_DEVELOP_SCHEMA ."'||i.object_name||'" to UT3_TESTER';
3434 end loop;
3535end;
3636/
3737
38- PROMPT Granting $UT3_DEVELOP_SCHEMA tables to $ UT3_TESTER
38+ PROMPT Granting $UT3_DEVELOP_SCHEMA tables to UT3_TESTER
3939
4040begin
4141 for i in ( select table_name from all_tables t where owner = '$UT3_DEVELOP_SCHEMA ' and nested = 'NO' and iot_name is null)
4242 loop
43- execute immediate 'grant select on $UT3_DEVELOP_SCHEMA .'||i.table_name||' to $ UT3_TESTER ';
43+ execute immediate 'grant select on $UT3_DEVELOP_SCHEMA .'||i.table_name||' to UT3_TESTER';
4444 end loop;
4545end;
4646/
4747
4848
4949--------------------------------------------------------------------------------
50- PROMPT Creating $ UT3_USER - minimal privileges user for API testing
50+ PROMPT Creating UT3_USER - minimal privileges user for API testing
5151
52- create user $ UT3_USER identified by "$UT3_USER_PASSWORD " default tablespace $UT3_TABLESPACE quota unlimited on $UT3_TABLESPACE ;
53- grant create session, create procedure, create type, create table to $ UT3_USER ;
52+ create user UT3_USER identified by "ut3 " default tablespace $UT3_TABLESPACE quota unlimited on $UT3_TABLESPACE ;
53+ grant create session, create procedure, create type, create table to UT3_USER;
5454
55- PROMPT Grants for starting a debugging session from $ UT3_USER
56- grant debug connect session to $ UT3_USER ;
57- grant debug any procedure to $ UT3_USER ;
55+ PROMPT Grants for starting a debugging session from UT3_USER
56+ grant debug connect session to UT3_USER;
57+ grant debug any procedure to UT3_USER;
5858begin
5959 \$ if dbms_db_version.version <= 11 \$ then
6060 null; -- no addition action necessary
6464 host =>'*',
6565 ace => sys.xs\$ ace_type(
6666 privilege_list => sys.xs\$ name_list('JDWP') ,
67- principal_name => '$ UT3_USER ',
67+ principal_name => 'UT3_USER',
6868 principal_type => sys.xs_acl.ptype_db
6969 )
7070 );
7373/
7474
7575--------------------------------------------------------------------------------
76- PROMPT Creating $ UT3_TESTER_HELPER - provides functions to allow min grant test user setup tests.
76+ PROMPT Creating UT3_TESTER_HELPER - provides functions to allow min grant test user setup tests.
7777
78- create user $ UT3_TESTER_HELPER identified by "$UT3_TESTER_HELPER_PASSWORD " default tablespace $UT3_TABLESPACE quota unlimited on $UT3_TABLESPACE ;
79- grant create session, create procedure, create type, create table to $ UT3_TESTER_HELPER ;
78+ create user UT3_TESTER_HELPER identified by "ut3 " default tablespace $UT3_TABLESPACE quota unlimited on $UT3_TABLESPACE ;
79+ grant create session, create procedure, create type, create table to UT3_TESTER_HELPER;
8080
8181PROMPT Grants for testing distributed transactions
82- grant create public database link to $ UT3_TESTER_HELPER ;
83- grant drop public database link to $ UT3_TESTER_HELPER ;
82+ grant create public database link to UT3_TESTER_HELPER;
83+ grant drop public database link to UT3_TESTER_HELPER;
8484
8585PROMPT Grants for testing coverage outside of main $UT3_DEVELOP_SCHEMA schema.
8686grant create any procedure, drop any procedure, execute any procedure, create any type, drop any type, execute any type, under any type,
8787 select any table, update any table, insert any table, delete any table, create any table, drop any table, alter any table,
8888 select any dictionary, create any synonym, drop any synonym,
8989 grant any object privilege, grant any privilege, create public synonym, drop public synonym, create any trigger
90- to $ UT3_TESTER_HELPER ;
90+ to UT3_TESTER_HELPER;
9191
92- grant create job to $ UT3_TESTER_HELPER ;
92+ grant create job to UT3_TESTER_HELPER;
9393
9494PROMPT Additional grants for disabling DDL trigger and testing parser without trigger enabled/present
9595
96- grant alter any trigger to $ UT3_TESTER_HELPER ;
97- grant administer database trigger to $ UT3_TESTER_HELPER ;
98- grant execute on dbms_lock to $ UT3_TESTER_HELPER ;
96+ grant alter any trigger to UT3_TESTER_HELPER;
97+ grant administer database trigger to UT3_TESTER_HELPER;
98+ grant execute on dbms_lock to UT3_TESTER_HELPER;
9999
100100create user ut3_cache_test_owner identified by ut3;
101101grant create session, create procedure to ut3_cache_test_owner;
0 commit comments