<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ORA-1631 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ora-1631/m-p/2931763#M818629</link>
    <description>Dear all,&lt;BR /&gt;I have a question about ORA-1631.&lt;BR /&gt;I know this error problem is &lt;BR /&gt;Cause:The maximum amount of space allowed for saving undo entries has been reached for the named table. &lt;BR /&gt;Action:If possible, increase the value of either the MAXEXTENTS or PCTINCREASE initialization parameters.&lt;BR /&gt;(I already modify maximun number of this table = 505)&lt;BR /&gt;&lt;BR /&gt;But I want to know why this table deafult maximun number  value is 121 ???&lt;BR /&gt;where to set this parameter when I create a new table. &lt;BR /&gt;&lt;BR /&gt;Ps. db_blocksize = 8k&lt;BR /&gt;    platform is Win2000 Server&lt;BR /&gt;&lt;BR /&gt;Thanks...Kychuang&lt;BR /&gt;</description>
    <pubDate>Thu, 20 Mar 2003 10:13:37 GMT</pubDate>
    <dc:creator>KY.Chuang</dc:creator>
    <dc:date>2003-03-20T10:13:37Z</dc:date>
    <item>
      <title>ORA-1631</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ora-1631/m-p/2931763#M818629</link>
      <description>Dear all,&lt;BR /&gt;I have a question about ORA-1631.&lt;BR /&gt;I know this error problem is &lt;BR /&gt;Cause:The maximum amount of space allowed for saving undo entries has been reached for the named table. &lt;BR /&gt;Action:If possible, increase the value of either the MAXEXTENTS or PCTINCREASE initialization parameters.&lt;BR /&gt;(I already modify maximun number of this table = 505)&lt;BR /&gt;&lt;BR /&gt;But I want to know why this table deafult maximun number  value is 121 ???&lt;BR /&gt;where to set this parameter when I create a new table. &lt;BR /&gt;&lt;BR /&gt;Ps. db_blocksize = 8k&lt;BR /&gt;    platform is Win2000 Server&lt;BR /&gt;&lt;BR /&gt;Thanks...Kychuang&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Mar 2003 10:13:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ora-1631/m-p/2931763#M818629</guid>
      <dc:creator>KY.Chuang</dc:creator>
      <dc:date>2003-03-20T10:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-1631</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ora-1631/m-p/2931764#M818630</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt;You can specify the maxextents-value if you create a table: &lt;BR /&gt;create table .... storage (maxextents 505);&lt;BR /&gt;If you do not specify a maxextent the default value of the tablespace is used, check with &lt;BR /&gt;select max_extents from dba_tablespaces;&lt;BR /&gt;You can change it with &lt;BR /&gt;alter tablespace &lt;NAME&gt; default storage (maxextents 505);&lt;BR /&gt;&lt;BR /&gt;Chris&lt;/NAME&gt;</description>
      <pubDate>Thu, 20 Mar 2003 10:44:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ora-1631/m-p/2931764#M818630</guid>
      <dc:creator>Christian Gebhardt</dc:creator>
      <dc:date>2003-03-20T10:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-1631</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ora-1631/m-p/2931765#M818631</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;This is value is inherited from the tablespace.&lt;BR /&gt;&lt;BR /&gt;E.g. when creating my system tablespace, &lt;BR /&gt;&lt;BR /&gt;===========================================================&lt;BR /&gt;CREATE TABLESPACE ydtbs&lt;BR /&gt;DATAFILE '/u03/oracle/oradata/yddb/ydtbs01.dbf' SIZE 1048576 K &lt;BR /&gt;AUTOEXTEND ON NEXT 5120 K MAXSIZE 1048576 K&lt;BR /&gt;MINIMUM EXTENT 64 K&lt;BR /&gt;LOGGING&lt;BR /&gt;DEFAULT  STORAGE(&lt;BR /&gt;  INITIAL 64 K&lt;BR /&gt;  NEXT 64 K&lt;BR /&gt;  MINEXTENTS 1&lt;BR /&gt;  MAXEXTENTS UNLIMITED&lt;BR /&gt;  PCTINCREASE 50&lt;BR /&gt;  )&lt;BR /&gt;ONLINE&lt;BR /&gt;PERMANENT&lt;BR /&gt;EXTENT MANAGEMENT DICTIONARY&lt;BR /&gt;&lt;BR /&gt;===========================================================&lt;BR /&gt;&lt;BR /&gt;I would suggest that you look into Locally managed tablespaces and this type of problem will never occur again!!&lt;BR /&gt;&lt;BR /&gt;E.g.&lt;BR /&gt;CREATE TABLESPACE SLX1_TBSADMIN_MEDIUM&lt;BR /&gt;DATAFILE&lt;BR /&gt; '/u03/oracle/oradata/yddb/tbsadmin_medium01.dbf' SIZE 524288 K &lt;BR /&gt;AUTOEXTEND ON NEXT 512 K MAXSIZE 1048576 K&lt;BR /&gt;LOGGING&lt;BR /&gt;ONLINE&lt;BR /&gt;PERMANENT&lt;BR /&gt;EXTENT MANAGEMENT LOCAL UNIFORM SIZE 128 K&lt;BR /&gt;&lt;BR /&gt;if you need any further information, please let us know.&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Thu, 20 Mar 2003 12:33:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ora-1631/m-p/2931765#M818631</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2003-03-20T12:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: ORA-1631</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ora-1631/m-p/2931766#M818632</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;(Very) Old versions of Oracle had a MAXEXTENTS hard limit of 121. Newer Oracle versions don't have this limit, but if you don't explicitly set the limit with MAXEXTENTS when you create a tablespace, it will default to 121.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 21 Mar 2003 01:06:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ora-1631/m-p/2931766#M818632</guid>
      <dc:creator>Alex Ung</dc:creator>
      <dc:date>2003-03-21T01:06:47Z</dc:date>
    </item>
  </channel>
</rss>

