Oracle修改表owner要用到的代码有哪些
我们大家都知道Oracle的关系数据库是全世界***支持SQL语言的相关数据库。其有很多的用途,那么以下的文章主要是介绍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;
这样的操作似乎只能在同一个数据库中操作。
- 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;
以上的相关内容就是对Oracle修改表owner的介绍,望你能有所收获。
【编辑推荐】
- Oracle小数点的实际保留问题的4方案
- 用Oracle外部表来查看相关的报警信息的2方案
- Oracle join的正确用法描述
- Oracle ebs的oaf开发环境进行正确的配置
- Oracle reports功不可没,实现报表定长输出
版权声明:
作者:后浪云
链接:https://www.idc.net/help/315273/
文章版权归作者所有,未经允许请勿转载。
THE END