Creating database after installing oracle 10.2 on solaris 10

Hi,
I installed oracle 10.2 on solaris.
after installation is completed i started dbca to create a database.
i mentioned all the details, after i click finish button, one window will open , in that all database details will be mentioned, when i click on that window, it will become invisible and that same dbca will remain same, actually after clicking ok it has to start creating database.
but here it is going back to that dbca windows and in that back,cancel,finish button is there.
why this problem is coming
why it is not creating database after i clicked on finish botton,
please help me, it is very critical, i want to create database and i want to submit to the client project.
Regards,
Veeresh S

ya, i clicked in finish and one html window opened, in that also i clicked ok, after nothing will work, no messages,no errors,no logs created.
i want to submit this to 1 project, but i am stucked here,
and solaris server is 64 sparc
and i installed oracle 10.2.0.1 64 bit for sparc 64
now this is not working.
can i install oracle 10.2.0.2 x86 in this sparc 64 bit server

Similar Messages

  • Problem in creating database after installion oracle on AIX6.1

    Hi.
    I have to install oracle 10g on AIX 6.1 silently so i have followed the the below steps:
    1. downloaded patch 6613550 and run ./rootpre.sh of that patch as root user
    2. created required oracle user and groups ( oracle and dba respectively)
    3. installed 10.2.0.1 version by using the following command :
    su - oracle -c "/Disk1/runInstaller -ignoreSysPrereqs -silent -responseFile /enterprise.rsp"
    4. run oraInventory/orainstRoot.sh
    5. run $ORACLE_HOME/root.sh
    6. installed oracle 10.2.0.3 patchset using the command :
    su - oracle -c "/p10_10203_AIX64-5L/Disk1/runInstaller -ignoreSysPrereqs -silent -force -debug \
    FROM_LOCATION="/p10_10203_AIX64-5L/Disk1/stage/products.xml" \
    ORACLE_HOME="given $ORACLE_HOME value" \
    ORACLE_HOME_NAME="OraDb10g" \
    TOPLEVEL_COMPONENT='{"oracle.patchset.db","10.2.0.3.0"}'"2>&1
    7. then i am Configuring oracle to startup automatically
    8. creating a database using the following command :
    su - oracle -c "$ORACLE_HOME/bin/dbca -silent -createDatabase -templateName General_Purpose.dbc -gdbname tc -passwordDialog false -sysPassword sys_password -listeners LISTENER"
    but when i execute this command it hangs .. doesn't show any error messages. nothing else..
    could any one please help me with that.. where i went wrong..
    Note : I have used the same command for creating a database for AIX 5.3 and i worked... but i didn't installed and patchset 6613550 and 10.2.0.3 as 10.2.0.1 is certified with AIX 5.3
    please help me .. its urgent

    dear friend
    thans for replying
    in fact i ddi not work
    i did the following:
    1 CREATE OR REPLACE TRIGGER t_CREATE_SYN
    2 AFTER CREATE ON SCHEMA
    3 BEGIN
    4 DECLARE
    5 vCUR INTEGER;
    6 vEXE NUMBER;
    7 CURSOR TAB_CUR IS
    8 SELECT TABLE_NAME FROM USER_TABLES;
    9 BEGIN
    10 vCUR := DBMS_SQL.OPEN_CURSOR;
    11 FOR I IN TAB_CUR LOOP
    12 DBMS_SQL.PARSE (vCUR,'CREATE PUBLIC SYNONYM '||' '||I.TABLE_NAME||' '||' FOR '||' '||' '||user||'.'||i.table_name,DBMS_SQL.NATIVE);
    13 vEXE := DBMS_SQL.EXECUTE(vCUR);
    14 END LOOP;
    15 DBMS_SQL.CLOSE_CURSOR(vCUR);
    16 END;
    17 NULL;
    18* END;
    SQL> /
    Trigger created.
    SQL> CREATE TABLE TAR_TAB ( ID NUMBER);
    CREATE TABLE TAR_TAB ( ID NUMBER)
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-30511: invalid DDL operation in system triggers
    ORA-06512: at "SYS.DBMS_SYS_SQL", line 824
    ORA-06512: at "SYS.DBMS_SQL", line 32
    ORA-06512: at line 10
    i woder is it possible to write a DDL command in database trigger?
    and how can i achive my task

  • No Listener service after installing Oracle 10g 2

    Hi,
    I have finished installing Oracle 10g 2 on a windows 2003 server. But no Listener windows service is not created. Any explanation ? Should I create the manually , How ?
    Many thanks.

    No, but I created one after installing Oracle , by
    DBCA.
    I'm going to apply RDBMS 5337014 patch to upgrade to
    10.2.0.3. Should I create Listener before ?
    Thank you.
    Message was edited by:
    user522961For applying patch actually you don't need listener, but it is best if you have a listener for client to connect, isn't it?
    cheers
    FZ

  • Cannot connect to database after installing 10g

    Hello friends at www.oracle.com ,
    after installing Oracle 10g, I am trying to use programs like SQL*Plus or Forms Builder. However, these programs are asking me for the host string, and:
    - I cannot simply ignore this question, because I cannot connect without this information.
    - But I don't know how I can configure a host string for local access.
    - And I don't know if there's already a default host string for me to use after installing Oracle 10g, because I have no practice in database configuration, since I'm a developer.
    Please help me.
    Best regards,
    Franklin Goncalves Jr.

    Hi ,
    Few pointers which may help you , but a small caveat all instructions pertaining to way we do internally in oracle , so there could be some mismatch at customer end , but more or less logic should be same , in case you can't any step revert back :
    1. When Db asks you for connect string essentially it asks for the complete description of the db to connect including :
    Db server machine name / ip - that can be resolved from your system if it's a remote server .
    Username , Password ,
    Db Instance Name - TnsAlias mentioned in TnsNames.ora .
    Now there are few Env. variables that you need to set before running / starting an oracle db instance .
    1. Oracle_Home - Essentially Oralce Installation directory .
    2. Oracle_sid - unique identifier for Oracle Instance .
    3. For OracleDb only set T_Work and TNS_ADMIN env. variables as %Oracle_Home%\work directory and place your Listener.ora file in that folder .
    4. Make your initial parameter file init<Oracle_Sid>.ora in %Oracle_Home%\database -- default location .
    5. Create Oracle Instance specific services to run on a Windows machine , essentially they will be two and default nomenclature is :
    Oracle Service - OracleService<Oracle_Sid>
    Listener Service - Oracle<oracle_sid>TnsListener
    Now in %Oracle_Home%\bin directory you have couple have tools to help you in whole process including lsnrctl.exe , tnsping.exe , sqlplus.exe .
    and onec you start oracle instance like this :
    SQlPlus "/as sysdba" -- OS Authentication
    --- Connected to Idle instance
    Sql> startup --> this will take default parameter file
    Check out dump location for log and trace files generated if enabled .
    Now client setting :
    1. This is the place where you need appropriate connect string with all components as mentioned above .
    Check out any good site for exact syntax , but you need to make sure regarding client you are using for e.g:
    ODP.Net , Java Driver etc .
    For Client few important settings :
    Execution directory should contain tnsnames.ora
    Create T_WORK and TNS_ADMIN for execution directory .
    check out for listener connectivity using :
    tnsping <TnsAlias>
    Imp -- Include all relevant stuff in System PATH for execution from anywhere .
    Once it connects tehn you can use appropriate username / password for connecting with appropriate connection string .
    Normally while installing oracle you would have set the username and password to be changed later .
    or otherwise onec you log in as sysdba, you can create new username/password and give it sysdba permissions .
    Also imp. thing for connecting from a remote system is having Sqlnet.ora authentication file in client's T_WORK and TNS_ADMIN .
    I hope it helps upto some extent .
    regards ,
    Mrinal

  • My computer slows down and hangs after installing oracle 10g

    My computer just slows down after installing oracle 10g. I have a pentium 4 3ghz with 512 memory (32 mb used by graphics built in card). It slows down and hanged even if I agjusted the swap memory to 800 mb. I have two swap file/page file - in drive c and drive d. I even cannot shut it down because it takes maybe 30 minutes just to see the "shut-off/log-off" screen.

    Before starting up Oracle, when you go to the task manager, how much RAM does it show actually free? 512 MB is pretty small to run Oracle in the first place-- Windows and Office can use a fair chunk of RAM themselves, depending on which Office apps you are running. You may also be suprised by the amount of RAM that a web browser, email client, and the various other apps that folks generally install can use.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Tomcat seems couldn't run after installing Oracle 8.0.6

    After installing Oracle 8.0.6, my Tomcat seems couldn't startup. I have set the environment variable for JDBC and Oracle driver like: Classpath = .;c:\orant\jdbc\lib\classes111.zip and path = c:\jdk1.3\bin;c:\orant\jdbc\lib\classes111.zip. However, before installing Oracle, Tomcat was running smoothly. Is installing Oracle make mess between Tomcat and Oracle? Or, is the environment variables are set incorrectly? Please help me to solve the problem. and how to make database connection to Oracle using JSP(Tomcat). Your advice is much appreciated, thanks in advance.

    Add a reference to the oracle driver zip file (classes12.zip) to the classpath in the batch file that runs tomcat (i.e. tomcat.bat).
    Then, the architectural decision is all yours. You can define a database access layer...
    I'd look in to the model 2 architecture if you want to learn how to do this. There are loads of references, none of which I have to hand, but try searching the JDC, there's bound to be plenty.
    On the other hand, if you want a quick and dirty solution, then model 1 is the way to go.
    Cheers,
    KJ

  • How to create database link between oracle and SQL Server

    Hello Everyone,
    Here i have Oracle Database 9i and SQL Server 2005 databases.
    I have some tables in sql server db and i want to access from Oracle.
    How to create a database link between these two servers
    Thanks,

    Thanks for Everyone,
    I was struggle with this almost 10 days....
    I created Database link from Oracle to SQL Server
    Now it is fine.........
    Here i am giving my servers configuration and proceedure how i created the db link...@
    Using Generic Connectivity (HSODBC) we can create db link between Oracle and SQL server.
    Machine (1)
    DB Version : Oracle 9.2.0.7.0
    Operating System : HP-UX Itanuim 64 11.23
    IP : 192.168.0.31
    Host : abcdbt
    Machine (2)
    Version : SQL Server 2005
    Operating System : Windows server 2003 x86
    IP : 192.168.0.175
    Host : SQLDEV1
    User/PW : sa/abc@123! (Connect to database)
    Database : SQLTEST (exsisting)
    Table : T (“ T “ is the table existing in SQLTEST database with 10 rows)
    Prerequisites in Machine (2):
    a)     Oracle 10g software
    b)     User account to access SQL Server database (sa/abc@123!)
    c)     Existing SQL Server Database (SQLTEST)
    d) Tables (testing purpose) (T)
    Steps:
    1)     Install Oracle 10.2.0.1 (Only SW,No need of database) *(Machine 2)*
    2)     Create a DSN where your windows Oracle 10g SW resides *(Machine 2)*
    Control panel >> Administrative Tools >> Data Source (ODBC) >> System DSN ADD
    You can follow this link also.....
    http://www.databasejournal.com/features/oracle/article.php/3442661/Making-a-Connection-from-Oracle-to-SQL-Server.htm
    I created DSN as
    DSN name : SQLTEST
    User : SA/abc@123! (Existing user account)
    Host : 192.168.0.175 (machine 2)
    Already I have 1 database in SQL Server with the name SQLTEST
    You can create DSN with different name also (not same as db name also)
    3)     Create a hsodbc init file in $ORACLE_HOME\hs\admin *(Machine 2)*
    Create init<DSN NAME> file
    Ex: initSQLTEST
    Copy inithsodbc to initSQLTEST
    And edit
    initSQLTEST file
    HS_FDS_CONNECT_INFO = SQLTEST    <DSN NAME>*
    HS_FDS_TRACE_LEVEL = OFF*
    save the file....@
    4)     Configure Listener.ora *(Machine 2)*
    LISTENER_NEW =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.175)(PORT = 1525))
    SID_LIST_LISTENER_NEW =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = SQLTEST) *+< Here SQLTEST is DSN NAME >+*
    (ORACLE_HOME = G:\oracle 10g\oracle\product\10.2.0\db_1)
    (PROGRAM = hsodbc))
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = G:\oracle 10g\oracle\product\10.2.0\db_1)
    (PROGRAM = extproc) )
    :> lsnrctl start LISTENER_NEW
    5)     Configure tnsname.ora *(Machine 2)*
    SQLTEST11 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.175)(PORT = 1525))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = SQLTEST))
    (HS=OK)
    :> tnsping SQLTEST11
    If No errors then conti….
    6)     Configure a file *(Machine 1)*
    Cd $TNS_ADMIN ($ORACLE_HOME/network/admin)
    Create a file
    $ vi TEST_abcdbt_ifile.ora
    something=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST =192.168.0.175) (PORT=1525))
    (CONNECT_DATA=
    (SID=SQLTEST))
    (HS=OK)
    $ tnsping something
    $ sqlplus system/manager
    Your connected to Oracle database *(machine 1)*
    create database link xyz connect to “sa” identified by “abc@123!” using ‘SOMETHING’;
    select * from t@xyz;10 rows selected.
    Thanks,
    Edited by: ram5424 on Feb 10, 2010 7:24 PM

  • 500 internal server error after installing oracle EBS 12.1.1

    After installing oracle 12,1.1 using rapidwiz . the login page didn't open because of error 500 internal server,
    i run autoconfig for database and i face that error below. how can i unlock that account and how can i connect sqlplus to oracle ebs.
    thanks.
    getConnectionUsingSID() -->
        JDBC URL: jdbc:oracle:thin:@apps.appsdomain:1521:VIS
        Exception occurred: java.sql.SQLException: ORA-28000: the account is locked

    Please see:
    R12: Clone fails with error "ORA-28000 The account is locked" (Doc ID 1114244.1)
    APPS User Account Is Locked While Applying a Patch. Patch Fails With "ORA-28000" (Doc ID 420001.1)
    Thanks,
    Hussein

  • Using sqlplus command after installing oracle 9i on RHEL 3

    Hi experts,
    I have installed oracle database on Redhat enterprise linux 3.
    Install location is /home/oracle/ora9i.
    Version Oracle 9i (9204)
    after installation when I typed follwing commands ..it did not work
    $ sqlplus /nolog
    Please help me with this.
    Thanx in advance ...
    Deepak

    duplicate post of following thread
    Using sqlplus command after installing oracle 9i on RHEL 3

  • Error after installing Oracle Enterprise Linux (Release 5) on Dell T 110

    eth0      Link encap:Ethernet  HWaddr 00:15:17:F7:81:53 
              inet addr:192.1.1.11  Bcast:192.1.1.255  Mask:255.255.255.0
              inet6 addr: fe80::215:17ff:fef7:8153/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:220 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:100
              RX bytes:0 (0.0 b)  TX bytes:15868 (15.4 KiB)
              Memory:dfcc0000-dfce0000
    eth1      Link encap:Ethernet  HWaddr B8:AC:6F:92:C2:0C 
              inet addr:192.1.1.9  Bcast:192.1.1.255  Mask:255.255.255.0
              inet6 addr: fe80::baac:6fff:fe92:c20c/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:263812 errors:0 dropped:0 overruns:0 frame:0
              TX packets:58 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:18959341 (18.0 MiB)  TX bytes:9476 (9.2 KiB)
              Interrupt:169 Memory:dfbf0000-dfc00000
    lo        Link encap:Local Loopback 
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:1393 errors:0 dropped:0 overruns:0 frame:0
              TX packets:1393 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:4035655 (3.8 MiB)  TX bytes:4035655 (3.8 MiB)Any help please. I am a first time Linux user.
    Thanks
    A/A

    This looks like a follow up of Re: Error after installing Oracle Enterprise Linux (Release 5) on Dell T 110
    Can you give more details what you are trying to do or trying to accomplish. Where are you trying to ping to?
    It could be that you have not defined your gateway or DNS server for name to IP mapping. What is the output of
    # netstat -rn
    # cat /etc/resolv.conf

  • Oracle 10gr2 locally is not working after  installing Oracle 11g

    hi ,
    Does anyone has any idea after installing oracle 11g in system, Oracle 10g locally is not working. I am getting below error.
    Forms session <2> failed during startup: no response from runtime process

    Generally this is because the software you install last updates the system environment variables with its information, thereby break products that use files with similar names. Specifically, look at PATH and ORACLE_HOME. Likely you will see that entries for your 11g installation will be displayed first. In order to use v10, you would need to change this or use script files to start executibles. For Forms runtime, be sure to properly set default.env to point to the desired PATH

  • How to create database link from oracle to sql server

    Please help with how to create database link from oracle to sql server
    Best regards,
    Vishal

    Please help with how to create database link from oracle to sql server
    Best regards,
    Vishal
    Hi Vishal,
    I found a lof of information regarding how to create a database link from Oracle to SQL Server, please see:
    https://www.google.co.in/?gws_rd=cr&ei=vd3XUvGFO8TgkAXqlYCADg#q=how+to+create+database+link+from+oracle+to+sql+server
    We discuss SQL Server related issue in this forum. If you have any more question regarding Oracle, please post it in Oracle communities forum for better support.
    Regards,
    Elvis Long
    TechNet Community Support

  • After installing oracle 10g on linux im getting this error

    Hi,
    Can any one give me any solution on i getting an error after installing oracle 10g on linux.
    ERROR:-
    /oraeng/app/oracle/product/10.2.0/bin/clscfg: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    Failed to initialize Oracle Cluster Registry for cluster

    Hi, please ensure that both 'libclntsh.so.10.1' and 'libttsh10.so' has 755 permission and owned by Oracle.
    That is the critical step.
    After re-execute the root.sh file
    Has been known to reset the permissions from the previous step - bug in some patch releases.
    Suggest OP records permissions for those two files before running root.sh Or run root.sh before setting the permissions.

  • Not able to register with listener after installing oracle grid infrastrtcure in oracle 11gr2 on windows

    Hi Guru's.
    I am not able to get listener connectivity after installing Oracle 11gr2 Grid infrastructure on windows on vmware workstation. I register with static ip.
    Even i recreated the listener and running the listener from Grid home.
    The output what i am getting is :--
    C:\> lsnrctl status
    The listener support no services
    Can you please help me out

    C:\Users\Administrator>lsnrctl stop
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 26-NOV-2013 09:09:10
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    The command completed successfully
    C:\Users\Administrator>lsnrctl start
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 26-NOV-2013 09:09:21
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Starting tnslsnr: please wait...
    TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Production
    Log messages written to c:\app\administrator\diag\tnslsnr\WIN-0P8BCA3R7V5\listener\alert\log.xml
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=WIN-0P8BCA3R7V5)(PORT=1521)))
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Production
    Start Date                26-NOV-2013 09:09:24
    Uptime                    0 days 0 hr. 0 min. 4 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Log File         c:\app\administrator\diag\tnslsnr\WIN-0P8BCA3R7V5\listener\alert\log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=WIN-0P8BCA3R7V5)(PORT=1521)))
    The listener supports no services
    The command completed successfully
    C:\Users\Administrator>lsnrctl status
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 26-NOV-2013 09:09:31
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Production
    Start Date                26-NOV-2013 09:09:24
    Uptime                    0 days 0 hr. 0 min. 8 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Log File         c:\app\administrator\diag\tnslsnr\WIN-0P8BCA3R7V5\listener\alert\log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=WIN-0P8BCA3R7V5)(PORT=1521)))
    The listener supports no services
    The command completed successfully
    C:\Users\Administrator>lsnrctl service
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 26-NOV-2013 09:13:10
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    Services Summary...
    Service "+asm" has 1 instance(s).
      Instance "+asm", status READY, has 1 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:0 refused:0 state:ready
             LOCAL SERVER
    Service "orcl" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:0 refused:0 state:ready
             LOCAL SERVER
    Service "orclXDB" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
        Handler(s):
          "D000" established:0 refused:0 current:0 max:1022 state:ready
             DISPATCHER <machine: WIN-0P8BCA3R7V5, pid: 2560>
             (ADDRESS=(PROTOCOL=tcp)(HOST=WIN-0P8BCA3R7V5)(PORT=49246))
    The command completed successfully

  • Problem starting ASM instance after installing Oracle Grid standalone

    Hi!
    After installing Oracle Grid 11gr2 and rebooting my machine:
    Linux localhost.localdomain 2.6.32-300.10.1.el5uek #1 SMP Wed Feb 22 17:37:40 EST 2012 x86_64 x86_64 x86_64 GNU/Linux
    I run asmca command and it failed to startup ASM instance, I tried to paste the log but it's too long!
    Could someone help me please! thank you very much!
    José
    I paste just the last piece:
    +[main] [ 2012-03-15 15:01:56.853 CET ] [SQLEngine.initialize:354] m_bReaderStarted: false+
    +[main] [ 2012-03-15 15:01:56.857 CET ] [SQLEngine.initialize:358] Starting Reader Thread...+
    +[main] [ 2012-03-15 15:01:56.919 CET ] [UsmcaLogger.logExit:122] Exiting oracle.sysman.assistants.usmca.backend.USMInstance Method : createSQLEngine+
    +[main] [ 2012-03-15 15:01:56.919 CET ] [OracleHome.getVersion:877] OracleHome.getVersion called. Current Version: null+
    +[main] [ 2012-03-15 15:01:56.927 CET ] [InventoryUtil.getOUIInvSession:347] setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS+
    +[main] [ 2012-03-15 15:01:56.927 CET ] [OracleHome.getVersion:896] Homeinfo /u01/app/grid/product/11.2.0/grid,1+
    +[main] [ 2012-03-15 15:01:56.928 CET ] [Version.isPre:274] version to be checked 11.2.0.1.0 major version to check against10+
    +[main] [ 2012-03-15 15:01:56.928 CET ] [Version.isPre:285] isPre.java: Returning FALSE+
    +[main] [ 2012-03-15 15:01:56.929 CET ] [OCR.loadLibrary:308]+
    Inside constructor of OCR
    +[main] [ 2012-03-15 15:01:56.929 CET ] [OCR.isCluster:939] Calling OCRNative for isCluster()+
    +[main] [ 2012-03-15 15:01:56.930 CET ] [OCR.isCluster:943] OCR Result status = true+
    +[main] [ 2012-03-15 15:01:56.930 CET ] [OCR.isCluster:955] Bolean result = false+
    +[main] [ 2012-03-15 15:01:56.930 CET ] [Version.isPre:274] version to be checked 11.2.0.1.0 major version to check against10+
    +[main] [ 2012-03-15 15:01:56.930 CET ] [Version.isPre:285] isPre.java: Returning FALSE+
    +[main] [ 2012-03-15 15:01:56.931 CET ] [MessageBundle.getMessageFields:338] MessageBundle.getMessage() failed to load the string PRKC-PRKC-1036 : CRS_HOME name passed to the method was null Exception: java.util.MissingResourceException: Can't find resource for bundle oracle.ops.mgmt.resources.PrkcMsg, key PRKC-1036 : CRS_HOME name passed to the method was null+
    +[main] [ 2012-03-15 15:01:56.931 CET ] [ClusterUtils.getCRSActiveVersion:1797] Error getting CRS active version: PRKC-PRKC-1036 : CRS_HOME name passed to the method was null : <null>+
    +[main] [ 2012-03-15 15:01:56.931 CET ] [OracleHome.getVersion:903] OracleHome.CRSActiveVersion: null+
    +[main] [ 2012-03-15 15:01:57.084 CET ] [OracleHome.getVersion:922] OracleHome.server.getVersion Version: 11.2.0.1.0+
    +[main] [ 2012-03-15 15:01:57.084 CET ] [OracleHome.getVersion:943] Current Version From Inventory: 11.2.0.1.0+
    +[main] [ 2012-03-15 15:01:57.084 CET ] [OracleHome.getVersion:948] using sqlplus: /u01/app/grid/product/11.2.0/grid/bin/sqlplus+
    +[main] [ 2012-03-15 15:01:57.084 CET ] [UsmcaLogger.logInfo:141] Role SYSASM+
    +[main] [ 2012-03-15 15:01:57.085 CET ] [UsmcaLogger.logInfo:141] OS Auth true+
    +[main] [ 2012-03-15 15:01:57.182 CET ] [SQLEngine.done:2148] Done called+
    +[main] [ 2012-03-15 15:01:57.183 CET ] [UsmcaLogger.logException:171] SEVERE:method oracle.sysman.assistants.usmca.backend.USMInstance:checkAndStartupInstance+
    +[main] [ 2012-03-15 15:01:57.183 CET ] [UsmcaLogger.logException:172] ORA-01034: ORACLE not available+
    +[main] [ 2012-03-15 15:01:57.183 CET ] [UsmcaLogger.logException:173] oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-01034: ORACLE not available+
    oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1650)
    oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeQuery(SQLEngine.java:823)
    oracle.sysman.assistants.usmca.backend.USMInstance.checkAndStartupInstance(USMInstance.java:573)
    oracle.sysman.assistants.usmca.backend.USMInstance.discoverASMInstance(USMInstance.java:340)
    oracle.sysman.assistants.usmca.service.UsmcaService.discoverASMInstance(UsmcaService.java:146)
    oracle.sysman.assistants.usmca.Usmca.execute(Usmca.java:230)
    oracle.sysman.assistants.usmca.Usmca.main(Usmca.java:333)
    +[main] [ 2012-03-15 15:01:57.184 CET ] [UsmcaLogger.logExit:122] Exiting oracle.sysman.assistants.usmca.backend.USMInstance Method : checkAndStartupInstance+
    +[main] [ 2012-03-15 15:01:57.184 CET ] [UsmcaLogger.logInfo:141] ASM failed to start. Check /u01/app/grid/cfgtoollogs/asmca/asmca-1203153PM0138.log for details.+

    Hi,
    i've got similar problem but my asm is not just down. After installing grid home with infrastructure I've restarted os and there is no crs services and the only result from this command:
    # ps -ef | grep grid
    grid      2075     1  0 13:58 ?        00:00:00 /u01/app/grid/product/11.2.0/grid/bin/ohasd.bin reboot
    root      2463  2439  0 14:06 pts/0    00:00:00 grep gridgive me opposite to this one before restart:
    $ ps -ef | grep grid
    grid      2076     1  0 13:01 ?        00:00:00 /u01/app/grid/product/11.2.0/grid/bin/ohasd.bin reboot
    grid      3646     1  0 13:44 ?        00:00:04 /u01/app/grid/product/11.2.0/grid/bin/ohasd.bin reboot
    grid      3806     1  0 13:45 ?        00:00:02 /u01/app/grid/product/11.2.0/grid/bin/oraagent.bin
    grid      3820     1  0 13:45 ?        00:00:00 /u01/app/grid/product/11.2.0/grid/bin/evmd.bin
    grid      3853  3820  0 13:45 ?        00:00:00 /u01/app/grid/product/11.2.0/grid/bin/evmlogger.bin -o /u01/app/grid/product/11.2.0/grid/evm/log/evmlogger.info -l /u01/app/grid/product/11.2.0/grid/evm/log/evmlogger.log
    root      3879  2307  0 13:46 pts/0    00:00:00 su - grid
    grid      3881  3879  0 13:46 pts/0    00:00:00 -bash
    grid      4172     1  0 13:48 ?        00:00:00 /u01/app/grid/product/11.2.0/grid/bin/cssdagent
    grid      4197     1  0 13:48 ?        00:00:00 /u01/app/grid/product/11.2.0/grid/bin/ocssd.bin
    grid      4550     1  0 13:49 ?        00:00:00 asm_pmon_+ASM
    grid      4552     1  0 13:49 ?        00:00:00 asm_psp0_+ASM
    grid      4554     1  0 13:49 ?        00:00:02 asm_vktm_+ASM
    grid      4558     1  0 13:49 ?        00:00:00 asm_gen0_+ASM
    grid      4560     1  0 13:49 ?        00:00:00 asm_diag_+ASM
    grid      4562     1  0 13:49 ?        00:00:00 asm_dia0_+ASM
    grid      4564     1  0 13:49 ?        00:00:00 asm_mman_+ASM
    grid      4566     1  0 13:49 ?        00:00:00 asm_dbw0_+ASM
    grid      4568     1  0 13:49 ?        00:00:00 asm_lgwr_+ASM
    grid      4570     1  0 13:49 ?        00:00:00 asm_ckpt_+ASM
    grid      4572     1  0 13:49 ?        00:00:00 asm_smon_+ASM
    grid      4574     1  0 13:49 ?        00:00:00 asm_rbal_+ASM
    grid      4576     1  0 13:49 ?        00:00:00 asm_gmon_+ASM
    grid      4578     1  0 13:49 ?        00:00:00 asm_mmon_+ASM
    grid      4580     1  0 13:49 ?        00:00:00 asm_mmnl_+ASM
    grid      4582     1  0 13:49 ?        00:00:00 oracle+ASM (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))
    grid      6128     1  0 13:52 ?        00:00:00 /u01/app/grid/product/11.2.0/grid/bin/tnslsnr LISTENER -inherit
    grid      6142  3881  0 13:53 pts/0    00:00:00 ps -ef
    grid      6143  3881  0 13:53 pts/0    00:00:00 grep grid
    $ srvctl status listener
    Listener LISTENER is enabled
    Listener LISTENER is running on node(s): pc
    $ srvctl status asm
    ASM is running on pcI'm using 2x 1TB hdisk as 2 pv in one vg. I thought that lvolume permissions are incorrect but now I had:
    # ls -l /dev | grep dm
    crw-rw----  1 root root      10,  61 May 16 13:57 cpu_dma_latency
    brw-rw----  1 root disk     253,   0 May 16 13:57 dm-0
    brw-rw----  1 root disk     253,   1 May 16 13:57 dm-1
    brw-rw----  1 grid asmadmin 253,  10 May 16 13:57 dm-10
    brw-rw----  1 grid asmadmin 253,  11 May 16 13:57 dm-11
    brw-rw----  1 grid asmadmin 253,  12 May 16 13:57 dm-12
    brw-rw----  1 grid asmadmin 253,  13 May 16 13:57 dm-13
    brw-rw----  1 grid asmadmin 253,   2 May 16 13:57 dm-2
    brw-rw----  1 grid asmadmin 253,   3 May 16 13:57 dm-3
    brw-rw----  1 grid asmadmin 253,   4 May 16 13:57 dm-4
    brw-rw----  1 grid asmadmin 253,   5 May 16 13:57 dm-5
    brw-rw----  1 grid asmadmin 253,   6 May 16 13:57 dm-6
    brw-rw----  1 grid asmadmin 253,   7 May 16 13:57 dm-7
    brw-rw----  1 grid asmadmin 253,   8 May 16 13:57 dm-8
    brw-rw----  1 grid asmadmin 253,   9 May 16 13:57 dm-9and:
    # ls -l /dev/vg_main/
    total 0
    lrwxrwxrwx 1 root root 7 May 16 13:57 asmlvol1 -> ../dm-2
    lrwxrwxrwx 1 root root 8 May 16 13:57 asmlvol10 -> ../dm-11
    lrwxrwxrwx 1 root root 8 May 16 13:57 asmlvol11 -> ../dm-12
    lrwxrwxrwx 1 root root 8 May 16 13:57 asmlvol12 -> ../dm-13
    lrwxrwxrwx 1 root root 7 May 16 13:57 asmlvol2 -> ../dm-3
    lrwxrwxrwx 1 root root 7 May 16 13:57 asmlvol3 -> ../dm-4
    lrwxrwxrwx 1 root root 7 May 16 13:57 asmlvol4 -> ../dm-5
    lrwxrwxrwx 1 root root 7 May 16 13:57 asmlvol5 -> ../dm-6
    lrwxrwxrwx 1 root root 7 May 16 13:57 asmlvol6 -> ../dm-7
    lrwxrwxrwx 1 root root 7 May 16 13:57 asmlvol7 -> ../dm-8
    lrwxrwxrwx 1 root root 7 May 16 13:57 asmlvol8 -> ../dm-9
    lrwxrwxrwx 1 root root 8 May 16 13:57 asmlvol9 -> ../dm-10
    lrwxrwxrwx 1 root root 7 May 16 13:57 lv01_swap -> ../dm-1
    lrwxrwxrwx 1 root root 7 May 16 13:57 lv02_root -> ../dm-0I've used search path for ams disks as /dev/dm* and /dev/vg_main/asm* and seen all of them in both configurations.
    I've tried to reconfigure HAS through (as root):
    $GRID_HOME/crs/install/roothas.pl -deconfig -force -verbose
    $GRID_HOME/root.shthis gave me working asm instance but after restart I'm in base position with no crs services.
    And... I've tried to startup crs after restart with no luck but before restart I can shutdown everything and startup ASM instance too (so everything is fine till the reboot). I'm on CentOS 6:
    $ uname -a
    Linux pc 2.6.32-220.13.1.el6.x86_64 #1 SMP Tue Apr 17 23:56:34 BST 2012 x86_64 x86_64 x86_64 GNU/Linux
    # cat /etc/issue
    CentOS release 6.2 (Final)
    Kernel \r on an \mAny hints about how to resolve this problem would be most welcome.
    Regards.

