<?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 export in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937168#M929239</link>
    <description>Hi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I would try to have no users active when I export and even limit the access.&lt;BR /&gt;&lt;BR /&gt;see&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.orafaq.org/faqiexp.htm" target="_blank"&gt;http://www.orafaq.org/faqiexp.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;EXPORT: &lt;BR /&gt;Set the BUFFER parameter to a high value (eg. 2800000) &lt;BR /&gt;Make sure all applications on the site has been closed &lt;BR /&gt;Make sure the export file is on a physical drive not used by oracle &lt;BR /&gt;DO NOT export to a NFS mounted filesystem. It will take forever. &lt;BR /&gt;&lt;BR /&gt;                       Steve Steel</description>
    <pubDate>Thu, 27 Mar 2003 14:12:13 GMT</pubDate>
    <dc:creator>Steve Steel</dc:creator>
    <dc:date>2003-03-27T14:12:13Z</dc:date>
    <item>
      <title>Oracle export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937167#M929238</link>
      <description>Hi,&lt;BR /&gt;I've to make a database full export. Before issuing :&lt;BR /&gt;&lt;BR /&gt;exp system/passws file=EXP.DMP full=y buffer=300000 &lt;BR /&gt;&lt;BR /&gt;do I have to open the database in restrict mode?&lt;BR /&gt;What happens if some users are working on the db while I'm making the export?&lt;BR /&gt;&lt;BR /&gt;Will my export be good?&lt;BR /&gt;&lt;BR /&gt;Thank you.</description>
      <pubDate>Thu, 27 Mar 2003 13:49:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937167#M929238</guid>
      <dc:creator>Giada Bonfà</dc:creator>
      <dc:date>2003-03-27T13:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937168#M929239</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I would try to have no users active when I export and even limit the access.&lt;BR /&gt;&lt;BR /&gt;see&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.orafaq.org/faqiexp.htm" target="_blank"&gt;http://www.orafaq.org/faqiexp.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;EXPORT: &lt;BR /&gt;Set the BUFFER parameter to a high value (eg. 2800000) &lt;BR /&gt;Make sure all applications on the site has been closed &lt;BR /&gt;Make sure the export file is on a physical drive not used by oracle &lt;BR /&gt;DO NOT export to a NFS mounted filesystem. It will take forever. &lt;BR /&gt;&lt;BR /&gt;                       Steve Steel</description>
      <pubDate>Thu, 27 Mar 2003 14:12:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937168#M929239</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2003-03-27T14:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937169#M929240</link>
      <description>Here is an extract from Oracle's documentation describing the "consistent" parameter of the "exp" command. (I hope the formatting is OK).&lt;BR /&gt;CONSISTENT&lt;BR /&gt;Default: N &lt;BR /&gt;&lt;BR /&gt;Specifies whether or not Export uses the SET TRANSACTION READ ONLY statement to ensure that the data seen by Export is consistent to a single point in time and does not change during the execution of the export command. You should specify CONSISTENT=Y when you anticipate that other applications will be updating the target data after an export has started. &lt;BR /&gt;&lt;BR /&gt;If you specify CONSISTENT=N (the default), each table is usually exported in a single transaction. However, if a table contains nested tables, the outer table and each inner table are exported as separate transactions. If a table is partitioned, each partition is exported as a separate transaction. &lt;BR /&gt;&lt;BR /&gt;Therefore, if nested tables and partitioned tables are being updated by other applications, the data that is exported could be inconsistent. To minimize this possibility, export those tables at a time when updates are not being done. &lt;BR /&gt;&lt;BR /&gt;The following chart shows a sequence of events by two users: USER1 exports partitions in a table and USER2 updates data in that table. &lt;BR /&gt;&lt;BR /&gt;Time Sequence  USER1  USER2  &lt;BR /&gt;1  &lt;BR /&gt; Begins export of TAB:P1  &lt;BR /&gt;  &lt;BR /&gt; &lt;BR /&gt;2  &lt;BR /&gt;  &lt;BR /&gt; Updates TAB:P2&lt;BR /&gt;Updates TAB:P1&lt;BR /&gt;Commit transaction  &lt;BR /&gt; &lt;BR /&gt;3  &lt;BR /&gt; Ends export of TAB:P1  &lt;BR /&gt;  &lt;BR /&gt; &lt;BR /&gt;4  &lt;BR /&gt; Exports TAB:P2  &lt;BR /&gt;  &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If the export uses CONSISTENT=Y, none of the updates by USER2 are written to the export file. &lt;BR /&gt;&lt;BR /&gt;If the export uses CONSISTENT=N, the updates to TAB:P1 are not written to the export file. However, the updates to TAB:P2 are written to the export file because the update transaction is committed before the export of TAB:P2 begins. As a result, USER2's transaction is only partially recorded in the export file, making it inconsistent&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Mar 2003 14:32:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937169#M929240</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2003-03-27T14:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937170#M929241</link>
      <description>Its always better to have no activity going on when you export, but you don't have to open the database in exlusive mode to get a good export.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 27 Mar 2003 14:36:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937170#M929241</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-03-27T14:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937171#M929242</link>
      <description>I've run into problems with export files on very busy db's.  100 + users at a time.  If your activity is low you can get away with it.  Just use consistent=y if this is your case.</description>
      <pubDate>Thu, 27 Mar 2003 15:33:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937171#M929242</guid>
      <dc:creator>Gene Kornacki_3</dc:creator>
      <dc:date>2003-03-27T15:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937172#M929243</link>
      <description>If you use CONSISTENT=Y,&lt;BR /&gt;be careful about Rollback (with database activity)  &lt;BR /&gt;or you'll get a error&lt;BR /&gt;'Snapshot too old'</description>
      <pubDate>Thu, 27 Mar 2003 15:39:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937172#M929243</guid>
      <dc:creator>LE_1</dc:creator>
      <dc:date>2003-03-27T15:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937173#M929244</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;hope that this export is NOT your way of backing up of the database!&lt;BR /&gt;&lt;BR /&gt;The only real backup you can make is using RMAN.&lt;BR /&gt;&lt;BR /&gt;RMAN is real easy to configure and takes care of any consitency issues as long as you are running in Archive log mode.&lt;BR /&gt;&lt;BR /&gt;if you need any further help, let us know.&lt;BR /&gt;&lt;BR /&gt;Hope this helps!&lt;BR /&gt;Best Regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Thu, 27 Mar 2003 18:18:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937173#M929244</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2003-03-27T18:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937174#M929245</link>
      <description>Agree with most that EXP/IMP is not an ideal way of backing up but it is certainly better than nothing, and I have seen it used in many businesses.&lt;BR /&gt;There are several other ways, of which RMAN is the best, but not the only. For example, where I currently work, we shutdown the database and do file copy at the O/S level. (Management still believe that this is a supposed 24x7 environment !!)&lt;BR /&gt;&lt;BR /&gt;-- Graham</description>
      <pubDate>Fri, 28 Mar 2003 08:04:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937174#M929245</guid>
      <dc:creator>Graham Cameron_1</dc:creator>
      <dc:date>2003-03-28T08:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle export</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937175#M929246</link>
      <description>Export is not a "real"  backup of the database bc&lt;BR /&gt;it's a program after all, you can have bugs...&lt;BR /&gt;&lt;BR /&gt;Export is useful when you want to restore one table that a user has deleted for example&lt;BR /&gt;&lt;BR /&gt;RMAN  is nice because it doesn't backup empty database blocks... and it checks block corruption&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Mar 2003 14:01:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-export/m-p/2937175#M929246</guid>
      <dc:creator>LE_1</dc:creator>
      <dc:date>2003-03-28T14:01:40Z</dc:date>
    </item>
  </channel>
</rss>

