<?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 database backup in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715343#M61695</link>
    <description>I would recommend a combination of hot backups and tar backup the database. Ensure that you do a test retrieval at least once a month (more often if the database is mission critical).&lt;BR /&gt;&lt;BR /&gt;I use following strategy.&lt;BR /&gt;1. Hot backup and stored in a tape using tar.&lt;BR /&gt;2. Oracle export (exp command) on the data and this output is again stored using tar. &lt;BR /&gt;&lt;BR /&gt;Second point is good for small databases but for large onces, it requires a substantial amount of diskspace.&lt;BR /&gt;&lt;BR /&gt;HTH.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 02 May 2002 09:10:34 GMT</pubDate>
    <dc:creator>Gururaj Gudi</dc:creator>
    <dc:date>2002-05-02T09:10:34Z</dc:date>
    <item>
      <title>oracle database backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715337#M61689</link>
      <description>I'm currently using cpio to backup our oracle server running on 11.00. The backup starts at the root level all the way down to all subdirectory. How can I just backup only the database which is /u01, /u02, /u03, and /u04? This is the backup script:&lt;BR /&gt;cd /&lt;BR /&gt;find . -print:cpio -ovcB&amp;gt;/dev/rmt/0mb&lt;BR /&gt;&lt;BR /&gt;I already have a script to shutdown the database. Need help!!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 01 May 2002 23:20:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715337#M61689</guid>
      <dc:creator>Jade Bulante</dc:creator>
      <dc:date>2002-05-01T23:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: oracle database backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715338#M61690</link>
      <description>&lt;BR /&gt;We've used these to archive all table spaces:&lt;BR /&gt;&lt;BR /&gt;# find /u*/oradata/ -xdev | cpio&lt;BR /&gt;# tar c /u*/oradata/&lt;BR /&gt;&lt;BR /&gt;And we've use these to isolate a specific database where its table spaces reside in directories by the same name:&lt;BR /&gt;&lt;BR /&gt;# find /u*/oradata/${DB}/ -xdev | cpio&lt;BR /&gt;# tar c /u*/oradata/${DB}/&lt;BR /&gt;&lt;BR /&gt;But now we use Legato and will soon be implementing EMC TimeFinder to eliminate downtime.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 01 May 2002 23:34:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715338#M61690</guid>
      <dc:creator>Jordan Bean</dc:creator>
      <dc:date>2002-05-01T23:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: oracle database backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715339#M61691</link>
      <description>Hi Jade,&lt;BR /&gt;&lt;BR /&gt; A simple mod to your find  command would be to replace the start for the find from "." to "./u0*" &lt;BR /&gt;This will force find to ONLY look in dirs that start with u0 (zero).&lt;BR /&gt;&lt;BR /&gt;But I would also recommend that if the backup will only be restored to an HP system, you take a look at the fbackup command.&lt;BR /&gt;Do a man fbackup&lt;BR /&gt;Much more versatile &amp;amp; faster to boot.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Wed, 01 May 2002 23:49:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715339#M61691</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2002-05-01T23:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: oracle database backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715340#M61692</link>
      <description>After paying all that money for Oracle, I would definitely not recommend cpio, tar, pax or dump as a backup tool.  These classic Unix utilities were never designed to backup gigabytes of data and tar/cpio/pax cannot backup files larger than 2Gb.  They were not designed to be used on DDS and DLT drives, and they have no error recovery capability.&lt;BR /&gt;&lt;BR /&gt;The minimum backup program I would recommend is fbackup (which sam can configure for you) for a number of reasons: reliability, speed, error recovery, multi-tape support, labeled tapes, central index, etc&lt;BR /&gt;&lt;BR /&gt;But a commercial backup program such as HP's Omniback is much more robust and is designed specifically for databases.</description>
      <pubDate>Thu, 02 May 2002 01:32:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715340#M61692</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2002-05-02T01:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: oracle database backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715341#M61693</link>
      <description>Hi,&lt;BR /&gt;using OS commands to backup Oracle Database!!&lt;BR /&gt;&lt;BR /&gt;Ask the Oracle Experts, they will never recommend that! &lt;BR /&gt;&lt;BR /&gt;HOT BACKUP. This is all you need. You should be running the latest versions of Oracle (8i?) Use RMAN. period.&lt;BR /&gt;&lt;BR /&gt;My advice, you have paid so much for Oracle and all those nice features that come with it, so why don't you use them...&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Thu, 02 May 2002 06:08:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715341#M61693</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2002-05-02T06:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: oracle database backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715342#M61694</link>
      <description>Hi there.&lt;BR /&gt;Using Unix tools may be ok for small databases.&lt;BR /&gt;If you have larger databases, you should go for atleast fbackup, which allows you to pick single files very easy. The unix tools capacity is mostly limited to a size of 2 GB for single files.&lt;BR /&gt;You should really think about OmniBack.&lt;BR /&gt;This product is reliable, conmfortable ( GUI ) and it works with a lot of different devices for backups ( DAT, DLT, libraries etc ). We use this since 1994 and we can still restore files from that period quick enough.&lt;BR /&gt;Just my 0.02 ???&lt;BR /&gt;Rgds&lt;BR /&gt;Alexander M. Ermes&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 May 2002 06:26:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715342#M61694</guid>
      <dc:creator>Alexander M. Ermes</dc:creator>
      <dc:date>2002-05-02T06:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: oracle database backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715343#M61695</link>
      <description>I would recommend a combination of hot backups and tar backup the database. Ensure that you do a test retrieval at least once a month (more often if the database is mission critical).&lt;BR /&gt;&lt;BR /&gt;I use following strategy.&lt;BR /&gt;1. Hot backup and stored in a tape using tar.&lt;BR /&gt;2. Oracle export (exp command) on the data and this output is again stored using tar. &lt;BR /&gt;&lt;BR /&gt;Second point is good for small databases but for large onces, it requires a substantial amount of diskspace.&lt;BR /&gt;&lt;BR /&gt;HTH.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 May 2002 09:10:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715343#M61695</guid>
      <dc:creator>Gururaj Gudi</dc:creator>
      <dc:date>2002-05-02T09:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: oracle database backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715344#M61696</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;be careful to include ALL your database's datafiles! Someone might have added a datafile somewhere else and then your whole backup is worth NOTHING!&lt;BR /&gt;So your backup procedure has to query the database instance for the list of datafiles!&lt;BR /&gt;You really need a appropriate tool for this, and I do not consider tar/cpio/pax/dd to be appropriate...&lt;BR /&gt;&lt;BR /&gt;Just my $0.02,&lt;BR /&gt;Wodisch&lt;BR /&gt;</description>
      <pubDate>Thu, 02 May 2002 12:35:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715344#M61696</guid>
      <dc:creator>Wodisch</dc:creator>
      <dc:date>2002-05-02T12:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: oracle database backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715345#M61697</link>
      <description>Jade,&lt;BR /&gt;&lt;BR /&gt;The best way to identify the datafiles is to query the database.  You could build a script to spool the output to a file.  Then use that file to backup the datafiles.&lt;BR /&gt;&lt;BR /&gt;Examples of the querys I use are:&lt;BR /&gt;&lt;BR /&gt;spool /tmp/datafiles.dat&lt;BR /&gt;set head off&lt;BR /&gt;select file_name from dba_data_files;&lt;BR /&gt;select member from v$logfile;&lt;BR /&gt;select name from v$controlfile;&lt;BR /&gt;select file_name from dba_temp_files; (8i and above)&lt;BR /&gt;spool off&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this points you in the right direction.  I usually always going the wrong way!!!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;...jcd...</description>
      <pubDate>Thu, 02 May 2002 12:39:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715345#M61697</guid>
      <dc:creator>Joseph C. Denman</dc:creator>
      <dc:date>2002-05-02T12:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: oracle database backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715346#M61698</link>
      <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;since we all seem to be talking about "offline backups":&lt;BR /&gt;do not forget to shutdown your instance with a CHECKPOINT *before* you do the backup:&lt;BR /&gt;&lt;BR /&gt;shutdown immediate&lt;BR /&gt;&lt;BR /&gt;else your backup is not worth a thing...&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Wodisch&lt;BR /&gt;</description>
      <pubDate>Thu, 02 May 2002 15:26:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-backup/m-p/2715346#M61698</guid>
      <dc:creator>Wodisch</dc:creator>
      <dc:date>2002-05-02T15:26:48Z</dc:date>
    </item>
  </channel>
</rss>

