File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ whenever oserror exit failure rollback
3131
3232alter session set current_schema = &&ut3_owner;
3333
34+ grant execute on &&ut3_owner..ut_expectation to public;
35+ grant execute on &&ut3_owner..ut_expectation_compound to public;
3436grant execute on &&ut3_owner..ut_be_between to public;
3537grant execute on &&ut3_owner..ut_be_empty to public;
3638grant execute on &&ut3_owner..ut_be_false to public;
101103
102104prompt Creating synonyms for UTPLSQL objects in &&ut3_owner schema to PUBLIC
103105
106+ create public synonym ut_expectation for &&ut3_owner..ut_expectation;
107+ create public synonym ut_expectation_compound for &&ut3_owner..ut_expectation_compound;
104108create public synonym be_between for &&ut3_owner..ut_be_between;
105109create public synonym be_empty for &&ut3_owner..ut_be_empty;
106110create public synonym be_false for &&ut3_owner..ut_be_false;
Original file line number Diff line number Diff line change @@ -51,6 +51,8 @@ whenever oserror exit failure rollback
5151
5252alter session set current_schema = &&ut3_owner;
5353
54+ grant execute on &&ut3_owner..ut_expectation to &ut3_user;
55+ grant execute on &&ut3_owner..ut_expectation_compound to &ut3_user;
5456grant execute on &&ut3_owner..ut_be_between to &ut3_user;
5557grant execute on &&ut3_owner..ut_be_empty to &ut3_user;
5658grant execute on &&ut3_owner..ut_be_false to &ut3_user;
Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ alter session set current_schema = &&ut3_owner;
5353
5454prompt Creating synonyms for UTPLSQL objects in &&ut3_owner schema to user &&ut3_user
5555
56+ create or replace synonym &ut3_user..ut_expectation for &&ut3_owner..ut_expectation;
57+ create or replace synonym &ut3_user..ut_expectation_compound for &&ut3_owner..ut_expectation_compound;
5658create or replace synonym &ut3_user..be_between for &&ut3_owner..be_between;
5759create or replace synonym &ut3_user..be_empty for &&ut3_owner..be_empty;
5860create or replace synonym &ut3_user..be_false for &&ut3_owner..be_false;
You can’t perform that action at this time.
0 commit comments