We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c323de5 commit b8d68b5Copy full SHA for b8d68b5
create_function_toddog.sql
@@ -74,6 +74,19 @@ END;
74
/
75
show err
76
77
+prompt grant access and create public synonym
78
+
79
+GRANT EXECUTE ON f_metrictoddog TO public;
80
+GRANT EXECUTE ON f_eventtoddog TO public;
81
+GRANT EXECUTE ON f_gaugetoddog TO public;
82
+GRANT EXECUTE ON f_counttoddog TO public;
83
84
+CREATE OR REPLACE PUBLIC SYNONYM f_metrictoddog FOR SYS.f_gaugetoddog;
85
+CREATE OR REPLACE PUBLIC SYNONYM f_eventtoddog FOR SYS.f_gaugetoddog;
86
+CREATE OR REPLACE PUBLIC SYNONYM f_gaugetoddog FOR SYS.f_gaugetoddog;
87
+CREATE OR REPLACE PUBLIC SYNONYM f_counttoddog FOR SYS.f_gaugetoddog;
88
+show err
89
90
prompt calling function from pl/sql block
91
set serveroutput on
92
0 commit comments