Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b28c568 commit 4888784Copy full SHA for 4888784
1 file changed
source/check_sys_grants.sql
@@ -18,8 +18,11 @@ begin
18
select column_value as privilege
19
from table(l_expected_grants)
20
minus
21
- select replace(privilege,' ANY ') privilege
+ (select privilege
22
from user_sys_privs
23
+ union all
24
+ select replace(privilege,' ANY ') privilege
25
+ from user_sys_privs)
26
);
27
if l_missing_grants is not null then
28
raise_application_error(
0 commit comments