Maybe you are looking for

  • How do I ensure my hard drive is not partitioned?

    I am trying to run bootcamp assistant to partition the hard drive prior to installing Windows on a Mini Mac 2,1. The assistant says I have already partitioned the drive but Disk Utility says it is an 'extended' drive. Do I need to reformat the main d

  • Change page size

    I need to change the page size of a document. Usually a drawing scanned with format Iso A1 (840x594) to format iso A3 (420x297). Is it possible to do this by using Acrobat 7.0 Professional? Preferably redused exactly 50%.

  • MATERIALIZED VIEW ORA-12006 and ORA-08103

    We have an old 9.2.0.6 database which uses materialized views to access information from other systems via database links. One of these views though will no longer refresh, the others are OK including ones using the same database link and source syst

  • Ps3   Airport Utility 6.1 help?

    So i'm trying to do two things: 1. Give me ps3 a static IP address and portforward a game. 2. Sharing my 3tb harddrive with the airport extreme via usb port on the ps3. I've tried doing some research on the first issue and even attempted using portfo

  • Sqldeveloper and multiple homes - how to force it to use included jdbc

    Hello, I'm having a hard time to get Sqldev 1.5 working with a WE8MSWIN1252 database on windows system that has also a 10.2.0.3 home installed. It looks like it's then not using the own jdbc but the 10.2.0.3 thin jdbc found in the Oracle home - runni