Oracle修改表owner的實際操作
作者:佚名
以下的文章主要是介紹Oracle修改表owner的實際操作,而且本文會告訴你在Oracle修改表owner 中什么樣的操作只能在同一個數(shù)據(jù)庫中操作。
如果你在Oracle修改表owner 的實際操作中,你對Oracle修改表owner的實際操作中 有不解之處時,你可以通過以下的文章對其的實際應(yīng)用與功能有所了解,以下是文章的具體介紹,望你瀏覽完以下的內(nèi)容會有所收獲。
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;
在Oracle修改表owner 中這樣的操作似乎只能在同一個數(shù)據(jù)庫中操作。
- create user test1 identified by test1
- grant resource,connect to test1;
- conn test1/test1
- create table temp(id number,name varchar2(20))
partition by range(id)- (partition part0 values less than (-1),
- partition part1 values less than (maxvalue));
- create table t1(id number,name varchar2(20));
- alter table temp exchange partition part1 with
table test.t1- including indexes without validation;
- alter table temp exchange partition part1 with
table t1 including indexes without validation;
以上的相關(guān)內(nèi)容就是對Oracle修改表owner 的相關(guān)內(nèi)容的介紹,望你能有所收獲。
【編輯推薦】
責(zé)任編輯:佚名
來源:
博客園