<?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: Creating a Second Oracle Instance in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871732#M859342</link>
    <description>Adrian,&lt;BR /&gt;&lt;BR /&gt;It's possible.&lt;BR /&gt;to create a copy of existing database, cloning  is fairly easy (cf. Twang post)&lt;BR /&gt;But as you will be on same server, the source instance has to be shut down while you clone the new one !&lt;BR /&gt;&lt;BR /&gt;Is it recommended.&lt;BR /&gt;In most companies you (have to) separate production for test/dev/uat. Either you have different servers or partitions. Obviously, it goes back to your company policy.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jean-Luc&lt;BR /&gt;</description>
    <pubDate>Tue, 23 Nov 2004 05:18:50 GMT</pubDate>
    <dc:creator>Jean-Luc Oudart</dc:creator>
    <dc:date>2004-11-23T05:18:50Z</dc:date>
    <item>
      <title>Creating a Second Oracle Instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871727#M859337</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;How do I go about creating a second instance on the same server? I would like to have a test instance which ideally should be a mirror of the production instance on the same server. Possible? Recommended?</description>
      <pubDate>Mon, 22 Nov 2004 14:54:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871727#M859337</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-11-22T14:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Second Oracle Instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871728#M859338</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;It is not recommended to have the test &amp;amp; production on the same server. It is a no-no for everything, not just an oracle database.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;regds&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Nov 2004 14:56:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871728#M859338</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2004-11-22T14:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Second Oracle Instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871729#M859339</link>
      <description>If you don't have a dedicate test server, then a second instance on your production box is possible (I've got one environment setup that way).  Just make sure you have sufficient resources (memory, disk, i/o)  to support two instances.  &lt;BR /&gt;&lt;BR /&gt;There are several ways to create the second instance.  Create a new instance from scratch by setting the ORACLE_SID to a new value and running the db create scripts.  Or take your latest backup copy and create a clone of production.  Depending on the size of your database cloning is usually faster than creating the db then importing the users/data.  If you are using rman for backups then you can follow the rman procedure to duplicate the database.  If not check out Metalink article 18070.1 that explains how to create a copy of the database on the same server.  &lt;BR /&gt;&lt;BR /&gt;Patti</description>
      <pubDate>Mon, 22 Nov 2004 15:15:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871729#M859339</guid>
      <dc:creator>Patti Johnson</dc:creator>
      <dc:date>2004-11-22T15:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Second Oracle Instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871730#M859340</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;have you considered creating another schema on the same database and use:&lt;BR /&gt;  set current_schema &lt;BR /&gt;to simply change the default schema name.&lt;BR /&gt;&lt;BR /&gt;this will work if your database is not HUGE!&lt;BR /&gt;&lt;BR /&gt;To "copy" the objects from the "production" schema to the "test" schema, you would then just do an export/import...&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Tue, 23 Nov 2004 02:24:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871730#M859340</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2004-11-23T02:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Second Oracle Instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871731#M859341</link>
      <description>few steps to do:&lt;BR /&gt;- cold backup you prod instance (suggested)&lt;BR /&gt;- on your prod:&lt;BR /&gt;alter database backup controlfile to trace;&lt;BR /&gt;(find the trace file in $ORACLE_BASE/admin/bdump&lt;BR /&gt;and rename it to cre_ctrl.sql&lt;BR /&gt;- restore the cold backup to new locations&lt;BR /&gt;- edit init.ora to reflect the new instance properties&lt;BR /&gt;- edit cre_ctrl.sql to reflect the new instance properties&lt;BR /&gt;- create a new env file for the new instance&lt;BR /&gt;- source to new env&lt;BR /&gt;- sqlplus /nolog&lt;BR /&gt;- connect / as sysdba&lt;BR /&gt;- startup nomount&lt;BR /&gt;- @cre_ctrl.sql&lt;BR /&gt;- alter database open&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;note: &lt;BR /&gt;1. some kernel parameters must be modified to allow 2 instances on same box, nproc, nfile, nflocks....&lt;BR /&gt;2. BACKUP of prod instance is must before any action on this.</description>
      <pubDate>Tue, 23 Nov 2004 02:33:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871731#M859341</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2004-11-23T02:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Second Oracle Instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871732#M859342</link>
      <description>Adrian,&lt;BR /&gt;&lt;BR /&gt;It's possible.&lt;BR /&gt;to create a copy of existing database, cloning  is fairly easy (cf. Twang post)&lt;BR /&gt;But as you will be on same server, the source instance has to be shut down while you clone the new one !&lt;BR /&gt;&lt;BR /&gt;Is it recommended.&lt;BR /&gt;In most companies you (have to) separate production for test/dev/uat. Either you have different servers or partitions. Obviously, it goes back to your company policy.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jean-Luc&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Nov 2004 05:18:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871732#M859342</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2004-11-23T05:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Second Oracle Instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871733#M859343</link>
      <description>I am with Sanjay and is 0 points on this one !&lt;BR /&gt;&lt;BR /&gt;It is possible but must not be done.&lt;BR /&gt;&lt;BR /&gt;Testing can mean many things.&lt;BR /&gt;It can be going into consuming resources the production need. It will not reflect anything as long as production runs on the same machine so the results can be false.&lt;BR /&gt;&lt;BR /&gt;If your production DB is well sized, reserving a second SGA in memory may get you into troubles, staring swapping, and in a worst case, can go into crashing your production.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Nov 2004 05:35:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871733#M859343</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-11-23T05:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Second Oracle Instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871734#M859344</link>
      <description>Hi Adrian,&lt;BR /&gt;Here are some documentation you may read to help you in the task appointed...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good luck&lt;BR /&gt;Victor</description>
      <pubDate>Tue, 23 Nov 2004 05:36:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871734#M859344</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2004-11-23T05:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Second Oracle Instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871735#M859345</link>
      <description>1) Playing around with a test system on the same machine that runs production is definitely no good idea...&lt;BR /&gt;&lt;BR /&gt;Arguments for two machines (get High availability ?):&lt;BR /&gt;We typically run Dev./Test on one machine and Prod on another.&lt;BR /&gt;The Test system is a copy of production which we refresh from time to time.&lt;BR /&gt;This give a good QA-system before putting into production. Since we use two servers we can (and do) setup failover.&lt;BR /&gt;If production server fail, the database will be started up on the D/T-machine.&lt;BR /&gt;Requirements: HW: 2 machines + SAN, SW: MCSG&lt;BR /&gt;&lt;BR /&gt;2) Running two (or more instances) on one machine is possible.&lt;BR /&gt;We have a machine with 7 different small oracle db's&lt;BR /&gt;&lt;BR /&gt;3) Consider if they should use same Oracle runtime or not ?&lt;BR /&gt;If they use separate copies of Oracle (not only DB) you will have the opportunity to upgrade each instance separately.&lt;BR /&gt;&lt;BR /&gt;4) Resource allocation&lt;BR /&gt;Running 2 Oracle DB's on one machine:&lt;BR /&gt;Kernel parameters + initSID_1.ora + initSID_2.ora must match HW configuration and needs/wanted resource allocation.&lt;BR /&gt;&lt;BR /&gt;/Tor-Arne</description>
      <pubDate>Tue, 23 Nov 2004 05:37:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871735#M859345</guid>
      <dc:creator>Tor-Arne Nostdal</dc:creator>
      <dc:date>2004-11-23T05:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Second Oracle Instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871736#M859346</link>
      <description>thanks all</description>
      <pubDate>Tue, 23 Nov 2004 10:05:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-second-oracle-instance/m-p/4871736#M859346</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-11-23T10:05:33Z</dc:date>
    </item>
  </channel>
</rss>

