<?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 Oracle Database Online Backup in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-online-backup/m-p/2534223#M890249</link>
    <description>Dear Guru's,&lt;BR /&gt;&lt;BR /&gt;We are using Omniback II 3.10 on HP/UX 11.0&lt;BR /&gt;We want support on how to Configure &amp;amp; take Oracle Database online backup (without shutting down the database).&lt;BR /&gt;&lt;BR /&gt;Plus provide help on how to take backup of individual files backup, because Omniback allows backup of a directory.&lt;BR /&gt;&lt;BR /&gt;Any kind of help is appreciated.&lt;BR /&gt;Thanks a lot in advance.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Jaikishan&lt;BR /&gt;</description>
    <pubDate>Wed, 30 May 2001 03:47:34 GMT</pubDate>
    <dc:creator>Jaikishan_1</dc:creator>
    <dc:date>2001-05-30T03:47:34Z</dc:date>
    <item>
      <title>Oracle Database Online Backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-online-backup/m-p/2534223#M890249</link>
      <description>Dear Guru's,&lt;BR /&gt;&lt;BR /&gt;We are using Omniback II 3.10 on HP/UX 11.0&lt;BR /&gt;We want support on how to Configure &amp;amp; take Oracle Database online backup (without shutting down the database).&lt;BR /&gt;&lt;BR /&gt;Plus provide help on how to take backup of individual files backup, because Omniback allows backup of a directory.&lt;BR /&gt;&lt;BR /&gt;Any kind of help is appreciated.&lt;BR /&gt;Thanks a lot in advance.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Jaikishan&lt;BR /&gt;</description>
      <pubDate>Wed, 30 May 2001 03:47:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-online-backup/m-p/2534223#M890249</guid>
      <dc:creator>Jaikishan_1</dc:creator>
      <dc:date>2001-05-30T03:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle Database Online Backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-online-backup/m-p/2534224#M890250</link>
      <description>OmniBack comes with support for hot backups of Oracle, but there are several methods for performing this.&lt;BR /&gt;&lt;BR /&gt;1) Use the EBU (Enterprise Backup Utility) for Oracle. This is an additional Oracle add-on (i.e. chargeable)It's use is documented at;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I've never used this method as I've never found a customer willing to stump-up for the EBU.&lt;BR /&gt;&lt;BR /&gt;So instead I've developed a kacky hot backup script that does the same thing, albeit over the course of an evening. I have one customer with 4 Oracle instances on a server, and each one is hot backed-up once a week, and the rest of the time archived redo logs are backed-up every hour.&lt;BR /&gt;&lt;BR /&gt;Basically the script identifies the structure of the database;&lt;BR /&gt;&lt;BR /&gt;${SVRMGRL}&amp;lt;&lt;EOF&gt;&lt;/EOF&gt;  connect internal;&lt;BR /&gt;  set termout off;&lt;BR /&gt;  spool $DBASE_STRUCT;&lt;BR /&gt;  select file_name,tablespace_name from sys.dba_data_files order by tablespace_name,file_name;&lt;BR /&gt;  spool off;&lt;BR /&gt;  exit;&lt;BR /&gt;EOF&lt;BR /&gt;&lt;BR /&gt;and then iterates over each tablespace file,  marking each tablespaces in backup mode;&lt;BR /&gt;&lt;BR /&gt;SED="/usr/bin/sed -e '/selected\.$/d' -e '/^---.*--$/d'  -e '/^FILE_NAME/d' $DBASE_STRUCT"&lt;BR /&gt;&lt;BR /&gt;eval $SED | while read FILE TABLESPACE&lt;BR /&gt;  do&lt;BR /&gt;echo "From database structure, file is $FILE and tablespace is $TABLESPACE"&lt;BR /&gt;${SVRMGRL}&amp;lt;&lt;EOF&gt;&lt;/EOF&gt;      connect internal;&lt;BR /&gt;      alter tablespace $TABLESPACE begin backup;&lt;BR /&gt;      exit&lt;BR /&gt;EOF&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The iteration continues, copying the *.dbf files to a staging area, and marks the tablespaces with "end backup." &lt;BR /&gt;&lt;BR /&gt;An OmniBack omnib backup routine is then called (I gzip the *.dbf files first for speed and size) for each individual *.dbf file, calling a datalist that refers to the archive filesystem/directory and looking for just *.gz files. This is the kacky bit, as each time the tape is loaded and unloaded for each tablespace file.&lt;BR /&gt;&lt;BR /&gt;Finally when the iteration is complete, I back-up a copy of the control file, with a final OmniBack routine;&lt;BR /&gt;&lt;BR /&gt;${SVRMGRL}&amp;lt;&lt;EOF&gt;&lt;/EOF&gt;connect internal;&lt;BR /&gt;alter database backup controlfile to '${ARCHIVE_AREA}/${ORACLE_SID}.ctl';&lt;BR /&gt;exit;&lt;BR /&gt;EOF&lt;BR /&gt;&lt;BR /&gt;(then the omnib routine)&lt;BR /&gt;&lt;BR /&gt;There's a lot more error checking, and mailing of results. I'd be relunctant to send the entire script (seeing as it would be chargeable.) Restoring is a bit of a bitch, 'cos you have to identify each *.dbf file (from the control file) and then parallel restore each one. I'm writing a dtksh script at present to identify all of the files from one days hot backup, and then have them restored with the click of a buttton. &lt;BR /&gt;&lt;BR /&gt;Nonetheless it does the trick. I'm still working-out a way to remove the vulnerability of losing 59 minutes of transactions if we lose the server altogether since the last archived redo log file backup was taken.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 30 May 2001 06:49:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-online-backup/m-p/2534224#M890250</guid>
      <dc:creator>Brendan Newport</dc:creator>
      <dc:date>2001-05-30T06:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle Database Online Backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-online-backup/m-p/2534225#M890251</link>
      <description>Hello!&lt;BR /&gt;&lt;BR /&gt;If using Oracle8 or higher, you'll have to use RMAN (Recovery Manager) which is shipped with Oracle.&lt;BR /&gt;&lt;BR /&gt;RMAN will perform a hot backup to disk or tape, depending on what you specify in the setup.&lt;BR /&gt;In essence you run a script like this from RMAN:&lt;BR /&gt;run {&lt;BR /&gt;allocate channel t1 type 'sbt_tape';&lt;BR /&gt;backup (database);&lt;BR /&gt;release channel t1;&lt;BR /&gt;allocate channel t1 type 'sbt_tape';&lt;BR /&gt;sql "alter system archive log current";&lt;BR /&gt;backup (archivelog all delete input);&lt;BR /&gt;release channel t1;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Information on setup of RMAN:&lt;BR /&gt;Oracle Metalink Note: 109223.1 Quickstart Guide: RMAN setup &amp;amp; Configuration&lt;BR /&gt;Oracle Metalink Note: 106432.1 RMAN: Setup and Usage in Oracle8 and 8i&lt;BR /&gt;Oracle Metalink Note: 50875.1   Getting started with Server Managed Recovery and RMAN&lt;BR /&gt;&lt;BR /&gt;Andreas</description>
      <pubDate>Wed, 30 May 2001 11:42:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-database-online-backup/m-p/2534225#M890251</guid>
      <dc:creator>Andreas D. Skjervold</dc:creator>
      <dc:date>2001-05-30T11:42:33Z</dc:date>
    </item>
  </channel>
</rss>

