//把system读写权限 授权给scott
select 'Grant all on '||table_name||' to scott;' from all_tables 
where owner = upper('system');

然后执行以上的所有查询结果;

05-04 12:46