<?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: create an oracle instance in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552126#M917177</link>
    <description>I did not include the EOF in the cut and paste but it is there.&lt;BR /&gt;&lt;BR /&gt;This is from the command line:&lt;BR /&gt;$ svrmgrl&lt;BR /&gt;&lt;BR /&gt;Oracle Server Manager Release 3.1.7.0.0 - Production&lt;BR /&gt;&lt;BR /&gt;Copyright (c) 1997, 1999, Oracle Corporation.  All Rights Reserved.&lt;BR /&gt;&lt;BR /&gt;Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production&lt;BR /&gt;JServer Release 8.1.7.0.0 - Production&lt;BR /&gt;&lt;BR /&gt;SVRMGR&amp;gt; connect internal&lt;BR /&gt;Connected.&lt;BR /&gt;SVRMGR&amp;gt; startup nomount pfile = "/oracle/app/oracle/admin/test/pfile/inittest.ora"&lt;BR /&gt;ORA-03113: end-of-file on communication channel&lt;BR /&gt;&lt;BR /&gt;What is wrong the the startup nomount pfile line?&lt;BR /&gt;&lt;BR /&gt;The inittest.ora file was created by dbassist.</description>
    <pubDate>Thu, 12 Jul 2001 19:05:02 GMT</pubDate>
    <dc:creator>kevin donnelly</dc:creator>
    <dc:date>2001-07-12T19:05:02Z</dc:date>
    <item>
      <title>create an oracle instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552124#M917175</link>
      <description>I have installed Oracle 8.1.7 on a D350 running 11.0.&lt;BR /&gt;&lt;BR /&gt;I can use sqlplus to connect to remote databases running on other machines fine but I can not create a local instance.&lt;BR /&gt;&lt;BR /&gt;I used the dbassist program to create the sql files and when I run them I get the following messages:&lt;BR /&gt;$ ./test.sh&lt;BR /&gt;&lt;BR /&gt;Oracle Server Manager Release 3.1.7.0.0 - Production&lt;BR /&gt;&lt;BR /&gt;Copyright (c) 1997, 1999, Oracle Corporation.  All Rights Reserved.&lt;BR /&gt;&lt;BR /&gt;Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production&lt;BR /&gt;JServer Release 8.1.7.0.0 - Production&lt;BR /&gt;&lt;BR /&gt;SVRMGR&amp;gt; SVRMGR&amp;gt; Connected.&lt;BR /&gt;SVRMGR&amp;gt; ORA-03113: end-of-file on communication channel&lt;BR /&gt;SVRMGR&amp;gt;      2&amp;gt;      3&amp;gt;      4&amp;gt;      5&amp;gt;      6&amp;gt;      7&amp;gt;      8&amp;gt;      9&amp;gt;     10&amp;gt;&lt;BR /&gt;CREATE DATABASE "test"&lt;BR /&gt;*&lt;BR /&gt;ORA-03114: not connected to ORACLE&lt;BR /&gt;SVRMGR&amp;gt; Disconnected.&lt;BR /&gt;SVRMGR&amp;gt; SVRMGR&amp;gt; Server Manager complete.&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;The script running is below:&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;ORACLE_SID=test&lt;BR /&gt;export ORACLE_SID&lt;BR /&gt;&lt;BR /&gt;/oracle/app/oracle/product/8.1.7/bin/svrmgrl &amp;lt;&amp;lt; EOF&lt;BR /&gt;spool /oracle/app/oracle/admin/test/create/crdb1.log&lt;BR /&gt;connect internal&lt;BR /&gt;startup nomount pfile = "/oracle/app/oracle/admin/test/pfile/inittest.ora"&lt;BR /&gt;CREATE DATABASE "test"&lt;BR /&gt;   maxdatafiles 254&lt;BR /&gt;   maxinstances 8&lt;BR /&gt;   maxlogfiles 32&lt;BR /&gt;   character set US7ASCII&lt;BR /&gt;   national character set US7ASCII&lt;BR /&gt;DATAFILE '/oradata3/oradata/test/system01.dbf' SIZE 260M AUTOEXTEND ON NEXT 1024&lt;BR /&gt;0K&lt;BR /&gt;logfile '/oradata3/oradata/test/redo01.log' SIZE 500K,&lt;BR /&gt;    '/oradata3/oradata/test/redo02.log' SIZE 500K,&lt;BR /&gt;    '/oradata3/oradata/test/redo03.log' SIZE 500K;&lt;BR /&gt;disconnect&lt;BR /&gt;spool off&lt;BR /&gt;exit&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;It is dieing on the startup nomount pfile line.&lt;BR /&gt;&lt;BR /&gt;What am I doing wrong?&lt;BR /&gt;&lt;BR /&gt;I looked on Oracle's site for the ORA-03113 message and can only find references to receiving this message if an instance you are connected to is shutdown.&lt;BR /&gt;&lt;BR /&gt;I am just trying to set up a small development instance but will probably run into this same problem trying to create a production database.&lt;BR /&gt;&lt;BR /&gt;Any help will be appreciated!</description>
      <pubDate>Thu, 12 Jul 2001 18:41:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552124#M917175</guid>
      <dc:creator>kevin donnelly</dc:creator>
      <dc:date>2001-07-12T18:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: create an oracle instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552125#M917176</link>
      <description>Hello Kevin,&lt;BR /&gt;&lt;BR /&gt;Does your script has a "EOF" at the end ? If not, put a EOF after the exit statement in your script. Basically "svrmgrl" will try and execute everything until it encounters EOF.&lt;BR /&gt;&lt;BR /&gt;Hope this helps !&lt;BR /&gt;&lt;BR /&gt;Praveen</description>
      <pubDate>Thu, 12 Jul 2001 18:50:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552125#M917176</guid>
      <dc:creator>Gadura Praveen</dc:creator>
      <dc:date>2001-07-12T18:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: create an oracle instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552126#M917177</link>
      <description>I did not include the EOF in the cut and paste but it is there.&lt;BR /&gt;&lt;BR /&gt;This is from the command line:&lt;BR /&gt;$ svrmgrl&lt;BR /&gt;&lt;BR /&gt;Oracle Server Manager Release 3.1.7.0.0 - Production&lt;BR /&gt;&lt;BR /&gt;Copyright (c) 1997, 1999, Oracle Corporation.  All Rights Reserved.&lt;BR /&gt;&lt;BR /&gt;Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production&lt;BR /&gt;JServer Release 8.1.7.0.0 - Production&lt;BR /&gt;&lt;BR /&gt;SVRMGR&amp;gt; connect internal&lt;BR /&gt;Connected.&lt;BR /&gt;SVRMGR&amp;gt; startup nomount pfile = "/oracle/app/oracle/admin/test/pfile/inittest.ora"&lt;BR /&gt;ORA-03113: end-of-file on communication channel&lt;BR /&gt;&lt;BR /&gt;What is wrong the the startup nomount pfile line?&lt;BR /&gt;&lt;BR /&gt;The inittest.ora file was created by dbassist.</description>
      <pubDate>Thu, 12 Jul 2001 19:05:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552126#M917177</guid>
      <dc:creator>kevin donnelly</dc:creator>
      <dc:date>2001-07-12T19:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: create an oracle instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552127#M917178</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Here is a thread where someone reported a similar problem.  They solved it by increasing the SEMMNS kernel parameter from 200 (which Oracle recommended) to 500.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x92f8a12d6d27d5118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x92f8a12d6d27d5118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Good luck!&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Jul 2001 19:18:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552127#M917178</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2001-07-12T19:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: create an oracle instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552128#M917179</link>
      <description>Hi,&lt;BR /&gt;I am not sure if this would help, but you may wanna set your environment variables, such as &lt;BR /&gt;ORACLE_HOME,SHLIB_PATH,PATH. You may wanna try run oracle.profile or oraenv. &lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Thu, 12 Jul 2001 19:19:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552128#M917179</guid>
      <dc:creator>ajax13</dc:creator>
      <dc:date>2001-07-12T19:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: create an oracle instance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552129#M917180</link>
      <description>It was a kernal parameter but it was shmmax.  Another system admin had lowered the parameter since I had bumped it up.  Setting it to 1 gig did the trick.  (It was set at 100 Meg).&lt;BR /&gt;&lt;BR /&gt;Thanks for the idea!</description>
      <pubDate>Thu, 12 Jul 2001 19:51:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-an-oracle-instance/m-p/2552129#M917180</guid>
      <dc:creator>kevin donnelly</dc:creator>
      <dc:date>2001-07-12T19:51:48Z</dc:date>
    </item>
  </channel>
</rss>

