您所在的位置:
首页 > oracle修改表owner > 信息评论 >
oracle修改表owner
create user test identified by test grant resource,connect to test; create table t1 (id number,name varchar2(20)); insert into t1 values (1,'xx'); commit; grant all on t1 to test1; 这样的操作似乎只能在同一个数据库中操作。
网友评论