oracle怎么把一个用户下的表复制给另一个用户?(授予表权限)

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

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

原文地址:https://www.cnblogs.com/YuyuanNo1/p/9213343.html