作者:david_zhang@sh 【转载时请以超链接形式标明文章】

链接:http://www.cnblogs.com/david-zhang-index/archive/2012/03/20/2409032.html

建表且指定表空间

create table scott.test (id number(5),name varchar2(10)) tablespace users;

将scott.test表从users表空间移动到example表空间

alter table scott.test move tablespace example;

相关文章:

  • 2021-10-18
  • 2021-12-08
  • 2021-12-29
  • 2021-10-22
  • 2021-10-17
  • 2021-11-04
  • 2021-06-20
  • 2021-05-08
猜你喜欢
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2021-12-29
  • 2022-01-15
  • 2021-11-28
  • 2021-12-30
相关资源
相似解决方案