Oracle では、「alter table」ステートメントを使用してテーブルのテーブルスペースを転送できます。このステートメントはテーブルのデータを変更できます。「move tablespace」と組み合わせて使用すると、テーブルスペースは構文は「alter table テーブル名 move tablespace new tablespace」です。
このチュートリアルの動作環境: Windows 10 システム、Oracle 11g バージョン、Dell G3 コンピューター。
表を転送する表スペースの構文は次のとおりです。
表 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'
拡張子: 異なる転送table space
[index] が配置されているテーブルスペースを移動します:
たとえば、インデックスindex_nameを新しいnew_tbspテーブルスペースに移動します(LOBデータ型のフィールドは次のカテゴリに従って処理されます。 3)
alter index index_name rebuild tablespace new_tbsp;
--指定された user_name user の下に [すべてのインデックス] を生成し、new_tbsp テーブル スペースを移動する SQL ステートメントを生成します。
select 'alter index '||index_name||' rebuild tablespace new_tbsp;' from user_indexes where table_owner = 'user_name'
Move the [バイナリ ストリーム]フィールド] データ ストレージ テーブル スペース (テーブル 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 ビデオ チュートリアル 」
以上がOracle でテーブルのテーブルスペースを転送する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。