熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> SQL語言 >> 正文

如何使用Exp以傳輸表空間的方式將其導出[2]

2022-06-13   來源: SQL語言 

  這裡以linux下Oracle為例簡要介紹一下使用

  創建表空間並生成數據

  sqlplus / as sysdba
  create tablespace hexiong datafile ?/hexiongdbf size M;
  create user hexiong identified by hexiong default tablespace hexiong;
  grant connect resource to hexiong;
  conn hexiong/hexiong
  create table t as select * from all_objects;

  檢查一下表空間是否齊備:

  exec sysdbms_ttstransport_set_check(hexiong TRUE);
  PL/SQL procedure successfully completed
  SQL> select * from systransport_set_violations;
  no rows selected

  這表示該表空裡的對象集是自包含的(對象及其索引都在此表空間中)

  設定表空間為只讀

  alter tablespace hexiong read only;

[]  []  []  []  


From:http://tw.wingwit.com/Article/program/SQL/201311/16210.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.