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

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

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

猜你喜欢

转载自www.cnblogs.com/YuyuanNo1/p/9213343.html
今日推荐