【概要】
ROLE_SYS_PRIVSにより、ロールに付与されているシステム権限を確認する。
【SQL文】
/*
|| ■ロールに付与されているシステム権限を確認する
||
||【項目の説明】
|| role :ロールの名前
|| privilege :ロールに付与されたシステム権限
|| admin_option :ADMIN OPTION付きで付与されたかどうか(YES | NO)
*/
set echo off
set lines 100
set pages 10
clear col
ttitle off
col role for a30
col privilege for a30
col admin_option for a10
ttitle left ‘■■■ ロールに付与されているシステム権限情報 ■■■’
spool role_sysprivs_info.lis
SELECT role
, privilege
, admin_option
FROM role_sys_privs
ORDER BY 1
;
spool off
clear col
ttitle off
set lines 80
以上です (^^♪