ORA-29532 during create database

Hi all,
When I want to create a new instance on 10.2.0.4.0 in Windows XP, I have ORA-29532 error. What can I do?
Regards

I'm sorry everyone,
I tried to connect instace, and I connected. But dbca is running and having that error message box. So I have pfile like following. In the meantime, I can Ignore this error on message box. Do I ignore?
Dump file c:\oracle\product\10.2.0\admin\minan\udump\minan_ora_3476.trc
Thu Jun 24 15:49:09 2010
ORACLE V10.2.0.4.0 - Production vsnsta=0
vsnsql=14 vsnxtr=3
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Windows XP Version V5.1 Service Pack 3
CPU : 3 - type 586, 3 Physical Cores
Process Affinity : 0x00000000
Memory (Avail/Total): Ph:716M/1791M, Ph+PgF:2759M/3685M, VA:1307M/2047M
Instance name: minan
Redo thread mounted by this instance: 1
Oracle process number: 18
Windows thread id: 3476, image: ORACLE.EXE (SHAD)
*** ACTION NAME:() 2010-06-24 15:49:09.687
*** MODULE NAME:(sqlplus.exe) 2010-06-24 15:49:09.687
*** SERVICE NAME:(SYS$USERS) 2010-06-24 15:49:09.687
*** SESSION ID:(151.13272) 2010-06-24 15:49:09.687
*** 2010-06-24 15:49:09.687
-- The following are current System-scope REDO Log Archival related
-- parameters and can be included in the database initialization file.
-- LOG_ARCHIVE_DEST=''
-- LOG_ARCHIVE_DUPLEX_DEST=''
-- LOG_ARCHIVE_FORMAT=ARC%S_%R.%T
-- DB_UNIQUE_NAME="MINAN"
-- LOG_ARCHIVE_CONFIG='SEND, RECEIVE, NODG_CONFIG'
-- LOG_ARCHIVE_MAX_PROCESSES=2
-- STANDBY_FILE_MANAGEMENT=MANUAL
-- STANDBY_ARCHIVE_DEST=%ORACLE_HOME%\RDBMS
-- FAL_CLIENT=''
-- FAL_SERVER=''
-- LOG_ARCHIVE_DEST_10='LOCATION=USE_DB_RECOVERY_FILE_DEST'
-- LOG_ARCHIVE_DEST_10='OPTIONAL REOPEN=300 NODELAY'
-- LOG_ARCHIVE_DEST_10='ARCH NOAFFIRM NOEXPEDITE NOVERIFY SYNC'
-- LOG_ARCHIVE_DEST_10='REGISTER NOALTERNATE NODEPENDENCY'
-- LOG_ARCHIVE_DEST_10='NOMAX_FAILURE NOQUOTA_SIZE NOQUOTA_USED NODB_UNIQUE_NAME'
-- LOG_ARCHIVE_DEST_10='VALID_FOR=(PRIMARY_ROLE,ONLINE_LOGFILES)'
-- LOG_ARCHIVE_DEST_STATE_10=ENABLE
-- Below are two sets of SQL statements, each of which creates a new
-- control file and uses it to open the database. The first set opens
-- the database with the NORESETLOGS option and should be used only if
-- the current versions of all online logs are available. The second
-- set opens the database with the RESETLOGS option and should be used
-- if online logs are unavailable.
-- The appropriate set of statements can be copied from the trace into
-- a script file, edited as necessary, and executed when there is a
-- need to re-create the control file.
-- Set #1. NORESETLOGS case
-- The following commands will create a new control file and use it
-- to open the database.
-- Data used by Recovery Manager will be lost.
-- Additional logs may be required for media recovery of offline
-- Use this only if the current versions of all online logs are
-- available.
-- After mounting the created controlfile, the following SQL
-- statement will place the database in the appropriate
-- protection mode:
-- ALTER DATABASE SET STANDBY DATABASE TO MAXIMIZE PERFORMANCE
STARTUP NOMOUNT
CREATE CONTROLFILE REUSE DATABASE "MINAN" NORESETLOGS NOARCHIVELOG
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 100
MAXINSTANCES 8
MAXLOGHISTORY 292
LOGFILE
GROUP 1 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\REDO01.LOG' SIZE 50M,
GROUP 2 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\REDO02.LOG' SIZE 50M,
GROUP 3 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\REDO03.LOG' SIZE 50M
-- STANDBY LOGFILE
DATAFILE
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\SYSTEM01.DBF',
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\UNDOTBS01.DBF',
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\SYSAUX01.DBF',
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\USERS01.DBF'
CHARACTER SET WE8ISO8859P9
-- Commands to re-create incarnation table
-- Below log names MUST be changed to existing filenames on
-- disk. Any one log file from each branch can be used to
-- re-create incarnation records.
-- ALTER DATABASE REGISTER LOGFILE 'C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MINAN\ARCHIVELOG\2010_06_24\O1_MF_1_1_%U_.ARC';
-- Recovery is required if any of the datafiles are restored backups,
-- or if the last shutdown was not normal or immediate.
RECOVER DATABASE
-- Database can now be opened normally.
ALTER DATABASE OPEN;
-- Commands to add tempfiles to temporary tablespaces.
-- Online tempfiles have complete space information.
-- Other tempfiles may require adjustment.
ALTER TABLESPACE TEMP ADD TEMPFILE 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\TEMP01.DBF'
SIZE 20971520 REUSE AUTOEXTEND ON NEXT 655360 MAXSIZE 32767M;
-- End of tempfile additions.
-- Set #2. RESETLOGS case
-- The following commands will create a new control file and use it
-- to open the database.
-- Data used by Recovery Manager will be lost.
-- The contents of online logs will be lost and all backups will
-- be invalidated. Use this only if online logs are damaged.
-- After mounting the created controlfile, the following SQL
-- statement will place the database in the appropriate
-- protection mode:
-- ALTER DATABASE SET STANDBY DATABASE TO MAXIMIZE PERFORMANCE
STARTUP NOMOUNT
CREATE CONTROLFILE REUSE DATABASE "MINAN" RESETLOGS NOARCHIVELOG
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 100
MAXINSTANCES 8
MAXLOGHISTORY 292
LOGFILE
GROUP 1 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\REDO01.LOG' SIZE 50M,
GROUP 2 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\REDO02.LOG' SIZE 50M,
GROUP 3 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\REDO03.LOG' SIZE 50M
-- STANDBY LOGFILE
DATAFILE
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\SYSTEM01.DBF',
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\UNDOTBS01.DBF',
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\SYSAUX01.DBF',
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\USERS01.DBF'
CHARACTER SET WE8ISO8859P9
-- Commands to re-create incarnation table
-- Below log names MUST be changed to existing filenames on
-- disk. Any one log file from each branch can be used to
-- re-create incarnation records.
-- ALTER DATABASE REGISTER LOGFILE 'C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MINAN\ARCHIVELOG\2010_06_24\O1_MF_1_1_%U_.ARC';
-- Recovery is required if any of the datafiles are restored backups,
-- or if the last shutdown was not normal or immediate.
RECOVER DATABASE USING BACKUP CONTROLFILE
-- Database can now be opened zeroing the online logs.
ALTER DATABASE OPEN RESETLOGS;
-- Commands to add tempfiles to temporary tablespaces.
-- Online tempfiles have complete space information.
-- Other tempfiles may require adjustment.
ALTER TABLESPACE TEMP ADD TEMPFILE 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\MINAN\TEMP01.DBF'
SIZE 20971520 REUSE AUTOEXTEND ON NEXT 655360 MAXSIZE 32767M;
-- End of tempfile additions.
--

