1818IP-服务器技术教程,云服务器评测推荐,服务器系统排错处理,环境搭建,攻击防护等

当前位置:首页 - 数据库 - 正文

君子好学,自强不息!

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

createusertestidentifiedbytest 
grantresource,connecttotest; 
createtablet1(idnumber,namevarchar2(20)); 
insertintot1values(1,'xx'); 
commit; 
grantallont1totest1; 

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

createusertest1identifiedbytest1 
grantresource,connecttotest1; 
conntest1/test1 
createtabletemp(idnumber,namevarchar2(20))partitionbyrange(id) 
(partitionpart0valueslessthan(-1), 
partitionpart1valueslessthan(maxvalue)); 
createtablet1(idnumber,namevarchar2(20)); 
altertabletempexchangepartitionpart1withtabletest.t1 
includingindexeswithoutvalidation; 
altertabletempexchangepartitionpart1withtablet1includingindexeswithoutvalidation; 

本文来源:1818IP

本文地址:https://www.1818ip.com/post/11227.html

免责声明:本文由用户上传,如有侵权请联系删除!

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。