You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PROMPT Creating $UT3_TESTER_HELPER - provides functions to allow min grant test user setup tests.
118
+
119
+
create user $UT3_TESTER_HELPER identified by "$UT3_TESTER_HELPER_PASSWORD" default tablespace $UT3_TABLESPACE quota unlimited on $UT3_TABLESPACE;
120
+
grant create session, create procedure, create type, create table to $UT3_TESTER_HELPER;
121
+
122
+
PROMPT Grants for testing distributed transactions
93
123
grant create public database link to $UT3_TESTER_HELPER;
94
124
grant drop public database link to $UT3_TESTER_HELPER;
95
-
set feedback on
96
-
--Needed for testing coverage outside of main UT3 schema.
125
+
126
+
PROMPT Grants for testing coverage outside of main UT3 schema.
97
127
grant create any procedure, drop any procedure, execute any procedure, create any type, drop any type, execute any type, under any type, select any table, update any table, insert any table, delete any table, create any table, drop any table, alter any table, select any dictionary, create any synonym, drop any synonym to $UT3_TESTER_HELPER;
98
128
grant create job to $UT3_TESTER_HELPER;
99
-
--Needed to allow for enable/disable of annotation triggers
100
-
grant administer database trigger to $UT3_TESTER_HELPER;
0 commit comments