Oracle 命令大匯總-資料移轉

來源:互聯網
上載者:User
第六章:load資料 
    1.loading data using direct_load insert 
    sql> insert /*+append */ into emp nologging 
    sql> select * from emp_old; 
    2.parallel direct-load insert 
    sql> alter session enable parallel dml; 
    sql> insert /*+parallel(emp,2) */ into emp nologging 
    sql> select * from emp_old; 
    3.using sql*loader 
    sql> sqlldr scott/tiger \ 
    sql> control = ulcase6.ctl \ 
    sql> log = ulcase6.log direct=true 
第七章:reorganizing data 
    1.using expoty 
    $exp scott/tiger tables(dept,emp) file=c:\emp.dmp log=exp.log compress=n direct=y 
    2.using import 
    $imp scott/tiger tables(dept,emp) file=emp.dmp log=imp.log ignore=y 
    3.transporting a tablespace 
    sql>alter tablespace sales_ts read only; 
    $exp sys/.. file=xay.dmp transport_tablespace=y tablespace=sales_ts 
    triggers=n constraints=n 
    $copy datafile 
    $imp sys/.. file=xay.dmp transport_tablespace=y datafiles=(/disk1/sles01.dbf,/disk2 
    /sles02.dbf) 
    sql> alter tablespace sales_ts read write; 
    4.checking transport set 
    sql> dbms_tts.transport_set_check(ts_list =>''sales_ts'' ..,incl_constraints=>true); 
    在表transport_set_violations 中查看 
    sql> dbms_tts.isselfcontained 為true 是, 表示自包含

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.