<?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: backup and restore prod db for Dev/QC purposes in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254485#M674927</link>
    <description>here is something I did in the past. It works but you will be hogging the WAN bandwidth so, use it with caution:&lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;echo "Destination Server ?:"; read host&lt;BR /&gt;echo "Source directory ?:"; read srcdir&lt;BR /&gt;echo "Destination directory on destination host ?:"; read destdir&lt;BR /&gt;&lt;BR /&gt;cd ${srcdir}&lt;BR /&gt;find . -xdev -depth | cpio -ocx | remsh ${host} "(cd ${destdir}; cpio -idcumvx)"&lt;BR /&gt;&lt;BR /&gt;this script takes the contents of a directory and moves it across the network to another server at another directory you specify on the destination server.&lt;BR /&gt;&lt;BR /&gt;This script is not very security conscious and requires shell function to be enabled in /etc/inetd.conf as well as an entry like this in the root's .rhosts file on the destination server:&lt;BR /&gt;&lt;BR /&gt;source_host root&lt;BR /&gt;&lt;BR /&gt;needless to say, it is best if you can run this as root.&lt;BR /&gt;&lt;BR /&gt;hope this helps.</description>
    <pubDate>Tue, 19 Aug 2008 17:42:34 GMT</pubDate>
    <dc:creator>Mel Burslan</dc:creator>
    <dc:date>2008-08-19T17:42:34Z</dc:date>
    <item>
      <title>backup and restore prod db for Dev/QC purposes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254483#M674925</link>
      <description>Prod Oracle 10G db is 295GB and distributed on 35 filesystems made up of 143 files which ranges from ~14GB, 7GB, 5GB, 3GB, 2GB  to ~15 MB on EMC frame. &lt;BR /&gt;I don't have SRDF. &lt;BR /&gt;Looking for ideas of tapeless restore db to another server and storage system in different state or region. I checking the network bandwidth available.&lt;BR /&gt;I'm looking for ideas within oracle like rman, export/import rows, also file sync utils like rsync, rdist&lt;BR /&gt;Insights, experiences?&lt;BR /&gt;Thank you</description>
      <pubDate>Tue, 19 Aug 2008 12:41:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254483#M674925</guid>
      <dc:creator>Mike_Ca Li</dc:creator>
      <dc:date>2008-08-19T12:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: backup and restore prod db for Dev/QC purposes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254484#M674926</link>
      <description>You don't have SRDF so this has to be done at server level. Is this on a LAN or over the WAN?  You insist on a tapeless solution but pushing ~300GB over the WAN is not easy but it is doable.&lt;BR /&gt;&lt;BR /&gt;Take a look at oracle's dataguard. exp/imp would also work. File based utils will not work because the dbf files are always current (open) and being modified. Hot backups will also work (place files in archive mode and copy them).</description>
      <pubDate>Tue, 19 Aug 2008 14:23:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254484#M674926</guid>
      <dc:creator>TTr</dc:creator>
      <dc:date>2008-08-19T14:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: backup and restore prod db for Dev/QC purposes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254485#M674927</link>
      <description>here is something I did in the past. It works but you will be hogging the WAN bandwidth so, use it with caution:&lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;echo "Destination Server ?:"; read host&lt;BR /&gt;echo "Source directory ?:"; read srcdir&lt;BR /&gt;echo "Destination directory on destination host ?:"; read destdir&lt;BR /&gt;&lt;BR /&gt;cd ${srcdir}&lt;BR /&gt;find . -xdev -depth | cpio -ocx | remsh ${host} "(cd ${destdir}; cpio -idcumvx)"&lt;BR /&gt;&lt;BR /&gt;this script takes the contents of a directory and moves it across the network to another server at another directory you specify on the destination server.&lt;BR /&gt;&lt;BR /&gt;This script is not very security conscious and requires shell function to be enabled in /etc/inetd.conf as well as an entry like this in the root's .rhosts file on the destination server:&lt;BR /&gt;&lt;BR /&gt;source_host root&lt;BR /&gt;&lt;BR /&gt;needless to say, it is best if you can run this as root.&lt;BR /&gt;&lt;BR /&gt;hope this helps.</description>
      <pubDate>Tue, 19 Aug 2008 17:42:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254485#M674927</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2008-08-19T17:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: backup and restore prod db for Dev/QC purposes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254486#M674928</link>
      <description>Hi Mike,&lt;BR /&gt;&lt;BR /&gt;Don't forget that the copy of database, control and redolog files will only work on a target database with the same instance name. Otherwise you need to clone it.&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;&lt;BR /&gt;Eric Antunes</description>
      <pubDate>Mon, 25 Aug 2008 10:38:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254486#M674928</guid>
      <dc:creator>Eric Antunes</dc:creator>
      <dc:date>2008-08-25T10:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: backup and restore prod db for Dev/QC purposes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254487#M674929</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;What we used where I used to work was simple. We took the nightly cold backup of the data. We migrated it into a development database.&lt;BR /&gt;&lt;BR /&gt;It wasn't quite so large as this, but it gave us a full range of test data.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 25 Aug 2008 11:14:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254487#M674929</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2008-08-25T11:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: backup and restore prod db for Dev/QC purposes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254488#M674930</link>
      <description>Say that you have spare Oracle licenses to do DR, clone your prod DB as a standby to another server (RMAN hot backup with or without the recovery catalog) and apply the logs (recover managed standby).  See if the bandwith would allow you to aplly the logs in real time.  If not ftp in bulk and apply them nightly.  Our primary DB is also 300GB in Texas and the standby is in Brussel. You can open your standby in READONLY mode if you wish.</description>
      <pubDate>Sat, 06 Sep 2008 03:26:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254488#M674930</guid>
      <dc:creator>IMGERALD</dc:creator>
      <dc:date>2008-09-06T03:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: backup and restore prod db for Dev/QC purposes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254489#M674931</link>
      <description>Mike ,&lt;BR /&gt;I would suggest to go with RMAN cloning, because of the size of the data files. Hot backup or logical export also helps but In the hot backup  you need to copy all physical datafiles files over the network.In Logical export, again the size of dump file tough you can split into pieces but you need to set up the dev/QC db physically then only you can import.&lt;BR /&gt;&lt;BR /&gt;Chitta</description>
      <pubDate>Thu, 18 Sep 2008 12:41:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-prod-db-for-dev-qc-purposes/m-p/4254489#M674931</guid>
      <dc:creator>Chitta</dc:creator>
      <dc:date>2008-09-18T12:41:48Z</dc:date>
    </item>
  </channel>
</rss>

