Oracle pl/sql 複製表 資料匯入 匯出

zhaosoft1982發表於2010-09-17

複製表

1 直接生產複製表

create table 生成表 as select * from 被複製表

2 insert into 表 select * from 表 複製資料

3 將多個表資料插入一個表中

insert into 目標表(欄位1。。。欄位n)  (select 欄位1.。。。。欄位n) from 表 union all select 欄位1.....欄位n from 表

刪除表中資料

drop from 表名

先執行 在commit

刪除表

drop table

匯出表

1 匯出一個表 選擇表 右鍵 export data

2 sql inserts 選擇匯出路徑 儲存

匯入表

1 tools import tables

2 sql inserts 選擇檔案所在路徑

3 注: 若sql檔案中 匯入匯出使用者 與現實不符 可編輯刪除匯入匯出記錄

4 若 要匯入的表與現在表名稱不同 需要查詢替換 將名字變一致

相關文章