Decode360's Blog

          業精于勤而荒于嬉 QQ:150355677 MSN:decode360@hotmail.com

            BlogJava :: 首頁 :: 新隨筆 :: 聯系 ::  :: 管理 ::
            302 隨筆 :: 26 文章 :: 82 評論 :: 0 Trackbacks
          ??? 當發生臨時表空間不夠時,可以用以下語句來創建一個比較大的臨時表空間(各個文件可以創建到不同的磁盤以備用)
          ?
          SQL>create temporary tablespace TMPACCT2 tempfile '/u02/oradata/acct/tmpacct2-1.dbf' size 10M autoextend on next 10M maxsize 2000M;
          SQL> alter tablespace TMPACCT2 add tempfile '/u02/oradata/acct/tmpacct2-2.dbf' size 10M autoextend on next 10M maxsize 2000M;
          SQL> alter tablespace TMPACCT2 add tempfile '/u02/oradata/acct/tmpacct2-3.dbf' size 10M autoextend on next 10M maxsize 2000M;
          SQL> alter tablespace TMPACCT2 add tempfile '/u02/oradata/acct/tmpacct2-4.dbf' size 10M autoextend on next 10M maxsize 2000M;
          SQL> alter tablespace TMPACCT2 add tempfile '/u02/oradata/acct/tmpacct2-5.dbf' size 10M autoextend on next 10M maxsize 2000M;
          SQL> alter user TCICDR TEMPORARY TABLESPACE TMPACCT2;
          ?
          ??? 當遇到ORA-01652: unable to extend temp segment by 128 in tablespace xxxxx問題的時候,并不代表就是temp表空間不足,因為雖然Oracle會首先在臨時表空間中創建需要創建的object,但是在最后還是需要將其轉換到實際的tablespace中,而到tablespace空間不足時,創建的事務被打斷,SMON檢測到之后就會find the temporary extents out there and clean them up,所以這里的“temp segment”其實是指實際的tablespace空間不足。可以用以下方法來增加tablespace的空間:

          SQL> alter database datafile '&f' autoextend off;
          old?? 1: alter database datafile '&f' autoextend off
          new?? 1: alter database datafile '/home/ora10gr2/oracle/product/10.2.0/oradata/ora10gr2/system01.dbf' autoextend off

          Database altered.

          SQL> create table ttt tablespace system as select * from all_objects;
          create table ttt tablespace system as select * from all_objects
          *
          ERROR at line 1:
          ORA-01652: unable to extend temp segment by 128 in tablespace SYSTEM

          SQL> alter database datafile '&f' autoextend on next 10m maxsize 31g;
          old?? 1: alter database datafile '&f' autoextend on next 10m maxsize 31g
          new?? 1: alter database datafile '/home/ora10gr2/oracle/product/10.2.0/oradata/ora10gr2/system01.dbf' autoextend on next 10m maxsize 31g

          Database altered.

          SQL> create table ttt tablespace system as select * from all_objects;

          Table created.

          --當然僅為舉例,實際中千萬不要把用戶表創建到SYSTEM表空間

          ?




          -The End-

          posted on 2009-03-29 21:50 decode360-3 閱讀(491) 評論(0)  編輯  收藏 所屬分類: Toy
          主站蜘蛛池模板: 灯塔市| 城市| 湛江市| 金乡县| 高州市| 崇义县| 黄骅市| 谢通门县| 灵武市| 旌德县| 邛崃市| 启东市| 许昌市| 贵南县| 山东省| 临澧县| 田东县| 佛山市| 犍为县| 贺兰县| 新田县| 平武县| 曲靖市| 奉新县| 临安市| 大石桥市| 东乌珠穆沁旗| 高台县| 雅江县| 丹东市| 志丹县| 邵阳市| 克拉玛依市| 新津县| 星座| 安庆市| 长葛市| 桂平市| 静宁县| 涿州市| 商水县|