程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle修改表owner要用到的代碼有哪些

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

編輯:Oracle數據庫基礎

我們大家都知道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的介紹,望你能有所收獲。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved