I am not able to create database manually.unexpected error incountered why?

I am not able to create database manually.unexpected error incountered why?
Same step is worked in another system
SQL> startup nomount
ORACLE instance started.
Total System Global Area 97589952 bytes
Fixed Size 453312 bytes
Variable Size 46137344 bytes
Database Buffers 50331648 bytes
Redo Buffers 667648 bytes
SQL> ed
Wrote file afiedt.buf
1 CREATE DATABASE icici
2 LOGFILE GROUP 1 ('F:\oracle\oradata\icici\logfile\redo01.log') SIZE 10M,
3 GROUP 2 ('F:\oracle\oradata\icici\logfile\redo02.log') SIZE 10M,
4 GROUP 3 ('F:\oracle\oradata\icici\logfile\redo03.log') SIZE 10M
5 MAXLOGFILES 5
6 MAXLOGMEMBERS 5
7 MAXLOGHISTORY 1
8 MAXDATAFILES 10
9 MAXINSTANCES 1
10 CHARACTER SET US7ASCII
11 NATIONAL CHARACTER SET AL16UTF16
12 DATAFILE 'F:\oracle\oradata\icici\datafile\system01.dbf' SIZE 100M REUSE
EXTENT MANAGEMENT LOCAL
13 DEFAULT TEMPORARY TABLESPACE tempts1 TEMPFILE 'F:\oracle\oradata\icici\d
atafile\temp01.dbf' SIZE 100M REUSE
14 UNDO TABLESPACE undotbs DATAFILE 'F:\oracle\oradata\icici\datafile\undot
bs01.dbf'SIZE 100M REUSE
15* AUTOEXTEND ON NEXT 5120K MAXSIZE 300M
SQL> /
CREATE DATABASE icici
ERROR at line 1:
ORA-01092: ORACLE instance terminated. Disconnection forced
SQL>

Check the alert log. Paste the end of the file over here.
Yoann.

Similar Messages

  • Create database manually.unexpected error incountered

    I am not able to create database manually.unexpected error incountered why?
    Same step is worked in another system
    SQL> startup nomount
    ORACLE instance started.
    Total System Global Area 97589952 bytes
    Fixed Size 453312 bytes
    Variable Size 46137344 bytes
    Database Buffers 50331648 bytes
    Redo Buffers 667648 bytes
    SQL> create dtabase;
    create dtabase
    ERROR at line 1:
    ORA-00901: invalid CREATE command
    SQL> ed
    Wrote file afiedt.buf
    1 CREATE DATABASE icici
    2 LOGFILE GROUP 1 ('F:\oracle\oradata\icici\logfile\redo01.log') SIZE 10M,
    3 GROUP 2 ('F:\oracle\oradata\icici\logfile\redo02.log') SIZE 10M,
    4 GROUP 3 ('F:\oracle\oradata\icici\logfile\redo03.log') SIZE 10M
    5 MAXLOGFILES 5
    6 MAXLOGMEMBERS 5
    7 MAXLOGHISTORY 1
    8 MAXDATAFILES 10
    9 MAXINSTANCES 1
    10 CHARACTER SET US7ASCII
    11 NATIONAL CHARACTER SET AL16UTF16
    12 DATAFILE 'F:\oracle\oradata\icici\datafile\system01.dbf' SIZE 100M REUSE
    EXTENT MANAGEMENT LOCAL
    13 DEFAULT TEMPORARY TABLESPACE tempts1 TEMPFILE 'F:\oracle\oradata\icici\d
    atafile\temp01.dbf' SIZE 100M REUSE
    14 UNDO TABLESPACE undotbs DATAFILE 'F:\oracle\oradata\icici\datafile\undot
    bs01.dbf'SIZE 100M REUSE
    15* AUTOEXTEND ON NEXT 5120K MAXSIZE 300M
    SQL> /
    CREATE DATABASE icici
    ERROR at line 1:
    ORA-01092: ORACLE instance terminated. Disconnection forced
    SQL>

    I'll lay odds that the problem is that you've asked this database to use an UNDO tablespace called UNDOTBS, but that in your spfile (or init.ora) you've specified UNDO_TABLESPACE=UNDOTBS01 (or something similar).
    If the parameter file specifies an undo tablespace which doesn't exist, the instance blows up.
    The advice to read the alert log would be useful at this point, because the mismatch of undo tablespace names is always recorded properly there (which always makes me annoyed that the original error message can't be a bit more precise!)

  • Re: Not Able to Create database objects(Tables, etc) in Oracle 12c

    In addition to what Nishant said, the PDB databases are not opened by default.
    You must open them manually or create a trigger to do it.

    Hi Nishant ,
    Thanks for the reply.
        I have done all the steps as you mentioned above. I am not able to create HR user. Please check the below errors and
    please guide me on this.
    SQL*Plus: Release 12.1.0.1.0 Production on Sat Oct 5 23:46:38 2013
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    Enter user-name: anonymous
    Enter password:
    Last Successful login time: Sat Oct 05 2013 23:46:58 +05:30
    Connected to: Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
    SQL> connect sys as sysdba;
    Enter password:
    Connected.
    SQL> CREATE USER  hr IDENTIFIED BY Password#123
      2  DEFAULT TABLESPACE  hr_users
      3  TEMPORARY TABLESPACE  hr_temp
      4  QUOTA  5000k ON  hr_users
      5  QUOTA unlimited ON hr_temp
      6  PROFILE  enduser  ;
    CREATE USER  hr IDENTIFIED BY Password#123
    ERROR at line 1:
    ORA-65096: invalid common user or role name
    SQL> SELECT NAME, CDB FROM V$DATABASE;
    NAME      CDB
    ORCL      YES
    SQL> SHO CON_ID CON_NAME
    CON_ID
    1
    CON_NAME
    CDB$ROOT
    SQL> SET LINE 150
    SQL> SELECT NAME, OPEN_MODE, OPEN_TIME FROM V$PDBS;
    NAME                           OPEN_MODE  OPEN_TIME
    PDB$SEED                   READ ONLY  04-OCT-13 08.57.50.461 PM
    PDBORCL                        MOUNTED
    SQL> CONN HR/HR@PDBORCL
    ERROR:
    ORA-12154: TNS:could not resolve the connect identifier specified
    SQL> SHO CON_ID CON_NAME
    SP2-0640: Not connected
    SP2-0641: "SHOW CONTAINER" requires connection to server
    Thanks in advance!!
    Regards,
    Dharmendra Verma

  • Not Able to Create database objects(Tables, etc) in Oracle 12c

    Hello Sir,
    Recently, I have installed oracle 12c in my PC. And I am able to connect with the ANONYMOUS user and connection name ORCL.
    But I am not able to create any objects in database like tables creation, it's just showing the error message like- you don't have sufficient privileges.
    Could you please help on this? How to start the work on oracle 12c database as I have worked on Oracle 11g with the SCOTT user and connection name ORCL.It was working fine. But SCOTT user is not present in 12c. Is there any other USER in 12c with the default tables like EMP table in 11g in the SCOTT USER schema?
    Please suggest, what to do?
    Thanks In Advance!!

    Hi Nishant ,
    Thanks for the reply.
        I have done all the steps as you mentioned above. I am not able to create HR user. Please check the below errors and
    please guide me on this.
    SQL*Plus: Release 12.1.0.1.0 Production on Sat Oct 5 23:46:38 2013
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    Enter user-name: anonymous
    Enter password:
    Last Successful login time: Sat Oct 05 2013 23:46:58 +05:30
    Connected to: Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
    SQL> connect sys as sysdba;
    Enter password:
    Connected.
    SQL> CREATE USER  hr IDENTIFIED BY Password#123
      2  DEFAULT TABLESPACE  hr_users
      3  TEMPORARY TABLESPACE  hr_temp
      4  QUOTA  5000k ON  hr_users
      5  QUOTA unlimited ON hr_temp
      6  PROFILE  enduser  ;
    CREATE USER  hr IDENTIFIED BY Password#123
    ERROR at line 1:
    ORA-65096: invalid common user or role name
    SQL> SELECT NAME, CDB FROM V$DATABASE;
    NAME      CDB
    ORCL      YES
    SQL> SHO CON_ID CON_NAME
    CON_ID
    1
    CON_NAME
    CDB$ROOT
    SQL> SET LINE 150
    SQL> SELECT NAME, OPEN_MODE, OPEN_TIME FROM V$PDBS;
    NAME                           OPEN_MODE  OPEN_TIME
    PDB$SEED                   READ ONLY  04-OCT-13 08.57.50.461 PM
    PDBORCL                        MOUNTED
    SQL> CONN HR/HR@PDBORCL
    ERROR:
    ORA-12154: TNS:could not resolve the connect identifier specified
    SQL> SHO CON_ID CON_NAME
    SP2-0640: Not connected
    SP2-0641: "SHOW CONTAINER" requires connection to server
    Thanks in advance!!
    Regards,
    Dharmendra Verma

  • Not able to create database even with a subscription. (The operation is not supported for your subscription offer type)

    Hi,
    I am trying to create a SQL server database, but are not able to. I get this message: The operation is not supported for your subscription offer type.
    I have to azure accounts and this is only happening in one of them.
    I have created a subscription, but I can see that I have 1250 NOK in credit that is expiring in 29 days.
    Regards
    Christian
    ChristianLLoyd

    Hi Christian,
    The error you saw should only occur for a subscription used with a free trial offer type. Please use the below link to open a support ticket.
    http://azure.microsoft.com/en-us/support/options/
    You can check the following links for similar issues.
    The operation is not supported for your subscription offer type
    Could not submit the request to create database
    DBNAME. The operation is not supported for your subscription offer type
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.
    Lydia Zhang
    TechNet Community Support

  • Not able to create database in Solaris 10 x86 Oracle 10.1.0.3

    I have installed Oralce 10.1.0.3 in Solaris 10 X86 using the procedure given without creating the database.(Installing the binaries)
    Hardware:Sun fire V20z.
    When i tried creating Database using DBCA,it was throwing lots of error.
    The errors are:
    1) ORA-03113: end-of-file on communication channel
    2) ORA-03114: not connected to oracle
    3) ORA-27100: shared memory realm already exists.
    Any help on creating a database in Solaris 10 x86 Oracle 10.1.0.3
    Thanks in Advance.

    Hi.
    Are You read documentation ?
    [http://download.oracle.com/docs/cd/E19680-01/html/821-1255/babhabac.html#z40000471052274]
    Guidelines for the /globaldevices File System
    Oracle Solaris Cluster software offers two choices of locations to host the global-devices namespace:
    A lofi device
    A dedicated file system on one of the local disks
    This section describes the guidelines for using a dedicated partition. This information does not apply if you instead host the global-devices namespace on a lofi.
    The /globaldevices file system is usually located on your root disk. However, if you use different storage on which to locate the global-devices file system, such as a Logical Volume Manager volume, it must not be part of a Solaris Volume Manager shared disk set or part of a VxVM disk group other than a root disk group. This file system is later mounted as a UFS cluster file system. Name this file system /globaldevices, which is the default name that is recognized by the scinstall(1M) commandSo:
    >I have mounted one (1) common 2gb LUN for both the nodes, so it is creating the problem...?
    It source of problem.
    Every node require have it's own separate slice for globaldevice.
    Shared Lun can be mounted with option global for access from both nodes at same time, but it will be second step - configure data-services.
    Regards.

  • Error in Creating Database - An unexpected error has been detected by HotSp

    I just installed Oracle 11 g on Vista. I tried to create a database and received the following error.
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x773a59c3, pid=7624, tid=8164
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_11-b03 mixed mode)
    # Problematic frame:
    # C [ntdll.dll+0x659c3]
    --------------- T H R E A D ---------------
    Current thread (0x1002ea50): JavaThread "TaskScheduler timer" [_thread_in_native, id=8164]
    siginfo: ExceptionCode=0xc0000005, reading address 0x01979064
    Registers:
    EAX=0x6d901018, EBX=0x12298310, ECX=0x01970000, EDX=0x12298310
    ESP=0x12c7f908, EBP=0x12c7f93c, ESI=0x01979060, EDI=0x12298308
    EIP=0x773a59c3, EFLAGS=0x00010206
    Top of Stack: (sp=0x12c7f908)
    0x12c7f908: 00000000 01970000 12298310 12c7f8f8
    0x12c7f918: ffffffff 12c7fd2c 7c34240d 7c37a3a8
    0x12c7f928: ffffffff 7c34218f 000c1fed 1229acb0
    0x12c7f938: 12298308 12c7f950 773a5883 12298310
    0x12c7f948: 12244148 1037b048 12c7f964 7680c56f
    0x12c7f958: 01970000 00000000 12298308 12c7f9e0
    0x12c7f968: 000d31e2 01970000 00000000 12298310
    0x12c7f978: 00000000 000d1dfe 12298310 1002ea50
    Instructions: (pc=0x773a59c3)
    0x773a59b3: c1 ee 03 33 f0 33 35 44 42 40 77 89 7d fc 33 f1
    0x773a59c3: 8b 46 04 89 45 f4 c6 47 07 80 c6 47 06 00 8b 5e
    Stack: [0x12c40000,0x12c80000), sp=0x12c7f908, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ntdll.dll+0x659c3]
    C [ntdll.dll+0x65883]
    C [kernel32.dll+0x4c56f]
    C [OsUtils.dll+0x31e2]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j oracle.sysman.assistants.util.OsUtilsWindows.setPermissions(Ljava/lang/String;Z)I+0
    j oracle.sysman.assistants.util.OsUtilsWindows.setAdminPermissions(Ljava/lang/String;)I+3
    j oracle.sysman.assistants.dbca.backend.Host.setUpForOperation()Z+843
    j oracle.sysman.assistants.dbca.backend.Host.executeSteps(Loracle/sysman/assistants/util/step/StepProgressor;)Z+768
    j oracle.sysman.assistants.dbca.ui.UIHost.doProgressOnly()Z+136
    j oracle.sysman.assistants.dbca.ui.DBCAWizard$1.runTask(Loracle/ewt/thread/TaskEvent;)V+135
    j oracle.ewt.thread.TaskScheduler.runTask(Loracle/ewt/thread/Task;Loracle/ewt/thread/TaskEvent;)V+2
    j oracle.ewt.thread.TaskScheduler.processTask(Loracle/ewt/thread/Task;J)V+39
    j oracle.ewt.thread.TaskScheduler$TaskQueue.run()V+60
    j oracle.ewt.timer.Timer.doRun()V+37
    j oracle.ewt.timer.Timer.run()V+45
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x1037caa0 JavaThread "Image Fetcher 3" daemon [_thread_blocked, id=7780]
    =>0x1002ea50 JavaThread "TaskScheduler timer" [_thread_in_native, id=8164]
    0x0ff3f948 JavaThread "Thread-12" daemon [_thread_blocked, id=6528]
    0x10362758 JavaThread "Thread-11" daemon [_thread_blocked, id=5504]
    0x0fea1d50 JavaThread "Thread-10" daemon [_thread_blocked, id=5572]
    0x0fea14b8 JavaThread "Thread-9" daemon [_thread_blocked, id=6252]
    0x103657a0 JavaThread "CursorIdler" [_thread_blocked, id=7652]
    0x1035e6d0 JavaThread "TaskScheduler timer" [_thread_blocked, id=6448]
    0x01861910 JavaThread "DestroyJavaVM" [_thread_blocked, id=6488]
    0x0ffedb48 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=6444]
    0x1035ee58 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=5088]
    0x102ccb18 JavaThread "AWT-Windows" daemon [_thread_in_native, id=6584]
    0x0fe00830 JavaThread "AWT-Shutdown" [_thread_blocked, id=7380]
    0x01931e08 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=7888]
    0x01932308 JavaThread "CompilerThread0" daemon [_thread_blocked, id=6204]
    0x01931480 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6720]
    0x01921a00 JavaThread "Finalizer" daemon [_thread_blocked, id=2176]
    0x01921040 JavaThread "Reference Handler" daemon [_thread_blocked, id=6840]
    Other Threads:
    0x018dc2c0 VMThread [id=7008]
    0x018c8d60 WatcherThread [id=6960]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 1216K, used 745K [0x03bc0000, 0x03d10000, 0x04590000)
    eden space 1088K, 68% used [0x03bc0000, 0x03c7a540, 0x03cd0000)
    from space 128K, 0% used [0x03cf0000, 0x03cf0000, 0x03d10000)
    to space 128K, 0% used [0x03cd0000, 0x03cd0000, 0x03cf0000)
    tenured generation total 15128K, used 10616K [0x04590000, 0x05456000, 0x0bbc0000)
    the space 15128K, 70% used [0x04590000, 0x04fee088, 0x04fee200, 0x05456000)
    compacting perm gen total 22016K, used 21946K [0x0bbc0000, 0x0d140000, 0x0fbc0000)
    the space 22016K, 99% used [0x0bbc0000, 0x0d12e970, 0x0d12ea00, 0x0d140000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\oracle\product\11.1.0\db_1\jdk\jre\BIN\java.exe
    0x77340000 - 0x77467000      C:\Windows\system32\ntdll.dll
    0x767c0000 - 0x7689b000      C:\Windows\system32\kernel32.dll
    0x774d0000 - 0x77596000      C:\Windows\system32\ADVAPI32.dll
    0x76ca0000 - 0x76d62000      C:\Windows\system32\RPCRT4.dll
    0x76a10000 - 0x76aba000      C:\Windows\system32\MSVCRT.dll
    0x6d740000 - 0x6d8dd000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\client\jvm.dll
    0x77180000 - 0x7721d000      C:\Windows\system32\USER32.dll
    0x772a0000 - 0x772eb000      C:\Windows\system32\GDI32.dll
    0x73600000 - 0x73632000      C:\Windows\system32\WINMM.dll
    0x76f00000 - 0x77044000      C:\Windows\system32\ole32.dll
    0x76ac0000 - 0x76b4d000      C:\Windows\system32\OLEAUT32.dll
    0x73ba0000 - 0x73bd9000      C:\Windows\system32\OLEACC.dll
    0x75bc0000 - 0x75bde000      C:\Windows\system32\IMM32.DLL
    0x76bd0000 - 0x76c98000      C:\Windows\system32\MSCTF.dll
    0x759a0000 - 0x759cc000      C:\Windows\system32\apphelp.dll
    0x768a0000 - 0x768a9000      C:\Windows\system32\LPK.DLL
    0x76b50000 - 0x76bcd000      C:\Windows\system32\USP10.dll
    0x769e0000 - 0x76a0d000      C:\Windows\system32\WS2_32.dll
    0x77470000 - 0x77476000      C:\Windows\system32\NSI.dll
    0x75a20000 - 0x75a41000      C:\Windows\system32\NTMARTA.DLL
    0x77480000 - 0x774ca000      C:\Windows\system32\WLDAP32.dll
    0x75b20000 - 0x75b27000      C:\Windows\system32\PSAPI.DLL
    0x75a00000 - 0x75a11000      C:\Windows\system32\SAMLIB.dll
    0x6d300000 - 0x6d308000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\hpi.dll
    0x6d710000 - 0x6d71c000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\verify.dll
    0x6d380000 - 0x6d39d000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\java.dll
    0x6d730000 - 0x6d73f000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\zip.dll
    0x000c0000 - 0x000c8000      C:\oracle\product\11.1.0\db_1\BIN\orawsec11.dll
    0x7c340000 - 0x7c396000      C:\Windows\system32\MSVCR71.dll
    0x000d0000 - 0x000df000      C:\oracle\product\11.1.0\db_1\BIN\OsUtils.dll
    0x74ea0000 - 0x74ea8000      C:\Windows\system32\VERSION.dll
    0x75670000 - 0x756e5000      C:\Windows\system32\NETAPI32.dll
    0x626d0000 - 0x626e5000      C:\oracle\product\11.1.0\db_1\BIN\oranjni11.dll
    0x62740000 - 0x627a0000      C:\oracle\product\11.1.0\db_1\BIN\oranl11.dll
    0x60960000 - 0x60d24000      C:\oracle\product\11.1.0\db_1\BIN\oran11.dll
    0x62670000 - 0x6268b000      C:\oracle\product\11.1.0\db_1\BIN\orancrypt11.dll
    0x60870000 - 0x6095a000      C:\oracle\product\11.1.0\db_1\BIN\oracore11.dll
    0x10c50000 - 0x10d1a000      C:\oracle\product\11.1.0\db_1\BIN\oranls11.dll
    0x63690000 - 0x636a8000      C:\oracle\product\11.1.0\db_1\BIN\oraunls11.dll
    0x60eb0000 - 0x60eb7000      C:\oracle\product\11.1.0\db_1\BIN\orauts.dll
    0x62920000 - 0x6296c000      C:\oracle\product\11.1.0\db_1\BIN\oranro11.dll
    0x62530000 - 0x62669000      C:\oracle\product\11.1.0\db_1\BIN\oraldapclnt11.dll
    0x10d20000 - 0x10e74000      C:\oracle\product\11.1.0\db_1\BIN\orannzsbb11.dll
    0x6f790000 - 0x6f797000      C:\Windows\system32\WSOCK32.dll
    0x75450000 - 0x75469000      C:\Windows\system32\iphlpapi.dll
    0x75410000 - 0x75445000      C:\Windows\system32\dhcpcsvc.DLL
    0x756f0000 - 0x7571c000      C:\Windows\system32\DNSAPI.dll
    0x75a50000 - 0x75a64000      C:\Windows\system32\Secur32.dll
    0x75940000 - 0x75947000      C:\Windows\system32\WINNSI.DLL
    0x753e0000 - 0x75401000      C:\Windows\system32\dhcpcsvc6.DLL
    0x10e80000 - 0x118da000      C:\oracle\product\11.1.0\db_1\BIN\orageneric11.dll
    0x63430000 - 0x6345b000      C:\oracle\product\11.1.0\db_1\BIN\orasnls11.dll
    0x60fa0000 - 0x61124000      C:\oracle\product\11.1.0\db_1\BIN\oracommon11.dll
    0x61c20000 - 0x61f60000      C:\oracle\product\11.1.0\db_1\BIN\oraclient11.dll
    0x636b0000 - 0x636b6000      C:\oracle\product\11.1.0\db_1\BIN\oravsn11.dll
    0x118e0000 - 0x11cad000      C:\oracle\product\11.1.0\db_1\BIN\orapls11.dll
    0x63420000 - 0x63429000      C:\oracle\product\11.1.0\db_1\BIN\oraslax11.dll
    0x63080000 - 0x63296000      C:\oracle\product\11.1.0\db_1\BIN\oraplp11.dll
    0x63520000 - 0x635c1000      C:\oracle\product\11.1.0\db_1\BIN\orasql11.dll
    0x11cb0000 - 0x11ee8000      C:\oracle\product\11.1.0\db_1\BIN\oraxml11.dll
    0x6b100000 - 0x6b111000      C:\Windows\system32\MSVCIRT.dll
    0x62980000 - 0x629af000      C:\oracle\product\11.1.0\db_1\BIN\orantcp11.dll
    0x11ef0000 - 0x11f98000      C:\oracle\product\11.1.0\db_1\BIN\orahasgen11.dll
    0x62ab0000 - 0x62b2c000      C:\oracle\product\11.1.0\db_1\BIN\oraocr11.dll
    0x10bb0000 - 0x10c0b000      C:\oracle\product\11.1.0\db_1\BIN\oraocrb11.dll
    0x60000000 - 0x6000c000      C:\oracle\product\11.1.0\db_1\BIN\orazt11.dll
    0x6f830000 - 0x6f90c000      C:\Windows\system32\dbghelp.dll
    0x75cb0000 - 0x767c0000      C:\Windows\system32\SHELL32.dll
    0x768c0000 - 0x76918000      C:\Windows\system32\SHLWAPI.dll
    0x11fa0000 - 0x11fe8000      C:\oracle\product\11.1.0\db_1\BIN\oranldap11.dll
    0x626b0000 - 0x626b9000      C:\oracle\product\11.1.0\db_1\BIN\oranhost11.dll
    0x001c0000 - 0x001c6000      C:\oracle\product\11.1.0\db_1\BIN\orancds11.dll
    0x629c0000 - 0x629cc000      C:\oracle\product\11.1.0\db_1\BIN\orantns11.dll
    0x11ff0000 - 0x12071000      C:\oracle\product\11.1.0\db_1\BIN\oraztkg11.dll
    0x74a80000 - 0x74c1e000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\comctl32.dll
    0x12380000 - 0x124b4000      C:\oracle\product\11.1.0\db_1\BIN\oraldapjclnt11.dll
    0x749a0000 - 0x749af000      C:\Windows\system32\NLAapi.dll
    0x6f120000 - 0x6f12f000      C:\Windows\system32\napinsp.dll
    0x6f0b0000 - 0x6f0c2000      C:\Windows\system32\pnrpnsp.dll
    0x751b0000 - 0x751eb000      C:\Windows\System32\mswsock.dll
    0x6f0e0000 - 0x6f0e8000      C:\Windows\System32\winrnr.dll
    0x16080000 - 0x160a5000      C:\Program Files\Bonjour\mdnsNSP.dll
    0x75210000 - 0x75215000      C:\Windows\System32\wship6.dll
    0x74e40000 - 0x74e45000      C:\Windows\System32\wshtcpip.dll
    0x70290000 - 0x70296000      C:\Windows\system32\rasadhlp.dll
    0x10c20000 - 0x10c3b000      C:\oracle\product\11.1.0\db_1\oui\lib\win32\oraInstaller.dll
    0x12080000 - 0x120d6000      C:\oracle\product\11.1.0\db_1\oui\lib\win32\msvcr71.dll
    0x6d070000 - 0x6d1da000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\awt.dll
    0x73be0000 - 0x73c22000      C:\Windows\system32\WINSPOOL.DRV
    0x74960000 - 0x7499f000      C:\Windows\system32\uxtheme.dll
    0x6d2b0000 - 0x6d300000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\fontmanager.dll
    0x6d540000 - 0x6d553000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\net.dll
    0x6d560000 - 0x6d569000      C:\oracle\product\11.1.0\db_1\jdk\jre\bin\nio.dll
    0x120e0000 - 0x120e7000      C:\oracle\product\11.1.0\db_1\oui\lib\win32\orauts.dll
    0x12100000 - 0x12108000      C:\oracle\product\11.1.0\db_1\oui\lib\win32\orawsec11.dll
    0x635d0000 - 0x635ed000      C:\oracle\product\11.1.0\db_1\oui\lib\win32\orasrvm11.dll
    0x76950000 - 0x769d4000      C:\Windows\system32\CLBCatQ.DLL
    0x77220000 - 0x77293000      C:\Windows\system32\COMDLG32.DLL
    0x71ac0000 - 0x71b45000      C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.6001.18000_none_886786f450a74a05\COMCTL32.dll
    0x6dda0000 - 0x6dee6000      C:\Windows\system32\browseui.dll
    0x734e0000 - 0x7359b000      C:\Windows\system32\PROPSYS.dll
    0x74920000 - 0x74950000      C:\Windows\system32\DUser.dll
    0x745a0000 - 0x74600000      C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll
    0x76d70000 - 0x76efa000      C:\Windows\system32\SETUPAPI.dll
    0x75a70000 - 0x75a8e000      C:\Windows\system32\USERENV.dll
    0x13430000 - 0x13653000      C:\Windows\system32\NetworkExplorer.dll
    0x71f50000 - 0x72003000      C:\Windows\system32\WindowsCodecs.dll
    0x6d960000 - 0x6db7d000      C:\Program Files\Microsoft Office\Office12\GrooveShellExtensions.dll
    0x13780000 - 0x13871000      C:\Program Files\Microsoft Office\Office12\GrooveUtil.DLL
    0x75be0000 - 0x75cb0000      C:\Windows\system32\WININET.dll
    0x768b0000 - 0x768b3000      C:\Windows\system32\Normaliz.dll
    0x772f0000 - 0x77336000      C:\Windows\system32\iertutil.dll
    0x754f0000 - 0x755e1000      C:\Windows\system32\CRYPT32.dll
    0x75650000 - 0x75662000      C:\Windows\system32\MSASN1.dll
    0x74d20000 - 0x74dbb000      C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.3053_none_d08d7bba442a9b36\MSVCR80.dll
    0x13890000 - 0x13897000      C:\Program Files\Microsoft Office\Office12\GrooveNew.DLL
    0x138b0000 - 0x138cb000      C:\Windows\WinSxS\x86_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.4053_none_d1c738ec43578ea1\ATL80.DLL
    0x74f30000 - 0x74f6b000      C:\Windows\system32\rsaenh.dll
    0x74e50000 - 0x74e55000      C:\Windows\system32\MSImg32.dll
    0x6a7e0000 - 0x6a82a000      C:\Windows\system32\ntshrui.dll
    0x6ccb0000 - 0x6ccbb000      C:\Windows\system32\cscapi.dll
    0x754b0000 - 0x754ea000      C:\Windows\system32\slc.dll
    0x6c780000 - 0x6c7bc000      C:\Windows\System32\msshsq.dll
    0x74660000 - 0x74676000      C:\Windows\system32\thumbcache.dll
    0x6cd40000 - 0x6cd93000      C:\Windows\System32\actxprxy.dll
    0x6e0a0000 - 0x6e1a7000      C:\Windows\system32\SHDOCVW.dll
    0x6b9a0000 - 0x6bf6e000      C:\Windows\system32\ieframe.dll
    VM Arguments:
    jvm_args: -Dice.pilots.html4.ignoreNonGenericFonts=true -DORACLE_HOME=C:\oracle\product\11.1.0\db_1 -DJDBC_PROTOCOL=thin -Xmx128m
    java_command: oracle.sysman.assistants.dbca.Dbca
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=C:\oracle\product\11.1.0\db_1\assistants\dbca\jlib\dbca.jar
    PATH=C:\oracle\product\11.1.0\db_1\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\PROGRA~1\COMMON~1\ULEADS~1\MPEG;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\QuickTime\QTSystem\
    USERNAME=Mercado
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 104 Stepping 2, AuthenticAMD
    --------------- S Y S T E M ---------------
    OS: Windows Vista Build 6001 Service Pack 1
    CPU:total 2 (cores per cpu 2, threads per core 1) family 15 model 104 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, mmxext, 3dnowext, 3dnow
    Memory: 4k page, physical 2097151k(891916k free), swap 4194303k(3432164k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_11-b03) for windows-x86, built on Dec 15 2006 01:16:12 by "java_re" with MS VC++ 6.0

    You didn't ask a question in your post, but I assume you have one and it is "what do I do about this error?"
    Looks like you have a memory access problem in nuance-core.dll, specifically in
    nuance.core.util.NuanceConfig._jni_buildFromCommandLine(Native Method)
    You may need to examine thoroughly what this code does, specifically when it is running code within 'string-funcs.cpp'. Based on the filename the JVM associated with this error, I would guess it's something like a pointer or array index bug.

  • Not able to create database silently

    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
    thanks in advance

    Hi
    oh.. sorry.. i am putting it there.Dont be sorry ;) i hope u got your answer soon,please close thread (change thread status to answered so it pretend to lose time of other forums user while they are searching open question which is not answered)
    Regard
    Helios

  • Not able to connect database while creating RPD

    hi,
    while creating New RPD i am not able to connect database its Throwing error like"The Connection has failed". even though i had given Data source name as TNS entry.
    Thanks,
    Lokesh

    Hi,
    If you use OBIEE 11g, the tnsname.ora is located in this folder : {Oracle_BI1}\network\admin directory & {oracle_common}\network\admin directory (only the former is needed as that is the ORACLE_HOME).
    Do you use OBIEE 11g and have you update the tnsname.ora in this folder ?
    Hope it helps,
    Benoit

  • Not able to Create TABLESPACE PSAPROLL|PSAPUNDO    with 728 MB

    Hi Experts,
                   When i an trying to upgrade PI 7.0 to pi 7.1 with EHP1 in checks roadmap in abap it throws error like
    ERROR> Insufficient free space in the database as follows:
    Create TABLESPACE PSAPROLL|PSAPUNDO    with 728 MB
    INFO> To adjust the size of your tablespaces, you may use the commands
          in file '/oracle/stage/upg/abap/log/ORATBSXT.LST' using the 'brspace' utility.
          Please copy the file before making changes, as it may be
          overwritten in subsequent upgrade phases.
    In the location
    '/oracle/stage/upg/abap/log/ORATBSXT.LST
    These are examples for brspace commands to extend/create the required
    tablespaces. You can adapt them according to your own needs.
    Add option '-c force' to call the commands in batch mode.
    Change option '-autoextend' to 'yes' and set '-maxsize' and '-incrsize'
    to create autoextensible segments.
    brspace -function tscreate -tablespace PSAPROLL|PSAPUNDO -owner SAPSR3 -size 728 -autoe
    xtend no
    info while creating : PSAPUNDO: Command not found.
    with the help of this above command i am not able to create the tablespace.
    My Existing tabelspaces are
    PSAPSR3
    PSAPSR3700
    PSAPSR3DB
    PSAPSR3USR
    PSAPTEMP
    PSAPUNDO1
    SYSAUX
    SYSTEM
    Plz help me on this ASAP.
    Thanks,
    Hari

    Your real problem is that PSAPUNDO does not exist. For an unknown reason you are using PSAPUNDO1. so, you must fix this:
    shutdown your DB.
    rename tablespace PSAPUNDO1 to PSAPUNDO. this can be done with:
    brspace -c force -f tsalter -a rename -t PSAPUNDO1 -n PSAPUNDO
    you will also need to change parameter undo_tablespace to PSAPUNDO
    if using initSID.ora, change this manually. or else, do this:
    alter system set undo_tablespace=PSAPUNDO scope=both;
    you might need to restart your database.
    good luck.

  • Not Able to create ODBC Connections to AS400 DB2 from OWB 11g

    Hi,
    Currently i am in the process of setting up of database connections to AS400 DB2 Database from Oracle Warehouse Builder 11g.
    I installed Oracle 11.1.0.6.0 and upgraded to 11.1.0.7.0.
    I am able to create database links manually but not able to create using oracle warehouse builder.
    The error i am getting error
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [IBM][Client Access Express ODBC Driver (32-bit)][DB2/400 SQL]SQL7973 - SQL create package for DG4ODBCFBA in REMOTEDB has failed.
    ORA-02063: preceding 2 lines from OWB_82
    I am trying different methods from the last 2 days.
    Please help me in this situation.
    Thanks.
    Salih KM

    My Http server port is 7777. used that , it doesn't work. Using 7101(admin server port) also doesn't work.
    Testing JSR-160 Runtime ... failed.
    Cannot establish connection.
    Testing JSR-160 DomainRuntime ... skipped.
    Testing JSR-88 ... skipped.
    Testing JSR-88-LOCAL ... skipped.
    Testing JNDI ... skipped.
    Testing JSR-160 Edit ... skipped.
    Testing HTTP ... success.
    Testing Server MBeans Model ... skipped.
    1 of 8 tests successful.
    Both the cases only HTTP is success.
    Thanks
    Manish

  • Error while creating database manually

    hi guru's i am getting error while creating database manually
    my sql is SQL>create database lily
      logfile   group 1 ('C:\oracle\product\10.2.0\oradata\lily\redo1.log') size 10M,
                group 2 ('C:\oracle\product\10.2.0\oradata\lily\redo2.log') size 10M,
                group 3 ('C:\oracle\product\10.2.0\oradata\lily\redo3.log') size 10M
      character set          WE8ISO8859P1
      national character set utf8
      datafile 'C:\oracle\product\10.2.0\oradata\lily\system.dbf'
                size 50M
                autoextend on
                next 10M maxsize unlimited
                extent management local
      sysaux datafile 'C:\oracle\product\10.2.0\oradata\lily\sysaux.dbf'
                size 10M
                autoextend on
                next 10M
                maxsize unlimited
      undo tablespace undo
                datafile 'C:\oracle\product\10.2.0\oradata\lily\undo.dbf'
                size 10M
      default temporary tablespace temp
                tempfile 'C:\oracle\product\10.2.0\oradata\lily\temp.dbf'
                size 10M;and i am getting following error
    create database lily
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-00200: control file could not be created
    ORA-00202: control file: 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\LILY\CONTROL01.CTL'
    ORA-27038: created file already exists
    OSD-04010: <create> option specified, file already exists
    code}
    Edited by: CHETAN YADAV on Jul 19, 2011 6:55 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    create database lily
      logfile   group 1 ('C:\oracle\product\10.2.0\oradata\lily\redo1.log') size 10M,
              group 2 ('C:\oracle\product\10.2.0\oradata\lily\redo2.log') size 10M,
                group 3 ('C:\oracle\product\10.2.0\oradata\lily\redo3.log') size 10M
      datafile 'C:\oracle\product\10.2.0\oradata\lily\system.dbf'  size 150M
    sysaux datafile 'C:\oracle\product\10.2.0\oradata\lily\sysaux.dbf' 150 M
      undo tablespace undo  datafile 'C:\oracle\product\10.2.0\oradata\lily\undo.dbf'  size 10M
    default temporary tablespace temp tempfile 'C:\oracle\product\10.2.0\oradata\lily\temp.dbf' size 10M;
    remove the SQL> from the a.sql script also change the system datafile size to minimum of 100mb size
    ALSO check/change the undotablespace name with your init parameter file it should match as it is in the init parameter file
    Edited by: rajeysh on Jul 19, 2011 6:59 PM

  • Not able to create new entry in RSADMIN Table

    Hi All,
            I am going thru the OSS note 1275837  (Note 1275837 - PrecServer: process based load distribution (ABAP part)), as it recommends
            add the entry "BWPREC_USE_NEW_LOAD" with value "X" in table "RSADMIN"
          When I check in SE11 and SE16 there is no option to create button for above entry in table RSADMIN.
          Please advise for any help to create above entry.
    Thanks
    Ganesh Reddy.
    Edited by: Ganesh Reddy on Jan 11, 2010 4:20 PM
       I got access key from our basis team. But still not able to create new entry as mentioned in OSS note. Any further help....
    Thanks
    Ganesh Reddy.
    Edited by: Ganesh Reddy on Jan 11, 2010 9:13 PM

    Hi
    Goto SM30 - Table Maintanance Generator and enter the table name and click on button maintain ,it will show the error message
    "The maintenance dialog for RSADMIN is incomplete or not defined" because the table maintenance is not allowed manually.
    First Option
    When you double click the error message  a performance assistant screen will open in that you can see Procedure
    "Generate the required maintenance dialog" click on that and try to maintain the table using Access Key, as i dont have access key i have not tried this option.
    Second Option
    You can write an SE38 program with an insert statement.
    TABLES rsadmin.
    DATA: wa TYPE rsadmin.
    wa-object = 'object name'.
    wa-value = 'X'.
    INSERT into rsadmin values wa.
    Thanks

  • Not able to create new users or groups

    hi all,
    We have configured multiple LDAPs by changing XML file.
    But now we are not able to create new users or groups.It is giving error saying that "Adapter is configured as read-only"
    Can anybody help me out in this problem.
    Thanking You,
    Amol.

    For multiple LDAPs to work we have downloaded the Xml file namely "Flat hierarchy + Database "
    We made the necessary changes and then uploaded it.
    Now we want to create users or groups in portal-database and not in LDAP. But it is throwing error saying that "Adapter is read only". We suppose that it is trying to create users and groups in LDAP.
    So can anyone help us to create users or groups in portal-database.
    Thanking You,
    Amol.

  • Not able to create Container in DAC

    Hi All,
    We are facing the below error while creating the container in DAC.
    Error : There is already Qserver running at the port 3141 shutting down the server
    Our Architecture is as follows:
    1. OBIA and DAC and Informatica Client is in one Windows server
    2. Informatica Server is in another windows Server
    3. Database is in unix
    Latest Update:
    Now we are not facing the above error, but still we are not able to create Container in DAC
    Regards,
    Kumar
    Edited by: user597882 on Dec 18, 2009 3:15 AM

    How do I kill the process? When I run the netstat command I am getting following result. I am not sure what to make out of it.
    netstat -a -n -o |grep 3141
    tcp 0 0 :::3141 :::* LISTEN off (0.00/0/0)
    tcp 0 0 ::ffff:127.0.0.1:3141 ::ffff:127.0.0.1:43725 CLOSE_WAIT off (0.00/0/0)
    tcp 0 0 ::ffff:10.112.18.125:3141 ::ffff:10.112.19.37:2420 ESTABLISHED off (0.00/0/0)
    tcp 0 0 ::ffff:10.112.18.125:3141 ::ffff:10.112.19.37:2417 FIN_WAIT2 timewait (52.29/0/0)
    tcp 0 0 ::ffff:10.112.18.125:3141 ::ffff:10.112.19.37:2416 FIN_WAIT2 timewait (47.28/0/0)
    tcp 0 0 ::ffff:10.112.18.125:3141 ::ffff:10.112.19.37:2418 FIN_WAIT2 timewait (57.28/0/0)
    tcp 0 0 ::ffff:10.112.18.125:3141 ::ffff:10.112.19.37:2405 FIN_WAIT2 timewait (7.29/0/0)
    tcp 0 0 ::ffff:10.112.18.125:3141 ::ffff:10.112.19.37:2407 FIN_WAIT2 timewait (12.29/0/0)
    tcp 0 0 ::ffff:10.112.18.125:3141 ::ffff:10.112.19.37:2412 FIN_WAIT2 timewait (32.29/0/0)
    tcp 0 0 ::ffff:10.112.18.125:3141 ::ffff:10.112.19.37:2415 FIN_WAIT2 timewait (42.28/0/0)
    tcp 0 0 ::ffff:10.112.18.125:3141 ::ffff:10.112.19.37:2414 FIN_WAIT2 timewait (37.28/0/0)
    tcp 0 0 ::ffff:10.112.18.125:3141 ::ffff:10.112.19.37:2409 FIN_WAIT2 timewait (22.28/0/0)
    tcp 0 0 ::ffff:10.112.18.125:3141 ::ffff:10.112.19.37:2408 FIN_WAIT2 timewait (17.28/0/0)
    tcp 0 0 ::ffff:10.112.18.125:3141 ::ffff:10.112.19.37:2410 FIN_WAIT2 timewait (27.28/0/0)
    unix 2 [ ACC ] STREAM LISTENING 31413 /tmp/orbit-root/linc-662a-0-1f92baf8aba35
    unix 3 [ ] STREAM CONNECTED 31419
    unix 3 [ ] STREAM CONNECTED 31418 /tmp/orbit-root/linc-65e0-0-56a41e9dd2292
    unix 3 [ ] STREAM CONNECTED 31417
    Any guidance is highly appreciated.
    Thank you,
    Dev.

Maybe you are looking for

  • Loading file from jar in webstart 1.5.0_16

    Hello all, We have recently updated form 1.5.0_15 to 1.5.0_16. Since the update, our application is bombing when it attempts to read an xml file from a jar in cache. JDOModin.xml.XMLFileReaderError in building: C:\Documents and Settings\dave.frank\De

  • Trying to add dot border around illustrator brochure

    Hi I have made a new layer in my brochure document and have set the swatch fill to black with 30% opacity and a red stroke, yet as soon as click on the document with my blob brush, the fill menu gets a red line (no fill) and I get a red dot which is

  • X user issues[SOLVED]

    After many hours of work, I have finally managed to get X working on my Arch install, and got it working with GNOME, and even (finally) got the trackpad and keyboard to work. in Root. Now, finally satisfied with all i managed to get accomplished, I s

  • Windows Media Plug in for Safari?

    I have been trying to play Windows Media Player clips inside certain webpages and nothing works unless I download them to the desktop and open it with VLC. I have Windows Media Player 9, but it's still not working properly in Safari. Do I need a spec

  • Exporting Jpegs Extremely Slow After Update

    Anyone else having issues doing ANY kind of exporting through Aperture? We export thousands of images to Zenfolio, using their export plugin. After the 3.1 software update exporting anything has been painfully slow. I starting exporting an event yest