龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 数据库类 > Oracle 技术 >

Oracle修改表owner要用到的代码有哪些

时间:2011-04-12 23:18来源:未知 作者:admin 点击:
分享到:
我们大家都知道 Oracle 的关系数据库是全世界首个支持SQL语言的相关数据库。其有很多的用途,那么以下的文章主要是介绍Oracle修改表owner的实际操作,本文主要是以代码的方式来引出其

我们大家都知道Oracle的关系数据库是全世界首个支持SQL语言的相关数据库。其有很多的用途,那么以下的文章主要是介绍Oracle修改表owner的实际操作,本文主要是以代码的方式来引出其实际的相关的实际操作。

  1. create user test identified by test  
  2. grant resource,connect to test;  
  3. create table t1 (id number,name varchar2(20));  
  4. insert into t1 values (1,'xx');  
  5. commit;  
  6. grant all on t1 to test1;  

这样的操作似乎只能在同一个数据库中操作。

  1. create user test1 identified by test1  
  2. grant resource,connect to test1;  
  3. conn test1/test1  
  4. create table temp(id number,name varchar2(20)) partition by range(id)  
  5. (partition part0 values less than (-1),  
  6. partition part1 values less than (maxvalue));  
  7. create table t1(id number,name varchar2(20));  
  8. alter table temp exchange partition part1 with table test.t1  
  9. including indexes without validation;  
  10. alter table temp exchange partition part1 with table t1 including indexes without validation;   

以上的相关内容就是对Oracle修改表owner的介绍,望你能有所收获。

精彩图集

赞助商链接