IT猫扑网:您身边最放心的安全下载站! 最新更新|软件分类|软件专题|手机版|论坛转贴|软件发布

您当前所在位置:首页数据库Oracle → oracle修改表owner

oracle修改表owner

时间:2015/6/28来源:IT猫扑网作者:网管联盟我要评论(0)

  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中使用alter table来增加,删除,修改列Oracle中使用alter table来增加,删除,修改列oracle中使用SQL语句修改字段类型-oracle修oracle中使用SQL语句修改字段类型-oracle修使用低权限Oracle数据库账户得到管理员权限使用低权限Oracle数据库账户得到管理员权限Oracle对user的访问控制Oracle对user的访问控制

相关下载

人气排行 ORACLE SQL 判断字符串是否为数字的语句Oracle中使用alter table来增加,删除,修改列的语法ORACLE和SQL语法区别归纳(1)oracle grant 授权语句如何加速Oracle大批量数据处理Oracle删除表的几种方法ORACLE修改IP地址后如何能够使用Oracle 10g创建表空间和用户并指定权限