Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Recovered grant execute on ut_output_reporter_base
  • Loading branch information
jgebal committed Jun 23, 2019
commit 7fc8d2cbec12dffda88698599cb706f15f3ebfe2
2 changes: 2 additions & 0 deletions source/create_synonyms_and_grants_for_public.sql
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ grant execute on &&ut3_owner..ut_debug_reporter to public;
--reporters - base types
grant execute on &&ut3_owner..ut_reporters to public;
grant execute on &&ut3_owner..ut_reporter_base to public;
grant execute on &&ut3_owner..ut_output_reporter_base to public;

--outputs
grant execute on &&ut3_owner..ut_output_buffer_base to public;
Expand Down Expand Up @@ -175,6 +176,7 @@ create public synonym ut_debug_reporter for &&ut3_owner..ut_debug_reporter;
--reporters - base types
create public synonym ut_reporters for &&ut3_owner..ut_reporters;
create public synonym ut_reporter_base for &&ut3_owner..ut_reporter_base;
create public synonym ut_output_reporter_base for &&ut3_owner..ut_output_reporter_base;

--other synonyms
create public synonym dbmspcc_blocks for &&ut3_owner..dbmspcc_blocks;
Expand Down
1 change: 1 addition & 0 deletions source/create_user_grants.sql
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ grant execute on &&ut3_owner..ut_debug_reporter to &ut3_user;
--reporters - base types
grant execute on &&ut3_owner..ut_reporters to &ut3_user;
grant execute on &&ut3_owner..ut_reporter_base to &ut3_user;
grant execute on &&ut3_owner..ut_output_reporter_base to &ut3_user;

--outputs
grant execute on &&ut3_owner..ut_output_buffer_base to &ut3_user;
Expand Down
1 change: 1 addition & 0 deletions source/create_user_synonyms.sql
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ create or replace synonym &ut3_user..ut_debug_reporter for &&ut3_owner..ut_debug
--reporters - base types
create or replace synonym &ut3_user..ut_reporters for &&ut3_owner..ut_reporters;
create or replace synonym &ut3_user..ut_reporter_base for &&ut3_owner..ut_reporter_base;
create or replace synonym &ut3_user..ut_output_reporter_base for &&ut3_owner..ut_output_reporter_base;

--other synonyms
create or replace synonym &ut3_user..dbmspcc_blocks for &&ut3_owner..dbmspcc_blocks;
Expand Down