Similar Messages

  • ORA-29540 during full database export

    Hi,
    Anyone encounter this error ORA-29540 during full database export. Have check out the web site for solution. Have check that the init file compatible is set to 8.1.0, the public synonym dba_java is been removed. However after the above remedies, the problem still occured. My database version is 8.1.5. Please let me know if there is other solution to this problem.
    Thank You ...
    regards,
    lbs

    Hi,
    Thanks...Any idea how to check whether the installation for the initjvm.sql is successful. cos I just took over from the previous DBA and he too have no idea...
    Thank You..

  • Getting ORA-32700 while creating database

    I am getting following error when creating the database :
    ORA-32700 error occurred in DIAG Group Service
    The error description is as follows :
    Cause: An unexpected error occurred while performing a DIAG Group Service operation.
    Action: Verify that the DIAG process is still active. Also, check the Oracle DIAG trace files for errors.
    The setup is as follows :
    Database : Oracle 9i Rel 2.
    OS : IBM AIX 4.3.3
    We are trying to create the database from sqlplus/dbca. It seems that in the database creation process it is throwing the error while it is trying to create the control files.
    listener.ora :
    LSNR_TSEDMDB2 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = prcsmbk1)(PORT = 1522))
    TNSNAMES.ORA
    LISTENER_TSEDMDB2 =
    (ADDRESS = (PROTOCOL = TCP)(HOST = prcsmbk1)(PORT = 1522))
    We have IBM HACMP Cluster setup on 3 machines. This machine (prcsmbk1) on which I am getting the error while creating the database is part of that HACMP cluster. While installing the Oracle database software also it gave me a list of the 3 machines which are in HACMP cluster. We are not planning to setup RAC, but still it seems like while creating the database control files Oracle is trying to perform some group service operation.
    Alert log :
    Sat Jan 3 03:31:18 2004
    Starting ORACLE instance (normal)
    Sat Jan 3 03:31:18 2004
    Global Enqueue Service Resources = 64, pool = 4
    Sat Jan 3 03:31:18 2004
    Global Enqueue Service Enqueues = 128
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    GES IPC: Receivers 1 Senders 1
    GES IPC: Buffers Receive 1000 Send 530 Reserve 300
    GES IPC: Msg Size Regular 432 Batch 2048
    SCN scheme 3
    Using log_archive_dest parameter default value
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up ORACLE RDBMS Version: 9.2.0.4.0.
    System parameters with non-default values:
    processes = 150
    timed_statistics = TRUE
    shared_pool_size = 117440512
    large_pool_size = 16777216
    java_pool_size = 117440512
    control_files = /u01/app/oracle/oradata/TSEDMDB2/control01.ctl
    db_block_size = 8192
    db_cache_size = 33554432
    compatible = 9.2.0.0.0
    db_file_multiblock_read_count= 16
    fast_start_mttr_target = 300
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    undo_retention = 10800
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    instance_name = TSEDMDB2
    dispatchers = (PROTOCOL=TCP) (SERVICE=TSEDMDB2XDB)
    local_listener = LISTENER_TSEDMDB2
    job_queue_processes = 10
    hash_join_enabled = TRUE
    background_dump_dest = /u01/app/oracle/admin/TSEDMDB2/bdump
    user_dump_dest = /u01/app/oracle/admin/TSEDMDB2/udump
    core_dump_dest = /u01/app/oracle/admin/TSEDMDB2/cdump
    sort_area_size = 524288
    db_name = TSEDMDB2
    open_cursors = 300
    star_transformation_enabled= FALSE
    query_rewrite_enabled = FALSE
    pga_aggregate_target = 25165824
    aq_tm_processes = 1
    Sat Jan 3 03:31:19 2004
    clUster interconnect IPC version:Oracle UDP/IP
    IPC Vendor 1 proto 2 Version 1.0
    PMON started with pid=2
    DIAG started with pid=3
    LMON started with pid=4
    LMD0 started with pid=5
    DBW0 started with pid=6
    LGWR started with pid=7
    CKPT started with pid=8
    SMON started with pid=9
    RECO started with pid=10
    CJQ0 started with pid=11
    QMN0 started with pid=12
    Sat Jan 3 03:31:24 2004
    starting up 1 shared server(s) ...
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Sat Jan 3 03:31:25 2004
    Create controlfile reuse set database TSEDMDB2
    MAXINSTANCES 1
    MAXLOGHISTORY 1
    MAXLOGFILES 50
    MAXLOGMEMBERS 5
    MAXDATAFILES 100
    Datafile
    '/u01/app/oracle/oradata/TSEDMDB2/cwmlite01.dbf' ,
    '/u01/app/oracle/oradata/TSEDMDB2/drsys01.dbf' ,
    '/u01/app/oracle/oradata/TSEDMDB2/example01.dbf' ,
    '/u01/app/oracle/oradata/TSEDMDB2/indx01.dbf' ,
    '/u01/app/oracle/oradata/TSEDMDB2/odm01.dbf' ,
    '/u01/app/oracle/oradata/TSEDMDB2/system01.dbf' ,
    '/u01/app/oracle/oradata/TSEDMDB2/tools01.dbf' ,
    '/u01/app/oracle/oradata/TSEDMDB2/undotbs01.dbf' ,
    '/u01/app/oracle/oradata/TSEDMDB2/users01.dbf' ,
    '/u01/app/oracle/oradata/TSEDMDB2/xdb01.dbf'
    LOGFILE GROUP 1 ('/u01/app/oracle/oradata/TSEDMDB2/redo01.log') SIZE 102400K,
    GROUP 2 ('/u01/app/oracle/oradata/TSEDMDB2/redo02.log') SIZE 102400K,
    GROUP 3 ('/u01/app/oracle/oradata/TSEDMDB2/redo03.log') SIZE 102400K RESETLOGS
    Sat Jan 3 03:31:25 2004
    ORA-1503 signalled during: Create controlfile reuse set database TSEDMDB2
    MAX...
    Sat Jan 3 03:32:28 2004
    Restarting dead background process QMN0
    QMN0 started with pid=15
    Sat Jan 3 03:32:28 2004
    Shutting down instance (abort)
    License high water mark = 3
    Instance terminated by USER, pid = 47128
    Diag trace file :
    /u01/app/oracle/admin/TSEDMDB2/bdump/tsedmdb2_diag_49754.trc
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    ORACLE_HOME = /u01/app/oracle/product/9.2.0
    System name: AIX
    Node name: prcsmbk1
    Release: 3
    Version: 4
    Machine: 0002599F4C00
    Instance name: TSEDMDB2
    Redo thread mounted by this instance: 0 <none>
    Oracle process number: 0
    49754
    Number of Serviceable Networks detected is less than 2
    Disabling Transparent Network Failover Feature.
    *** SESSION ID:(2.1) 2004-01-03 03:31:19.886
    kjzcprt:rcv port created
    kjzmreg2: slos err[1 19 [HA_GS_CONNECT_FAILED] sskgxn_gs_in 19]
    [kjzmreg2]: Error [category=1] is encountered
    Node monitor problem:[32700][kjzmreg2]
    Membership is lost in DIAG group
    Any help is appreciated. Thanks in advance.

    Thanks a lot for all your responses. We found the issue. The issue was that when we installed 9i we selected Enterprise option which installed RAC also. And after that when we were trying to create database Oracle was thinking that we are trying to create database in RAC env. and most likely it was trying to create/sync the control files on all the machines in the cluster.
    The sequence of events were as below :
    1. We have 8i installed on this machine
    2. We installed 9i (9.2.0.1.0) using the same ORACLE_BASE but different ORACLE_HOME. We didn't select "Custom Install". We selected "Enterprise install" option
    3. We installed new installer (2.2.0.18.0 ) and then 9i patch (9.2.0.4.0)
    4. While creating the database (manually & through DBCA) we were getting ORA-32700
    5. We tried to uninstall (using OUI 2.2.0.18.0) 9i (including the patch) completely but it never succeeded. We noticed that when we started uninstall it did show progress for about 20 minutes and after that it didn't show any progress. It was not taking any CPU cycles and It was not writing to the log file either. Basically we were never able to cleanly uninstall 9i. We tried almost 2 to 3 times.
    6. Then we installed 9i using a new ORACLE_BASE and this time we selected "Custom Install" and we did not install RAC. This is successful
    7. Then we installed new installer (2.2.0.18.0 ) and we tried to install the 9i patch (9.2.0.4.0) using this new installer but it never succeeded. Then we tried to install the 9i patch (9.2.0.4.0) using the old installer version (2.2.0.11.0) and it was also successful.
    8. Then we tried to create database using DBCA and it was successful and then we dropped the database which was created using DBCA and then we created it manually through SQLPLUS and this was fine too.
    So basically what we learned from this exercise is that if we are installing 9i on a machine which is part of a cluster and if we don't plan to setup RAC then we shouldn't install RAC and we should do a custom install. I wish there was a option in create database stmt to tell Oracle that though we are creating database on a machine which is part of a cluster environment but we don't intend to setup RAC.
    And other thing which is still a mystery is that why does the uninstall never completes successfully. One question on this : We were using the installer version 2.2.0.18.0 to uninstall the 9i software. Do we need to use the older version (2.2.0.11.0) of the OUI?

  • Error during create database connection (JDeveloper)

    Hello!
    Have you any suggestions of this: When I try to create new database connection to 9i DBMS, I've got errors:
    ORA-00604: error with recursive SQL
    ORA-12705: Invalid or unknown NLS parameter value specified.
    At the same time I try to do the same with another one DBMS,
    10g, and everything is Ok.
    Thanks.
    Andrew.

    Stephen, sure, I did all actions you described, during "Create new Database Connection":
    (filling in driver (thin), host name (i.e. localhost), jdbc port (i.e. 1521), and sid (i.e. orcl) )
    Th result I think should be looks like
    jdbc:oracle:thin:@wizard.shots.ru:1522:VIVD
    (tns for that DBMS is
    VIVD.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = wizard.shots.ru)(PORT = 1522))
    (CONNECT_DATA = (SID = VIVD))
    As I wrote, the same actions give OK result, if dbms = 10g.
    But, I want to test OEBS adapter, and OEBS stands on 9i DBMS only,
    so I need to work with 9i
    Thanks.
    Andrew.

  • ORA-02303 when creating database on Exadata using template with BP12

    I get ORA-02303 when creating a RAC database on Exadata. Logs indicate that error happened when applying bundle patch BP12 and probably when running following script: /u01/app/oracle/product/11.2.0.4/dbhome_1/rdbms/admin/catsnap.sql
    CREATE OR REPLACE TYPE SYS.RewriteMessage AS OBJECT(
    Check the following file for errors:
    /u01/app/oracle/product/11.2.0.4/dbhome_1/cfgtoollogs/catbundle/catbundle_EXA_ACSES01_GENERATE_2014Dec17_13_07_45.log
    Apply script: /u01/app/oracle/product/11.2.0.4/dbhome_1/rdbms/admin/catbundle_EXA_ACSES01_APPLY.sql
    Rollback script: /u01/app/oracle/product/11.2.0.4/dbhome_1/rdbms/admin/catbundle_EXA_ACSES01_ROLLBACK.sql
    Executing script file...
    Processing Oracle Database Packages and Types...
    CREATE OR REPLACE TYPE SYS.RewriteMessage AS OBJECT(
    ERROR at line 1:
    ORA-02303: cannot drop or replace a type with type or table dependents
    CREATE OR REPLACE TYPE SYS.ExplainMVMessage AS OBJECT (
    ERROR at line 1:
    ORA-02303: cannot drop or replace a type with type or table dependents
    Anyone experienced the same issue??

    Metalink search points to few bugs. May be opening a SR is a good idea.

  • SID Already Exist During Creating Database

    Hi,
    I've just installed oracle software on AIX 5.3
    - I've installed the software only.
    - Then, I tried to create database, but I've got an error message that "SID is already exist". Its the first oracle SID I create but I've got this error message, but maybe the error message due to failed installation of oracle for couple of times or I did "export ORACLE_SID=..." before creating database.
    I want to create database with the same SID... Whatch should I do...
    Regards,
    Ala'

    Ala' H. wrote:
    Hi,
    I've just installed oracle software on AIX 5.3
    - I've installed the software only.
    - Then, I tried to create database, but I've got an error message that "SID is already exist". Its the first oracle SID I create but I've got this error message, but maybe the error message due to failed installation of oracle for couple of times or I did "export ORACLE_SID=..." before creating database.
    I want to create database with the same SID... Whatch should I do...
    Regards,
    Ala'You can't create two databases with the same SID in one host
    If you don't need the first database, you can drop it
    If you don't have the database (you dropped it or etc.) but Oracle still claims that you have, then clear the line from /etc/oratab file which indicates information about that database

  • SQL Server error during create database through jdbc

    Hi ,
    Can anybody figure why I get the following exception
    java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Line 1: Incorrect syntax near '9876'.
    at com.microsoft.jdbc.base.BaseExceptions.createException(Unknown Source)
    at com.microsoft.jdbc.base.BaseExceptions.getException(Unknown Source)
    at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processErrorToken(Unknown Source)
    at com.microsoft.jdbc.sqlserver.tds.TDSRequest.processReplyToken(Unknown Source)
    I am trying to create a new database through jdbc, I use only numeric characters in the database name.
    I can create the same database through SQL Enterprise Manager.
    -vikram

    The name of the database is 9876?
    Plan A: save yourself trouble and start database/table/column names with a letter.
    Plan B: if you really must, try quoting the database name: create database "9867".

  • ORA-12560 while creating database Oracle 11.1.0.6

    Hi,
    I tried to create a Oracle Database using Oracle installer.
    I got the error ORA-12560
    This is part of the logfile:
    INFO: Configuration assistant "Oracle Net Configuration Assistant" succeeded
    INFO: Command = oracle.assistants.server.DbcaCfgPlugIn C:\Windows\system32\cmd /c call E:\app\Administrator\product\11.1.0\db_1/bin/dbca.bat -progress_only -createDatabase -templateName General_Purpose.dbc -sid labor -gdbName labor.world -emConfiguration LOCAL -datafileJarLocation E:\app\Administrator\product\11.1.0\db_1\assistants\dbca\templates -datafileDestination E:\app\Administrator\oradata -responseFile NO_VALUE -characterset WE8MSWIN1252 -obfuscatedPasswords false -sampleSchema true -recoveryAreaDestination NO_VALUE -totalMemory 818 -automaticMemoryManagement true -maskPasswords false -sysPassword ${S_SYSPASS} -systemPassword ${S_SYSTEMPASS} -dbsnmpPassword ${S_DBSNMPPASS} -sysmanPassword ${S_SYSMANPASS} ${S_SYSASMPASS} ${S_HOSTUSERPASS}
    Command = oracle.assistants.server.DbcaCfgPlugIn has failed
    INFO: Configuration assistant "Oracle Database Configuration Assistant" failed
    *** Starting OUICA ***
    Oracle Home set to E:\app\Administrator\product\11.1.0\db_1
    Configuration directory is set to E:\app\Administrator\product\11.1.0\db_1\cfgtoollogs. All xml files under the directory will be processed
    INFO: The "E:\app\Administrator\product\11.1.0\db_1\cfgtoollogs\configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    INFO:
    The Runconfig command constructed is E:\app\Administrator\product\11.1.0\db_1\oui\bin\runConfig.bat ORACLE_HOME=E:\app\Administrator\product\11.1.0\db_1 MODE=perform ACTION=configure RERUN=false $*
    INFO: Since there is an Internal Plugin Invocation or a Java Plugin Invocation tool in the Oracle Home E:\app\Administrator\product\11.1.0\db_1 we use the runConfig Command instead of the plugin's command
    INFO: Created a new file E:\app\Administrator\product\11.1.0\db_1\cfgtoollogs\configToolFailedCommands
    INFO: Since the option is to overwrite the existing E:\app\Administrator\product\11.1.0\db_1\cfgtoollogs\configToolFailedCommands file, backing it up
    INFO: The backed up file name is E:\app\Administrator\product\11.1.0\db_1\cfgtoollogs\configToolFailedCommands.bak
    SEVERE: OUI-25031:Some of the configuration assistants failed/cancelled. It is strongly recommended that you retry the configuration assistants at this time. Not successfully running any "Recommended" assistants means your system will not be correctly configured.
    1. Check the Details panel on the Configuration Assistant Screen to see the errors resulting in the failures.
    2. Fix the errors causing these failures.
    3. Select the failed assistants and click the 'Retry' button to retry them.
    INFO: User Selected: Yes/OK
    Can anybody help me
    Operating system Windows Server 2008
    Regards
    siegwiin

    Good morning Siegwin,
    First, you should probably post to this forum: [Database - General|http://forums.oracle.com/forums/forum.jspa?forumID=61]
    However, the error you are getting is a TNS error. You should check the following information in your TNSNAMES.ORA on your system and on the Database Server.
    <li>Name of the database
    <li>Port Number of the database as defined in the TNSNAMES - compare against the port number that the database is actually listening on
    <li>The SID defined in the TNSNAMES file.
    On the Database Server:
    <li>Check that there is a listener running and that it is listening for your database.
    Don.
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone! :)

  • ORA 03113 error creating database

    On Oracle 8.1.7, I've get an ORA 03113 error when creating the database. Pressing ignore leaves it hanging at 90%. I've tried creating db by copying files from CD and creating with custom parameters but same issue. There have been other threads regarding this error but no responses. I couldn't find any logs with specific error messages in my temp directory. Are there any logs I can refer to? How can I resolve this issue? I am on NT 4, SP6. Thanks.

    Hi Tim,
    Have you checked the setup files for the appropriate Net8 driver correctly installed on the server? I'd look at this you not have the correct Oracle networks drivers or a compatibility issue with them. Try reinstalling net8. This is really a Two-Task Common error (TTC) in the net8 stack.
    HTH
    Steve
    On Oracle 8.1.7, I've get an ORA 03113 error when creating the database. Pressing ignore leaves it hanging at 90%. I've tried creating db by copying files from CD and creating with custom parameters but same issue. There have been other threads regarding this error but no responses. I couldn't find any logs with specific error messages in my temp directory. Are there any logs I can refer to? How can I resolve this issue? I am on NT 4, SP6. Thanks.

  • Error ORA-12560 during creation database on oracle 11.2.0.1

    Hi,
    I'm just installed 11g r2 (11.2.0.1) on system Sun Solaris 10.
    After install i would create a db with dbca, but at the end of the configuraton, when the creation begin, apperars ORA-12560 error.
    Any idea?
    tks
    max

    I set the ORACLE_HOSTNAME environment variable end the result of lsnctrl status now is:
    LSNRCTL for Solaris: Version 11.2.0.1.0 - Production on 25-JAN-2010 16:16:02
    Copyright (c) 1991, 2009, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=10.102.0.3)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Solaris: Version 11.2.0.1.0 - Production
    Start Date 25-JAN-2010 15:57:54
    Uptime 0 days 0 hr. 18 min. 9 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /opt/oracle/product/11.2.0.1/db/network/admin/listener.ora
    Listener Log File /opt/oracle/diag/tnslsnr/nemo-as-col/listener/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.102.0.3)(PORT=1521)))
    The listener supports no services
    The command completed successfully
    The result of hostname command is nemo (tha machine name).
    After I retry with dbca with the same result :(
    max

  • Ora-907 during create table statement

    Customer is receiving an ora-907 error running this sql statement and I cannot determine where the problem is, if there is extra spaces or if it's truly missing the right parenthesis.
    SQL> set timing on
    SQL> set echo on
    SQL> set autotrace on
    SQL> @sr.sql
    SQL> create table tables_for_change_set (
    2 change_set_name varchar2(30),
    3 table_owner varchar2(30),
    4 table_name varchar2(30),
    5 column_names_0nf varchar2(4000),
    6 constraint tfcs_pk primary key (change_set_name, table_owner, table_name)
    7 )
    8 ;
    Table created.
    Elapsed: 00:00:00.13
    SQL>
    SQL>
    SQL> create table columns_for_change_set (
    2 change_set_name varchar2(30),
    3 table_owner varchar2(30),
    4 table_name varchar2(30),
    5 column_name varchar2(30),
    6 data_type varchar2(30),
    7 constraint cfcs_pk primary key (change_set_name, table_owner, table_name, column_name),
    8 constraint cfcs_tfcs_fk foreign key (change_set_name, table_owner, table_name) references tables_for_change_set (ch
    ange_set_name, table_owner, table_name)
    9 using index (create index cfcs_tfcs_fk on columns_for_change_set (change_set_name, table_owner, table_name))
    10 );
    using index (create index cfcs_tfcs_fk on columns_for_change_set (change_set_name, table_owner, table_name))
    ERROR at line 9:
    ORA-00907: missing right parenthesis
    Thanks,
    Lisa

    Welcome to the forum!
    So why did you use your second post to the forum to resurrect a thread that is over a year old?
    Hemant already provided the correct answer to the question and your reply to him that 'This contradicts the constraint documentation' doesn't specify what you mean by "this" but is wrong on any account.
    You certainly can't be referring to Hemant's statement
    >
    The syntax "constraint cfcs_tfcs_fk foreign key ...", using the key words "foreign key" is for an out-of-line constraint definition.
    >
    Since the diagram clearly shows his statement is correct.
    And you can't be referring to his statement
    >
    Furthermore, the "using index" clause is for Primary Key constraint , not for a Foreign Key. You should manually create the index separately.
    >
    Since the documentation states exactly what Hemant said.
    See 'Using Indexes to Enforce Constraints' in the SQL Language doc
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/clauses002.htm
    >
    Restrictions on the using_index_clause The following restrictions apply to the using_index_clause:
    You cannot specify this clause for a view constraint.
    You cannot specify this clause for a NOT NULL, foreign key, or check constraint.
    >
    Please check the dates in the threads before posting.

  • ERROR during creating new Database

    OS: Solaris 10 x86 (10/08)
    Oracle: Release 10.2.0.2.0 - Production (Standard Edition)
    I have just installed Oracle without basic/sample database. I was going to find out how to make it handy.
    What I did:
    # created initeric1.ora file
    control_files = (/oradata/u01/controlfile/control1.ctl,/oradata/u01/controlfile/control2.ctl,/oracle/controlfile/control3.ctl)
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    db_name = eric1
    db_block_size = 8192
    sga_max_size = 1073741824
    sga_target = 1073741824
    then "startup nomount" end here I stucked.
    I have executed below (all paths exists)
    SQL> create database eric1
    logfile group 1 ('/oradata/u02/redo/redo1.log') size 100M,
    group 2 ('/oradata/u02/redo/redo2.log') size 100M,
    group 3 ('/oradata/u02/redo/redo3.log') size 100M
    character set WE8ISO8859P1
    national character set utf8
    datafile '/oradata/u02/system/system.dbf' size 500M autoextend on next 10M maxsize unlimited extent management local
    sysaux datafile '/oradata/u02/system/sysaux.dbf' size 100M autoextend on next 10M maxsize unlimited
    undo tablespace undotbs1 datafile '/oradata/u02/system/undotbs1.dbf' size 100M
    default temporary tablespace temp tempfile '/oradata/u02/system/temp01.dbf' size 100M;
    ...and this is an ERROR:
    create database eric1
    ERROR at line 1:
    ORA-01092: ORACLE instance terminated. Disconnection forced
    Now, I am not sure where I am and what to do next.
    The above "CREATE" created redologs ONLY. Shouold I remove them ( by rm command ?? )and start it again OR somehow to fix it ?
    Little help plz.
    BTW. i was doing steps from this article and stopped in point 5:
    http://www.dba-oracle.com/oracle_create_database.htm
    Edited by: user639256 on 2009-10-24 09:47
    Edited by: user639256 on 2009-10-24 09:48

    Hi,
    here is /oracle/product/10.2.0/db_1/rdbms/log/alert_eric1.log:
    Sat Oct 24 17:52:02 2009
    Starting ORACLE instance (normal)
    Sat Oct 24 17:52:05 2009
    WARNING: Not enough physical memory for SHM_SHARE_MMU segment of size 0x0000000040003000 [flag=0x4000]
    Cannot determine all dependent dynamic libraries for /proc/self/object/a.out
    Unable to find dynamic library libskgxn2.so in search paths
    RPATH = /build/204/lib/:/opt/ORCLcluster/lib/
    LD_LIBRARY_PATH is not set!
    The default library directory is /usr/lib
    Unable to find dynamic library libocr10.so in search paths
    Unable to find dynamic library libocrb10.so in search paths
    RPATH = /build/204/opsm/lib/:/build/204/has/lib/:/build/204/rdbms/lib/
    Unable to find dynamic library libocrutl10.so in search paths
    Unable to find dynamic library libocrutl10.so in search paths
    RPATH = /build/204/opsm/lib/:/build/204/has/lib/:/build/204/rdbms/lib/
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Shared memory segment for instance monitoring created
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_1 parameter default value as /oracle/product/10.2.0/db_1/dbs/arch
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.2.0.
    System parameters with non-default values:
    sga_max_size = 1073741824
    sga_target = 1073741824
    control_files = /oradata/u01/controlfile/control1.ctl, /oradata/u01/controlfile/control2.ctl, /oracle/controlfile/control3.ctl
    db_block_size = 8192
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    db_name = eric1
    PMON started with pid=2, OS id=3218
    PSP0 started with pid=3, OS id=3220
    MMAN started with pid=4, OS id=3222
    DBW0 started with pid=5, OS id=3224
    LGWR started with pid=6, OS id=3226
    CKPT started with pid=7, OS id=3228
    SMON started with pid=8, OS id=3230
    RECO started with pid=9, OS id=3232
    MMON started with pid=10, OS id=3234
    MMNL started with pid=11, OS id=3236
    Sat Oct 24 17:52:22 2009
    Oracle Data Guard is not available in this edition of Oracle.
    Sat Oct 24 17:59:20 2009
    create database eric1
    logfile group 1 ('/oradata/u02/redo/redo1.log') size 100M,
    group 2 ('/oradata/u02/redo/redo2.log') size 100M,
    group 3 ('/oradata/u02/redo/redo3.log') size 100M
    character set WE8ISO8859P1
    national character set utf8
    datafile '/oradata/u02/system/system.dbf' size 500M autoextend on next 10M maxsize unlimited extent management local
    sysaux datafile '/oradata/u02/system/sysaux.dbf' size 100M autoextend on next 10M maxsize unlimited
    undo tablespace undotbs1 datafile '/oradata/u02/system/undotbs1.dbf' size 100M
    default temporary tablespace temp tempfile '/oradata/u02/system/temp01.dbf' size 100M
    Sat Oct 24 17:59:22 2009
    Database mounted in Exclusive Mode
    Sat Oct 24 17:59:46 2009
    Successful mount of redo thread 1, with mount id 3306637624
    Assigning activation ID 3306637624 (0xc5174938)
    Thread 1 opened at log sequence 1
    Current log# 1 seq# 1 mem# 0: /oradata/u02/redo/redo1.log
    Successful open of redo thread 1
    Sat Oct 24 17:59:48 2009
    SMON: enabling cache recovery
    Sat Oct 24 17:59:49 2009
    create tablespace SYSTEM datafile '/oradata/u02/system/system.dbf' size 500M autoextend on next 10M maxsize unlimited
    EXTENT MANAGEMENT LOCAL online
    Sat Oct 24 17:59:58 2009
    ORA-19502 signalled during: create tablespace SYSTEM datafile '/oradata/u02/system/system.dbf' size 500M autoextend on next 10M maxsize unlimited
    EXTENT MANAGEMENT LOCAL online
    Sat Oct 24 17:59:58 2009
    Errors in file /oracle/product/10.2.0/db_1/rdbms/log/eric1_ora_3237.trc:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-19502: write error on file "/oradata/u02/system/system.dbf", blockno 15360 (blocksize=8192)
    ORA-27063: number of bytes read/written is incorrect
    Intel SVR4 UNIX Error: 28: No space left on device
    Additional information: -1
    Additional information: 1048576
    ORA-19502: write error on file "/oradata/u02/system/system.dbf", blockno 15616 (blocksize=8192)
    ORA-27063: number of bytes read/written is incorrect
    Additional information: 466944
    Additional information: 1048576
    Sat Oct 24 17:59:58 2009
    Errors in file /oracle/product/10.2.0/db_1/rdbms/log/eric1_ora_3237.trc:
    ORA-01501: CREATE DATABASE failed
    ORA-01519: error while processing file '?/rdbms/admin/sql.bsq' near line 861
    ORA-00604: error occurred at recursive SQL level 1
    ORA-19502: write error on file "/oradata/u02/system/system.dbf", blockno 15360 (blocksize=8192)
    ORA-27063: number of bytes read/written is incorrect
    Intel SVR4 UNIX Error: 28: No space left on device
    Additional information: -1
    Additional information: 1048576
    ORA-19502: write error on file "/oradata/u02/system/system.dbf", blockno 15616 (blocksize=8192)
    ORA-27063: number of bytes read/written is incorrect
    Additional information: 466944
    Additional information: 1048576
    Error 1519 happened during db open, shutting down database
    USER: terminating instance due to error 1519
    Instance terminated by USER, pid = 3237
    ORA-1092 signalled during: create database eric1
    logfile group 1 ('/oradata/u02/redo/redo1.log') size 100M,
    group 2 ('/oradata/u02/redo/redo2.log') size 100M,
    group 3 ('/oradata/u02/redo/redo3.log') size 100M
    character set WE8ISO8859P1
    national character set utf8
    datafile '/oradata/u02/system/system.dbf' size 500M autoextend on next 10M maxsize unlimited extent management local
    sysaux datafile '/oradata/u02/system/sysaux.dbf' size 100M autoextend on next 10M maxsize unlimited
    undo tablespace undotbs1 datafile '/oradata/u02/system/undotbs1.dbf' size 100M
    default temporary tablespace temp tempfile '/oradata/u02/system/temp01.dbf' size 100M...
    Sat Oct 24 18:03:14 2009
    Starting ORACLE instance (normal)
    Sat Oct 24 18:03:16 2009
    WARNING: Not enough physical memory for SHM_SHARE_MMU segment of size 0x0000000040003000 [flag=0x4000]
    Cannot determine all dependent dynamic libraries for /proc/self/object/a.out
    Unable to find dynamic library libskgxn2.so in search paths
    RPATH = /build/204/lib/:/opt/ORCLcluster/lib/
    LD_LIBRARY_PATH is not set!
    The default library directory is /usr/lib
    Unable to find dynamic library libocr10.so in search paths
    Unable to find dynamic library libocrb10.so in search paths
    RPATH = /build/204/opsm/lib/:/build/204/has/lib/:/build/204/rdbms/lib/
    Unable to find dynamic library libocrutl10.so in search paths
    Unable to find dynamic library libocrutl10.so in search paths
    RPATH = /build/204/opsm/lib/:/build/204/has/lib/:/build/204/rdbms/lib/
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_1 parameter default value as /oracle/product/10.2.0/db_1/dbs/arch
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.2.0.
    System parameters with non-default values:
    sga_max_size = 1073741824
    sga_target = 1073741824
    control_files = /oradata/u01/controlfile/control1.ctl, /oradata/u01/controlfile/control2.ctl, /oracle/controlfile/control3.ctl
    db_block_size = 8192
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    db_name = eric1
    PMON started with pid=2, OS id=3250
    PSP0 started with pid=3, OS id=3252
    MMAN started with pid=4, OS id=3254
    DBW0 started with pid=5, OS id=3256
    LGWR started with pid=6, OS id=3258
    CKPT started with pid=7, OS id=3260
    SMON started with pid=8, OS id=3262
    RECO started with pid=9, OS id=3264
    MMON started with pid=10, OS id=3266
    MMNL started with pid=11, OS id=3268
    Sat Oct 24 18:03:33 2009
    Oracle Data Guard is not available in this edition of Oracle.
    Sat Oct 24 18:03:56 2009
    create database eric1
    logfile group 1 ('/oradata/u02/redo/redo1.log') size 100M,
    group 2 ('/oradata/u02/redo/redo2.log') size 100M,
    group 3 ('/oradata/u02/redo/redo3.log') size 100M
    character set WE8ISO8859P1
    national character set utf8
    datafile '/oradata/u02/system/system.dbf' size 500M autoextend on next 10M maxsize unlimited extent management local
    sysaux datafile '/oradata/u02/system/sysaux.dbf' size 100M autoextend on next 10M maxsize unlimited
    undo tablespace undotbs1 datafile '/oradata/u02/system/undotbs1.dbf' size 100M
    default temporary tablespace temp tempfile '/oradata/u02/system/temp01.dbf' size 100M
    Sat Oct 24 18:03:59 2009
    Errors in file /oracle/product/10.2.0/db_1/rdbms/log/eric1_ora_3269.trc:
    ORA-00200: control file could not be created
    ORA-00202: control file: '/oradata/u01/controlfile/control1.ctl'
    ORA-27038: created file already exists
    Additional information: 1
    Sat Oct 24 18:03:59 2009
    ORA-1501 signalled during: create database eric1
    logfile group 1 ('/oradata/u02/redo/redo1.log') size 100M,
    group 2 ('/oradata/u02/redo/redo2.log') size 100M,
    group 3 ('/oradata/u02/redo/redo3.log') size 100M
    character set WE8ISO8859P1
    national character set utf8
    datafile '/oradata/u02/system/system.dbf' size 500M autoextend on next 10M maxsize unlimited extent management local
    sysaux datafile '/oradata/u02/system/sysaux.dbf' size 100M autoextend on next 10M maxsize unlimited
    undo tablespace undotbs1 datafile '/oradata/u02/system/undotbs1.dbf' size 100M
    default temporary tablespace temp tempfile '/oradata/u02/system/temp01.dbf' size 100M...
    Sat Oct 24 18:56:14 2009
    Shutting down instance: further logons disabled
    Sat Oct 24 18:56:14 2009
    Stopping background process MMNL
    Sat Oct 24 18:56:15 2009
    Stopping background process MMON
    Sat Oct 24 18:56:16 2009
    Shutting down instance (immediate)
    License high water mark = 1
    Sat Oct 24 18:56:16 2009
    ALTER DATABASE CLOSE NORMAL
    ORA-1507 signalled during: ALTER DATABASE CLOSE NORMAL...
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Edited by: user639256 on 2009-10-24 11:26

  • Creating database on OMF

    Hello Experts
    I am working on Oracle 10g Enterprise Edition Release 10.2.0.1.0 on Windows 2000
    Creating an OMF database with the folllowing procedure:
    # Copyright (c) 1991, 2001, 2002 by Oracle Corporation
    # Cache and I/O
    db_block_size=8192
    db_file_multiblock_read_count=16
    # Cursors and Library Cache
    open_cursors=300
    # Database Identification
    db_domain=""
    db_name=demo
    # Diagnostics and Statistics
    background_dump_dest=C:\oracle\product\10.2.0/admin/demo/bdump
    core_dump_dest=C:\oracle\product\10.2.0/admin/demo/cdump
    user_dump_dest=C:\oracle\product\10.2.0/admin/demo/udump
    # File Configuration
    DB_CREATE_file_dest='C:\oracle\product\10.2.0\oradata\demo'
    DB_CREATE_ONLINE_LOG_DEST_1='C:\oracle\product\10.2.0\oradata\demo'
    DB_CREATE_ONLINE_LOG_DEST_2='C:\oracle\product\10.2.0\flash_recovery_area'
    db_recovery_file_dest=C:\oracle\product\10.2.0\flash_recovery_area
    db_recovery_file_dest_size=2147483648
    control_files=("C:\oracle\product\10.2.0\flash_recovery_area\demo\CONTROLFILE\control01.CTL",
    "C:\oracle\product\10.2.0\oradata\demo\CONTROLFILE\control02.CTL")
    # Job Queues
    job_queue_processes=10
    # Miscellaneous
    compatible=10.2.0.1.0
    # Processes and Sessions
    processes=150
    # SGA Memory
    sga_target=289406976
    # Security and Auditing
    audit_file_dest=C:\oracle\product\10.2.0/admin/demo/adump
    remote_login_passwordfile=EXCLUSIVE
    # Shared Server
    dispatchers="(PROTOCOL=TCP) (SERVICE=orclXDB)"
    # Sort, Hash Joins, Bitmap Indexes
    pga_aggregate_target=96468992
    # System Managed Undo and Rollback Segments
    undo_management=AUTO
    undo_tablespace=UNDOTBS1
    When I run this command "create database demo"
    It throws this error on the screen "ORA 01092: Oracle instance terminated. Disconnection Forced.
    The alert log file looks something like this:
    Dump file c:\oracle\product\10.2.0/admin/demo/bdump\alert_reebok1.log
    Fri Jun 12 19:23:44 2009
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows 2000 Version V5.0 Service Pack 4
    CPU : 2 - type 586
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:307M/1022M, Ph+PgF:1545M/2462M, VA:1934M/2047M
    Fri Jun 12 19:23:44 2009
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Shared memory segment for instance monitoring created
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    WARNING: db_recovery_file_dest is same as db_create_online_log_dest_2
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =18
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    processes = 150
    sga_target = 289406976
    control_files = C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\demo\CONTROLFILE\CONTROL01.CTL, C:\ORACLE\PRODUCT\10.2.0\ORADATA\demo\CONTROLFILE\CONTROL02.CTL
    db_block_size = 8192
    compatible = 10.2.0.1.0
    db_file_multiblock_read_count= 16
    db_create_file_dest = C:\oracle\product\10.2.0\oradata\demo
    db_create_online_log_dest_1= C:\oracle\product\10.2.0\oradata\demo
    db_create_online_log_dest_2= C:\oracle\product\10.2.0\flash_recovery_area
    db_recovery_file_dest = C:\oracle\product\10.2.0\flash_recovery_area
    db_recovery_file_dest_size= 2147483648
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=orclXDB)
    job_queue_processes = 10
    audit_file_dest = C:\ORACLE\PRODUCT\10.2.0\ADMIN\demo\ADUMP
    background_dump_dest = C:\ORACLE\PRODUCT\10.2.0\ADMIN\demo\BDUMP
    user_dump_dest = C:\ORACLE\PRODUCT\10.2.0\ADMIN\demo\UDUMP
    core_dump_dest = C:\ORACLE\PRODUCT\10.2.0\ADMIN\demo\CDUMP
    db_name =demo
    open_cursors = 300
    pga_aggregate_target = 96468992
    PMON started with pid=2, OS id=568
    PSP0 started with pid=3, OS id=2676
    MMAN started with pid=4, OS id=2144
    DBW0 started with pid=5, OS id=3424
    LGWR started with pid=6, OS id=1336
    CKPT started with pid=7, OS id=884
    SMON started with pid=8, OS id=2216
    RECO started with pid=9, OS id=2728
    CJQ0 started with pid=10, OS id=2328
    MMON started with pid=11, OS id=2888
    MMNL started with pid=12, OS id=1120
    Fri Jun 12 19:23:44 2009
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 1 shared server(s) ...
    Fri Jun 12 19:23:56 2009
    create database reebok1
    Fri Jun 12 19:23:56 2009
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Fri Jun 12 19:23:56 2009
    Database mounted in Exclusive Mode
    Fri Jun 12 19:24:06 2009
    Successful mount of redo thread 1, with mount id 1241163276
    Assigning activation ID 1241163276 (0x49faa60c)
    Thread 1 opened at log sequence 1
    Current log# 1 seq# 1 mem# 0: C:\ORACLE\PRODUCT\10.2.0\ORADATA\REEBOK1\demo\ONLINELOG\O1_MF_1_534QHNTV_.LOG
    Current log# 1 seq# 1 mem# 1: C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\demo\ONLINELOG\O1_MF_1_534QHQ8S_.LOG
    Successful open of redo thread 1
    Fri Jun 12 19:24:06 2009
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Fri Jun 12 19:24:06 2009
    SMON: enabling cache recovery
    Fri Jun 12 19:24:06 2009
    create tablespace SYSTEM datafile /* OMF datafile */
    default storage (initial 10K next 10K) EXTENT MANAGEMENT DICTIONARY online
    Fri Jun 12 19:24:08 2009
    Completed: create tablespace SYSTEM datafile /* OMF datafile */
    default storage (initial 10K next 10K) EXTENT MANAGEMENT DICTIONARY online
    Fri Jun 12 19:24:08 2009
    create rollback segment SYSTEM tablespace SYSTEM
    storage (initial 50K next 50K)
    Completed: create rollback segment SYSTEM tablespace SYSTEM
    storage (initial 50K next 50K)
    Fri Jun 12 19:24:15 2009
    CREATE UNDO TABLESPACE SYS_UNDOTS DATAFILE SIZE 10M AUTOEXTEND ON
    ORA-30012 signalled during: CREATE UNDO TABLESPACE SYS_UNDOTS DATAFILE SIZE 10M AUTOEXTEND ON
    Fri Jun 12 19:24:16 2009
    Errors in file c:\oracle\product\10.2.0\admin\demo\udump\demo_ora_3296.trc:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-30012: undo tablespace 'UNDOTBS1' does not exist or of wrong type
    Fri Jun 12 19:24:16 2009
    Errors in file c:\oracle\product\10.2.0\admin\reebok1\udump\demo_ora_3296.trc:
    ORA-01501: CREATE DATABASE failed
    ORA-01519: error while processing file '%ORACLE_HOME%\RDBMS\ADMIN\SQL.BSQ' near line 5792
    ORA-00604: error occurred at recursive SQL level 1
    ORA-30012: undo tablespace 'UNDOTBS1' does not exist or of wrong type
    Error 1519 happened during db open, shutting down database
    USER: terminating instance due to error 1519
    Fri Jun 12 19:24:16 2009
    Errors in file c:\oracle\product\10.2.0\admin\demo\bdump\demo_pmon_568.trc:
    ORA-01519: error while processing file '' near line
    Fri Jun 12 19:24:17 2009
    Errors in file c:\oracle\product\10.2.0\admin\demo\bdump\demo_reco_2728.trc:
    ORA-01519: error while processing file '' near line
    Fri Jun 12 19:24:17 2009
    Errors in file c:\oracle\product\10.2.0\admin\demo\bdump\demo_smon_2216.trc:
    ORA-01519: error while processing file '' near line
    Fri Jun 12 19:24:17 2009
    Errors in file c:\oracle\product\10.2.0\admin\demo\bdump\demo_ckpt_884.trc:
    ORA-01519: error while processing file '' near line
    Fri Jun 12 19:24:17 2009
    Errors in file c:\oracle\product\10.2.0\admin\demo\bdump\demo_psp0_2676.trc:
    ORA-01519: error while processing file '' near line
    Fri Jun 12 19:24:17 2009
    Errors in file c:\oracle\product\10.2.0\admin\demo\bdump\demo_lgwr_1336.trc:
    ORA-01519: error while processing file '' near line
    Fri Jun 12 19:24:17 2009
    Errors in file c:\oracle\product\10.2.0\admin\demo\bdump\demo_dbw0_3424.trc:
    ORA-01519: error while processing file '' near line
    Fri Jun 12 19:24:18 2009
    Errors in file c:\oracle\product\10.2.0\admin\demo\bdump\demo_mman_2144.trc:
    ORA-01519: error while processing file '' near line
    Fri Jun 12 19:24:18 2009
    Instance terminated by USER, pid = 3296
    ORA-1092 signalled during: create database demo...
    Thanks

    Hello,
    Are you using DBCA (Database configuration assitant) or customized script? I recommend you to use DBCA to create demo and you can choose Database file location (OMF) and make sure your database created successfully.
    Regards
    OrionNet

  • To create Database LINK, is it necessary to enter connection in TNSNAME...?

    Hi all,
    To create a Database Link, is it necessary to enter the connection in TNSNAMES.ORA....?
    create database link linkname connect to ORA_USER identified by pwd using 'Connection name in TNSNAMES';
    In Place of Connection name, if i gave IP Address OR Computer name also, without entering connection in TNSNAMES.ORA, it is creating database LINK.
    Thanks in advance,
    Pal

    You can bypass the tnsnames.ora file by specifying the description in the create statement;
    SQL> select distinct username from user_sys_privs
    USERNAME                     
    MSCALLION                    
    1 row selected.
    SQL> create database link dblink1
    connect to user1
    identified by "user1"
    using  '(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME = XE)))'
    External database created.
    SQL> select distinct username from user_sys_privs@dblink1
    USERNAME                     
    USER1 

  • Creating database problem with ORA-01519: error while processing file '' ne

    Dear all,
    I am having rough time with creating database manually. can anyone help me with the following errors.
    ALERT LOGFILE:-
    Sun May 31 12:00:39 2009
    Errors in file d:\oracle\product\10.1.0\admin\oracle5\udump\oracle5_ora_3444.trc:
    ORA-01501: CREATE DATABASE failed
    ORA-01519: error while processing file '%ORACLE_HOME%\RDBMS\ADMIN\SQL.BSQ' near line 5744
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01119: error in creating database file 'D:\oracle\product\10.1.0\oradata\ORACLE5 \datafile\undotbs1.dbf'
    ORA-27040: file create error, unable to create file
    OSD-04002: unable to open file
    O/S-Error: (OS 3) The system cannot find the path specified.
    Error 1519 happened during db open, shutting down database
    USER: terminating instance due to error 1519
    Sun May 31 12:00:39 2009
    Errors in file d:\oracle\product\10.1.0\admin\oracle5\bdump\oracle5_reco_3416.trc:
    ORA-01519: error while processing file '' near line
    CREATE DATABASE SCRIPT:-
    create database ORACLE5
    user sys identified by bala
    user system identified by bala
    logfile
    group 1 ('D:\oracle\product\10.1.0\oradata\ORACLE5\logfile\redo01.log') SIZE 50M,
    group 2 ('D:\oracle\product\10.1.0\oradata\ORACLE5\logfile\redo02.log') SIZE 50M,
    group 3 ('D:\oracle\product\10.1.0\oradata\ORACLE5\logfile\redo03.log') SIZE 50M
    maxlogfiles 5
    maxlogmembers 5
    maxloghistory 1
    maxdatafiles 50
    maxinstances 1
    datafile 'D:\oracle\product\10.1.0\oradata\ORACLE5\datafile\system01.dbf' size 200m autoextend on maxsize unlimited extent management local
    undo tablespace UNDOTBS1 datafile 'D:\oracle\product\10.1.0\oradata\ORACLE5 \datafile\undotbs1.dbf' size 10m autoextend on maxsize unlimited
    sysaux datafile 'D:\oracle\product\10.1.0\oradata\ORACLE5\datafile\sysaux01.dbf' size 100m autoextend on maxsize unlimited
    default temporary tablespace temp tempfile 'D:\oracle\product\10.1.0\oradata\ORACLE5 \datafile\temp01.dbf' size 10m autoextend on maxsize unlimited
    character set US7ASCII
    NATIONAL CHARACTER SET AL16UTF16
    INIT.ORA FILE:-
    # Copyright (c) 1991, 2001, 2002 by Oracle Corporation
    # Archive
    log_archive_format=ARC%S_%R.%T
    # Cache and I/O
    db_block_size=8192
    db_cache_size=25165824
    db_file_multiblock_read_count=16
    # Cursors and Library Cache
    open_cursors=300
    # Database Identification
    db_domain=""
    db_name=oracle5
    # Diagnostics and Statistics
    background_dump_dest=D:\oracle\product\10.1.0\admin\oracle5\bdump
    core_dump_dest=D:\oracle\product\10.1.0\admin\oracle5\cdump
    user_dump_dest=D:\oracle\product\10.1.0\admin\oracle5\udump
    # File Configuration
    #db_create_file_dest=D:\oracle\product\10.1.0\oradata
    db_recovery_file_dest=D:\oracle\product\10.1.0\flash_recovery_area
    db_recovery_file_dest_size=2147483648
    # Job Queues
    job_queue_processes=10
    # Miscellaneous
    compatible=10.1.0.2.0
    # Pools
    java_pool_size=50331648
    large_pool_size=8388608
    shared_pool_size=83886080
    # Processes and Sessions
    processes=150
    # Security and Auditing
    remote_login_passwordfile=EXCLUSIVE
    # Shared Server
    dispatchers="(PROTOCOL=TCP) (SERVICE=oracle5XDB)"
    # Sort, Hash Joins, Bitmap Indexes
    pga_aggregate_target=25165824
    sort_area_size=65536
    # System Managed Undo and Rollback Segments
    undo_management=AUTO
    undo_tablespace=UNDOTBS1
    control_files=("D:\ORACLE\PRODUCT\10.1.0\ORADATA\ORACLE5\CONTROLFILE\control01.CTL", "D:\ORACLE\PRODUCT\10.1.0\FLASH_RECOVERY_AREA\ORACLE5\CONTROLFILE\control02.CTL")

    Hi,
    undo tablespace UNDOTBS1 datafile 'D:\oracle\product\10.1.0\oradata\ORACLE5 \datafile\undotbs1.dbf' size 10m autoextend on maxsize unlimited
    After ORACLE5 there is a space character. Typo? Create proper directory or delete this character.
    Bartek

Maybe you are looking for