执行一下脚本就行了
- set pages 999;
- set heading off;
- spool run_grant.sql
- select 'grant select on '||owner||'.'||object_name|| ' to xxx;'
- from dba_objects
- where object_type='TABLE' and owner='xxx';
- spool off;
- @run_grant
转自:
本文共 254 字,大约阅读时间需要 1 分钟。
执行一下脚本就行了
转自:
转载于:https://blog.51cto.com/omygreen/911830