<?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: fbackup in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup/m-p/3140078#M900741</link>
    <description>I would export the database and backup the exported filesystem.. &lt;BR /&gt;&lt;BR /&gt;fbackup -f /dev/rmt/0m -d /exportfs</description>
    <pubDate>Mon, 22 Dec 2003 09:14:07 GMT</pubDate>
    <dc:creator>rmueller58</dc:creator>
    <dc:date>2003-12-22T09:14:07Z</dc:date>
    <item>
      <title>fbackup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup/m-p/3140074#M900737</link>
      <description>Hello all,&lt;BR /&gt;&lt;BR /&gt;  I'm trying to backup Oracle on a HP machine to a file. I can't seem to get the protocol of it. Can anyone assist? &lt;BR /&gt;&lt;BR /&gt;  Thank you very much!&lt;BR /&gt;    Michael</description>
      <pubDate>Tue, 09 Dec 2003 11:19:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup/m-p/3140074#M900737</guid>
      <dc:creator>Michael Brooks_4</dc:creator>
      <dc:date>2003-12-09T11:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup/m-p/3140075#M900738</link>
      <description>Hi Michael,&lt;BR /&gt;&lt;BR /&gt;the options for fbackup are (see man pages):&lt;BR /&gt;&lt;BR /&gt;-f device file&lt;BR /&gt;sets the device file used. Example: /dev/rmt/c4t3d0BEST.&lt;BR /&gt;&lt;BR /&gt;-i path &lt;BR /&gt;identifies the file or directory to include in the backup.&lt;BR /&gt;&lt;BR /&gt;-e path &lt;BR /&gt;identifies the file/directory to exclude&lt;BR /&gt;&lt;BR /&gt;-g graph&lt;BR /&gt;graph is a file containing the list of files/directories to include (i) and exclude (e). This sample graph file:&lt;BR /&gt;i /data&lt;BR /&gt;i /index&lt;BR /&gt;i /oraclelog&lt;BR /&gt;i /oracle&lt;BR /&gt;&lt;BR /&gt;would include the directories /data /index /oraclelog and /oracle.&lt;BR /&gt;&lt;BR /&gt;-0-9 &lt;BR /&gt;Backup level (used for incremental backups). By default level 0.&lt;BR /&gt;&lt;BR /&gt;-u &lt;BR /&gt;Update the file /var/adm/fbackupfiles/dates that registers the graph files used.&lt;BR /&gt;&lt;BR /&gt;-I path &lt;BR /&gt;Create an index in the path specified&lt;BR /&gt;&lt;BR /&gt;===&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;1) backup with graph file:&lt;BR /&gt;&lt;BR /&gt;#fbackup -f /dev/rmt/c4t3d0BEST -g graphAEAa28266</description>
      <pubDate>Tue, 09 Dec 2003 11:49:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup/m-p/3140075#M900738</guid>
      <dc:creator>Mister_Z</dc:creator>
      <dc:date>2003-12-09T11:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup/m-p/3140076#M900739</link>
      <description>Michael,&lt;BR /&gt;&lt;BR /&gt;in the -f option you can define a standard file where the backup is stored:&lt;BR /&gt;&lt;BR /&gt;#fbackup -f /DUMPS/jj/bup  -i /DUMPS/jj/p4&lt;BR /&gt;fbackup(1004): session begins on Tue Dec  9 18:02:08 2003&lt;BR /&gt;fbackup(3024): writing volume 1 to the output file /DUMPS/jj/bup&lt;BR /&gt;fbackup(3055): total file blocks read for backup: 13130&lt;BR /&gt;fbackup(3056): total blocks written to output file /DUMPS/jj/bup: 15256&lt;BR /&gt;&lt;BR /&gt;after that, you can use frecover to restore the backup:&lt;BR /&gt;&lt;BR /&gt;#frecover -f /DUMPS/jj/bup -xXv&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Dec 2003 12:07:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup/m-p/3140076#M900739</guid>
      <dc:creator>Mister_Z</dc:creator>
      <dc:date>2003-12-09T12:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup/m-p/3140077#M900740</link>
      <description>Michael,&lt;BR /&gt;&lt;BR /&gt;Do you mean an online backup with RMAN to a file on disk?&lt;BR /&gt;&lt;BR /&gt;The RMAN script would be something like:&lt;BR /&gt;&lt;BR /&gt;run {&lt;BR /&gt;allocate channel dev1 type disk;&lt;BR /&gt;backup        &lt;BR /&gt; incremental level 0&lt;BR /&gt; format '/u01/backup/rman/datafile_%U'&lt;BR /&gt; database;    &lt;BR /&gt;&lt;BR /&gt;backup&lt;BR /&gt; format '/u01/backup/rman/controlfile_%U'&lt;BR /&gt; current controlfile;&lt;BR /&gt;&lt;BR /&gt;sql 'alter system archive log current';&lt;BR /&gt;&lt;BR /&gt;backup&lt;BR /&gt; archivelog all&lt;BR /&gt; format '/u01/backup/rman/archlog_%U'&lt;BR /&gt; delete input;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;release channel dev1;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Kurt</description>
      <pubDate>Wed, 10 Dec 2003 02:00:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup/m-p/3140077#M900740</guid>
      <dc:creator>Kurt Beyers.</dc:creator>
      <dc:date>2003-12-10T02:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup/m-p/3140078#M900741</link>
      <description>I would export the database and backup the exported filesystem.. &lt;BR /&gt;&lt;BR /&gt;fbackup -f /dev/rmt/0m -d /exportfs</description>
      <pubDate>Mon, 22 Dec 2003 09:14:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup/m-p/3140078#M900741</guid>
      <dc:creator>rmueller58</dc:creator>
      <dc:date>2003-12-22T09:14:07Z</dc:date>
    </item>
  </channel>
</rss>

