程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> oracle移動表

oracle移動表

編輯:Oracle教程

oracle移動表


oracle移動表
在創建表時可以為表指定存儲空間,如果不指定,oracle會將該表存儲到默認的表空間中。根據需要可以將表從一個表空間移動到另一個表空間中。語法如下:
alter table table_name move tablespace tablespace_name;
SQL> select table_name,tablespace_name from user_tables;

TABLE_NAME
----------------------------------------
TABLESPACE_NAME
------------------------------
USERS
USERS


STUDENT
USERS


MESSAGE
USERS
如上所示,在該用戶的tablespace中有三張表,他們都位於users表空間中,
使用該語句移動student表:
SQL> alter table student move tablespace testspace;

表已更改。再次查詢

SQL> select table_name,tablespace_name from user_tables;

TABLE_NAME
----------------------------------------
TABLESPACE_NAME
------------------------------
USERS
USERS


MESSAGE
USERS


STUDENT
TESTSPACE

 

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