<?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 Re: Oracle file system full in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-file-system-full/m-p/2539279#M916028</link>
    <description>this is from Oracle Admin Guide&lt;BR /&gt;-------------&lt;BR /&gt;Online Redo Log Contents&lt;BR /&gt;Online redo log files are filled with redo records. A redo record, also called a redo&lt;BR /&gt;entry, is made up of a group of change vectors, each of which is a description of a&lt;BR /&gt;change made to a single block in the database. For example, if you change a salary&lt;BR /&gt;value in an employee table, you generate a redo record containing change vectors&lt;BR /&gt;that describe changes to the data segment block for the table, the rollback segment&lt;BR /&gt;data block, and the transaction table of the rollback segments.&lt;BR /&gt;Redo entries record data that you can use to reconstruct all changes made to the&lt;BR /&gt;database, including the rollback segments. Therefore, the online redo log also&lt;BR /&gt;protects rollback data. When you recover the database using redo data, Oracle reads&lt;BR /&gt;the change vectors in the redo records and applies the changes to the relevant&lt;BR /&gt;blocks.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Every database contains one or more rollback segments, which are portions of the&lt;BR /&gt;database that record the actions of transactions in the event that a transaction is&lt;BR /&gt;rolled back. You use rollback segments to provide read consistency, roll back&lt;BR /&gt;transactions, and recover the database.&lt;BR /&gt;See Also: For more information about rollback segments, see Oracle8i Concepts.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;----------&lt;BR /&gt;if rollback segment is online , you cannot drop it.</description>
    <pubDate>Tue, 12 Jun 2001 03:05:57 GMT</pubDate>
    <dc:creator>Printaporn_1</dc:creator>
    <dc:date>2001-06-12T03:05:57Z</dc:date>
    <item>
      <title>Oracle file system full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-file-system-full/m-p/2539278#M916027</link>
      <description>Currently, my file system for oracle is 96% and I found that the most bigger file reside this directory is rbs01.dbf file. This is rollback segment files. Any body can brief me what is this file for and what is different between online redo and rollback segments. This file size around 450MB and is it too huge and needs to drop it ? Thanks.</description>
      <pubDate>Tue, 12 Jun 2001 01:35:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-file-system-full/m-p/2539278#M916027</guid>
      <dc:creator>Kenn Chen</dc:creator>
      <dc:date>2001-06-12T01:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle file system full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-file-system-full/m-p/2539279#M916028</link>
      <description>this is from Oracle Admin Guide&lt;BR /&gt;-------------&lt;BR /&gt;Online Redo Log Contents&lt;BR /&gt;Online redo log files are filled with redo records. A redo record, also called a redo&lt;BR /&gt;entry, is made up of a group of change vectors, each of which is a description of a&lt;BR /&gt;change made to a single block in the database. For example, if you change a salary&lt;BR /&gt;value in an employee table, you generate a redo record containing change vectors&lt;BR /&gt;that describe changes to the data segment block for the table, the rollback segment&lt;BR /&gt;data block, and the transaction table of the rollback segments.&lt;BR /&gt;Redo entries record data that you can use to reconstruct all changes made to the&lt;BR /&gt;database, including the rollback segments. Therefore, the online redo log also&lt;BR /&gt;protects rollback data. When you recover the database using redo data, Oracle reads&lt;BR /&gt;the change vectors in the redo records and applies the changes to the relevant&lt;BR /&gt;blocks.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Every database contains one or more rollback segments, which are portions of the&lt;BR /&gt;database that record the actions of transactions in the event that a transaction is&lt;BR /&gt;rolled back. You use rollback segments to provide read consistency, roll back&lt;BR /&gt;transactions, and recover the database.&lt;BR /&gt;See Also: For more information about rollback segments, see Oracle8i Concepts.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;----------&lt;BR /&gt;if rollback segment is online , you cannot drop it.</description>
      <pubDate>Tue, 12 Jun 2001 03:05:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-file-system-full/m-p/2539279#M916028</guid>
      <dc:creator>Printaporn_1</dc:creator>
      <dc:date>2001-06-12T03:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle file system full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-file-system-full/m-p/2539280#M916029</link>
      <description>How to shrink rollback TS ?&lt;BR /&gt;&lt;BR /&gt;1) Find TS with rollback segs&lt;BR /&gt;   select tablespace_name from dba_segments &lt;BR /&gt;     where segment_type='ROLLBACK';&lt;BR /&gt;&lt;BR /&gt;2) Find datafiles belonging to RBS TS&lt;BR /&gt;   Select * from dba_datafiles&lt;BR /&gt;     where tablespace_name in ( result of 1 );&lt;BR /&gt;&lt;BR /&gt;3a) try resizing datafile to shrink:&lt;BR /&gt;   alter database datafile '/a/b/c/d.dbf'&lt;BR /&gt;   resize nnnM;&lt;BR /&gt;   Will succed, or fail if space already has &lt;BR /&gt;   been used.&lt;BR /&gt;&lt;BR /&gt;3b) otherwise you'll need to recreate the TS.&lt;BR /&gt;Short description (application can stay up):&lt;BR /&gt;TS=tablespace&lt;BR /&gt;RS=rollback segment&lt;BR /&gt;&lt;BR /&gt;- create TS rbs_temp&lt;BR /&gt;- create RS_tmp in TS rbs_tmp (as many as needed)&lt;BR /&gt;- alter all RS_tmp online&lt;BR /&gt;&lt;BR /&gt;- alter RS_standard offline (as many as involved)&lt;BR /&gt;- drop RS_standard (as many as involved)&lt;BR /&gt;- drop ts rbs_standard&lt;BR /&gt;- delete datafiles belonging to rbs_standard&lt;BR /&gt;&lt;BR /&gt;- create new TS rbs_standard&lt;BR /&gt;- create RS_standard in TS rbs_standard (as many as needed)&lt;BR /&gt;- alter all RS_standard online&lt;BR /&gt;&lt;BR /&gt;- alter RS_tmp offline (as many as involved)&lt;BR /&gt;- drop RS_tmp (as many as involved)&lt;BR /&gt;- drop ts rbs_tmp&lt;BR /&gt;- delete datafiles belonging to rbs_tmp&lt;BR /&gt;&lt;BR /&gt;Let me know, if you need more details&lt;BR /&gt;Volker&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Jun 2001 10:08:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-file-system-full/m-p/2539280#M916029</guid>
      <dc:creator>Volker Borowski</dc:creator>
      <dc:date>2001-06-12T10:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle file system full</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-file-system-full/m-p/2539281#M916030</link>
      <description>Hi,&lt;BR /&gt;450MB for the Rollback tablespace might be OK for a large database, or maybe even necessary if you have many large updates.&lt;BR /&gt;BTW I never set autoextend enabled for Rollback datafiles, one bad update might increase the datafile without control.&lt;BR /&gt;regards,&lt;BR /&gt;Thierry.</description>
      <pubDate>Tue, 12 Jun 2001 10:21:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-file-system-full/m-p/2539281#M916030</guid>
      <dc:creator>Thierry Poels_1</dc:creator>
      <dc:date>2001-06-12T10:21:28Z</dc:date>
    </item>
  </channel>
</rss>

