您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“oracle如何轉(zhuǎn)移表的表空間”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“oracle如何轉(zhuǎn)移表的表空間”吧!
oracle中,可利用“alter table”語句轉(zhuǎn)移表的表空間,該語句可修改表的數(shù)據(jù),與“move tablespace”配合使用就可移動表的表空間,語法為“alter table 表名 move tablespace 新的表空間”。
本教程操作環(huán)境:Windows10系統(tǒng)、Oracle 11g版、Dell G3電腦。
轉(zhuǎn)移表的表空間語法如下:
將表table_name 移動到新的new_tbsp表空間
alter table table_name move tablespace new_tbsp;
生成指定tbsp_name表空間下的【所有表】生成移動new_tbsp表空間SQL語句
select 'alter table '|| table_name|| ' move tablespace new_tbsp;' from user_tables where tablespace_name = 'tbsp_name'
擴展:轉(zhuǎn)移不同的表空間
移動【索引】所在表空間:
如將索引index_name 移動到新的new_tbsp表空間(LOB數(shù)據(jù)類型的字段需按如下第3類處理)
alter index index_name rebuild tablespace new_tbsp;
--生成指定user_name用戶下的【所有索引】生成移動new_tbsp表空間SQL語句
select 'alter index '||index_name||' rebuild tablespace new_tbsp;' from user_indexes where table_owner = 'user_name'
移動【二進制流字段】數(shù)據(jù)存儲表空間,如將表table_name中的二進制流字段col_name移動到new_tbsp表空間
alter table table_name move tablespace new_tbsp lob (col_name) store as (tablespace new_tbsp);
--生成指定表table_name中為CLOB類型的字段的移動到new_tbsp 表空間SQL語句
select 'alter table '|| table_name||' move tablespace new_tbsp lob ('|| column_name||' ) store as (tablespace new_tbsp);' from user_tab_columns where data_type='CLOB' and table_name='table_name'
到此,相信大家對“oracle如何轉(zhuǎn)移表的表空間”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。