Creating Database Problem On WinME

I have installed Oracle8i Personal Edition on WinME. Its successful. Now When I am trying to create database I have problem. When I am creating a database with Typical Option and then copy existing files from CD there is no problem. But trying to create new database files then its taking too much time. It comes at 6% and I think it stuck... Anybody knows how much time it is taking in Creating new Database files? If this is the problem and by making any modification it can be solved, please guide me.
Thanks in Advance
-Jignesh
null

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

Similar Messages

  • 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

  • [b][u]JSP/mySQL CREATE DATABASE problem[/u][/b]

    I am trying to create a mySQL DB through JSP program (query).
    The Query :
    stmt.executeUpdate("CREATE DATABASE employee;");
    is not working. PLEASE HELP ME.................
    The program is as follows.
    try
    Connection con =null;
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    con=DriverManager.getConnection("jdbc:mysql://localhost:3306/bedrock","Dude","");
    System.out.println("Connection Established");
    try {
    System.out.println("Entered Try Block");
    stmt=con.createStatement();
    stmt.executeUpdate("CREATE DATABASE employee;");
    System.out.println("Query Executed");
    catch(Exception e){ 
    System.out.println("Entered Catch Block");
    System.out.println("Query Skipped");
    catch (SQLException ex)
    while (ex != null){
    System.out.println("sql exception"+ex);
    ex = ex.getNextException ();
    Message was edited by:
    sam_john

    con=DriverManager.getConnection("jdbc:mysql://localhost:3306/bedrock","Dude","");
    Access denied for user: '[email protected]' (Using password: NO)
    You must provide a password for your connection.
    Your code should have been as follows:
    con=DriverManager.getConnection("jdbc:mysql://localhost:3306/bedrock","Dude","YOUR_PASSWORD_HERE");Anyway, to create a database or a table in a db server like MySQL, you must have the good privileges to.
    Go to <MySQL_INSTALL_DIR>/Docs/ directory, you'll find there the MySQL manual.chm. Take a look at the the Tutorial section.
    In order to know how to use jdbc Connector/J, take a look at the documentation shipped with: /mysql-connector-java-X.X.X/docs/connector-j.html
    Here a typical code:
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.Statement;
    public class TestMySQL {
         public static void main(String[] args) {
              Connection con = null;
              Statement stmt = null;
              try {
                   Class.forName("org.gjt.mm.mysql.Driver").newInstance();
                   con = DriverManager.getConnection("jdbc:mysql://localhost:3306/bedrock", "Dude", "YOUR_PASSWORD_HERE");////// put the right password here
                   System.out.println("Connection Established");
                   System.out.println("Entered Try Block");
                   stmt = con.createStatement();
                   stmt.executeUpdate("CREATE DATABASE employee");
                   System.out.println("Query Executed");
              } catch (Exception e) {
                   e.printStackTrace();
              } finally {
                   if (stmt != null) {
                        try {
                             stmt.close();
                        } catch (Exception e) {
                   if (con != null) {
                        try {
                             con.close();
                        } catch (Exception e) {
    }Hope That Helps

  • 9i DBCA create database problem

    I'm running dbca on a redhat 9 box. I have been able to successfully install oracle, but want to alter the db_block_size to be 8k rather than the 4k default.
    I can set this as an initialization parameter and save it to a dbca template, but when I attempt to actually create the database, when it get to the instance start step, I get this error:
    ORA-01503: CREATE CONTROLFILE failed
    ORA-00058: DB_BLOCK_SIZE must be 4096 to mount this database (not 8192)
    There is no init.ora file anywhere, no control files or persistent database files of any type created at this juncture. Any ideas?

    Check the permission of dbca.rsp file in /home/oracle by
    #ls -l /home/oracle/dbca.rsp
    From the error its very clear that oracle user is not having sufficient privilege on this file.

  • Problem when creating Database (Database, OS and hardware Configuraiton included)

    Problem when creating Database:
    Below are the problems, which I faced during creation of database. I have mentioned both the problem separately. Plus the log file maintained by Oracle during installation. It might help in diagnosing the error. Plus a little conclusion with I turned up to.
    There are two problems, when creating database with Oracle Database Assistant. One when creating pre tuned database from CD. And second when creating customized database giving options your self.
    Problem # 1:
    When creating pre tuned database from CD. The process of creating Database is 90 % complete and is at step # 3 Initializing Database. It gives error ORA-03113: end-of-file on communication channel.
    I searched following oracle help for this problem.
    ORA-03113: end-of-file on communication channel
    Cause: An unexpected end-of-file was processed on the communication channel. The problem could not be handled by the Net8, two-task software. This message could occur if the shadow two-task process associated with a Net8 connect has terminated abnormally, or if there is a physical failure of the interprocess communication vehicle, that is, the network or server machine went down.
    Action: If this message occurs during a connection attempt, check the setup files for the appropriate Net8 driver and confirm Net8 software is correctly installed on the server. If the message occurs after a connection is well established, and the error is not due to a physical failure, check if a trace file was generated on the server at failure time. Existence of a trace file may suggest an Oracle internal error that requires the assistance of customer support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Problem # 2:
    When creating database with custom option. The process of creating Database is 2 % complete and is at step # 2 Creating Database Files. It gives error ORA-12571: TNS:packet writer failure.
    I searched following oracle help for this problem.
    ORA-12571: TNS:packet writer failure
    Cause: An error occurred during a data send.
    Action: Not normally visible to the user. For further details, turn on tracing and re-execute the operation. If error persists, contact Worldwide Customer Support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Log File Showing Error :
    Result code for launching of configuration tool is 0
    Launched configuration tool Oracle Database Configuration Assistant
    Command which is being spawned is C:\Program Files\Oracle\jre\1.1.7\bin/jrew.exe -Duser.dir=d:\oracle\ora81\assistants\dbca\jlib -classpath ";C:\Program Files\Oracle\jre\1.1.7\lib\rt.jar;C:\Program Files\Oracle\jre\1.1.7\lib\i18n.jar;d:\oracle\ora81\jlib\ewt-3_3_6.jar;d:\oracle\ora81\jlib\share-1_0_8.jar;d:\oracle\ora81\jlib\swingall-1_1_1.jar;d:\oracle\ora81\assistants\dbca\jlib\dbassist.jar;d:\oracle\ora81\assistants\jlib\jnls.jar;d:\oracle\ora81\assistants\jlib\acc.jar;d:\oracle\ora81\jlib\help-3_1_8.jar;d:\oracle\ora81\jlib\ice-4_06_6.jar;d:\oracle\ora81\jlib\netcfg.jar;" DBCreateWizard -progress_only -responseFile NO_VALUE -createtype seed -numusers NO_VALUE -apptype NO_VALUE -cartridges NO_VALUE -options NO_VALUE -demos NO_VALUE -seedloc d:\oracle\ora81\starterdb -sid ora8i -orabase d:\oracle -clususer NO_VALUE -cluspswd Protected value, not to be logged -nodeinfo NO_VALUE -gdbName ora8i
    Invalid Exit Code. The following result code will be used for configuration tool: 1
    Configuration tool Oracle Database Configuration Assistant failed
    The datafiles will be copied from the CD to d:\oracle\oradata\ora8i. The Oracle Database Configuration Assistant will begin creating the database.
    An Oracle database will be created for you. The database name will be ora8i. The system identifier for the database will be ora8i. The password for the INTERNAL account will be ******, the SYS account will be change_on_install and the SYSTEM account will be manager.
    Log File of Installation:
    The above code is a part of the log file, which is generated by Oracle installer at C:\Program Files\Oracle\Inventory\Log\..
    I just pasted the part of code, highlighted is the code showing error with Oracle Database Configuration Assistant.
    Software & Hardware Configuration are as follow:
    Software:
    Database
    Oracle 8.1.7.0.0 (Oracle8i)
    Operating System
    Microsoft Windows 2000
    5.00.2195
    Service Pack 2
    Hardware:
    x86 Family 6 Model 8 stepping
    10
    AT/AT COMPITABLE
    260,400 KB RAM

    Dont't worry about that. Before you
    create a table(or view), it is wise to
    drop the table(or view) with the same name.
    If the name doesn't exist, of course there
    is an error message. See the following script:
    -------------------begin-----------
    drop table students cascade constraints;
    create table students (
    sid varchar2(5),
    fname varchar2(20),
    lname varchar2(20) not null,
    minit char,
    primary key (sid));
    --------------end-----------------
    Good day!
    null

  • Problem while Creating Database in 10g

    Its very urgent.. Please Help..!!
    After installing 10g (Standard Edition) on Windows 2000 Server, I started creating database through Database Configuration Assistant.
    Instead of Oracle Home path, different path is specified for Database files.
    In 'Step 11 of 12' of the 'Database Configuration Assistant' I specified the 4 new table spaces to create with respective memory sizes.
    In 'Step 12' I selected 'Create a Database' and clicked 'Finish' button.
    After 7% of the Database creation progress bar, it is giving the following error:
    "ORA: 01092 ORACLE instance terminated. Disconnection forced"
    And asking for Abort..
    What could be the problem. Is it problem with installation or any other services to be started.
    After 10g installation I restarted my system.
    If required I'll provide some more information.
    Its very urgent...
    Thanks & Regards

    hi satish,
    this is not the right forum for database questions. please use the following (database) forums:
    http://forums.oracle.com/forums/index.jsp?cat=18
    regards,
    christian

  • Problem faced while creating database in oracle 10g

    SQL> get C:\Oracle_Docs\ex\dbcreation_script\DBCREATIONSCRIPT
    1 create database db_test
    2 logfile group 1 ('C:\oracle\product\10.1.0\oradata\orcl\testdb\REDO01.rdo','C:\oracle\product\10.1.0\oradata\orcl\testdb\REDO02.rdo') size 100 m,
    3 group 2 ('C:\oracle\product\10.1.0\oradata\orcl\testdb\REDO03.rdo','C:\oracle\product\10.1.0\oradata\orcl\testdb\REDO04.rdo') size 100 m
    4 datafile 'C:\oracle\product\10.1.0\oradata\orcl\testdb\system01.dbf' size 32m
    5 SYSAUX DATAFILE 'C:\oracle\product\10.1.0\oradata\orcl\testdb\SYSAUX.DBF' SIZE 325M
    6 undo tablespace testundotbs
    7 datafile 'C:\oracle\product\10.1.0\oradata\orcl\testdb\undo01.dbf' size 40 m
    8 default temporary tablespace test_temptbls
    9 tempfile 'C:\oracledb\testdb\tempo1.dbf' size 40 m
    10 character set WE8MSWIN1252
    11* national character set AL16UTF16
    12 /
    create database db_test
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-01504: database name 'DB_TEST' does not match parameter db_name 'orcl'
    create spfile = 'C:\oracle\product\10.1.0\db_1\database\spfiledb_test.ora' from pfile = 'C:\oracle\product\10.1.0\admin\orcl\pfile\init.ora'
    ERROR at line 1:
    ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file
    'C:\ORACLE\PRODUCT\10.1.0\ADMIN\ORCL\PFILE\INIT.ORA'
    Message was edited by:
    user525645

    i have the init file which contains my database name.i have tries asking one sir regarding this. he checked out my problem but couldnt get the solution.he told he'll check it out and tell...he 's telling ther is 25% chance in installation problem.
    my init.ora file
    # Copyright (c) 1991, 2001, 2002 by Oracle Corporation
    # 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=db_test
    # Diagnostics and Statistics
    background_dump_dest=C:\oracle\product\10.1.0\admin\orcl\bdump
    core_dump_dest=C:\oracle\product\10.1.0\admin\orcl\cdump
    user_dump_dest=C:\oracle\product\10.1.0\admin\orcl\udump
    # File Configuration
    control_files=("C:\oracle\product\10.1.0\oradata\orcl\testdb\control01.ctl", "C:\oracle\product\10.1.0\oradata\orcl\testdb\control02.ctl", "C:\oracle\product\10.1.0\oradata\orcl\testdb\control03.ctl")
    db_recovery_file_dest=C:\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=orclXDB)"
    # 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
    Message was edited by:
    user525645

  • Problem when creating Database:

    There are two problems, which I faced during creation of database. When creating database with Oracle Database Assistant. One when creating pre tuned database from CD. And second when creating customized database giving options your self.
    Problem # 1:
    When creating pre tuned database from CD. The process of creating Database is 90 % complete and is at step # 3 Initializing Database. It gives error ORA-03113: end-of-file on communication channel.
    I searched following oracle help for this problem.
    ORA-03113: end-of-file on communication channel
    Cause: An unexpected end-of-file was processed on the communication channel. The problem could not be handled by the Net8, two-task software. This message could occur if the shadow two-task process associated with a Net8 connect has terminated abnormally, or if there is a physical failure of the interprocess communication vehicle, that is, the network or server machine went down.
    Action: If this message occurs during a connection attempt, check the setup files for the appropriate Net8 driver and confirm Net8 software is correctly installed on the server. If the message occurs after a connection is well established, and the error is not due to a physical failure, check if a trace file was generated on the server at failure time. Existence of a trace file may suggest an Oracle internal error that requires the assistance of customer support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Problem # 2:
    When creating database with custom option. The process of creating Database is 2 % complete and is at step # 2 Creating Database Files. It gives error ORA-12571: TNS:packet writer failure.
    I searched following oracle help for this problem.
    ORA-12571: TNS:packet writer failure
    Cause: An error occurred during a data send.
    Action: Not normally visible to the user. For further details, turn on tracing and re-execute the operation. If error persists, contact Worldwide Customer Support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.

    user563502 wrote:
    I am working on Solaris 8. What is Alert_SID.log? where can I find it?
    ThanksFor the responsible of the upgrade of Oracle database, not even know what Alert log is?
    to be honest with you, this is not your work.

  • Problem when creating Database with Database, OS and hardware Configuraiton

    Problem when creating Database:
    There are two problems, which I faced during creation of database. When creating database with Oracle Database Assistant. One when creating pre tuned database from CD. And second when creating customized database giving options your self.
    Problem # 1:
    When creating pre tuned database from CD. The process of creating Database is 90 % complete and is at step # 3 Initializing Database. It gives error ORA-03113: end-of-file on communication channel.
    I searched following oracle help for this problem.
    ORA-03113: end-of-file on communication channel
    Cause: An unexpected end-of-file was processed on the communication channel. The problem could not be handled by the Net8, two-task software. This message could occur if the shadow two-task process associated with a Net8 connect has terminated abnormally, or if there is a physical failure of the interprocess communication vehicle, that is, the network or server machine went down.
    Action: If this message occurs during a connection attempt, check the setup files for the appropriate Net8 driver and confirm Net8 software is correctly installed on the server. If the message occurs after a connection is well established, and the error is not due to a physical failure, check if a trace file was generated on the server at failure time. Existence of a trace file may suggest an Oracle internal error that requires the assistance of customer support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Problem # 2:
    When creating database with custom option. The process of creating Database is 2 % complete and is at step # 2 Creating Database Files. It gives error ORA-12571: TNS:packet writer failure.
    I searched following oracle help for this problem.
    ORA-12571: TNS:packet writer failure
    Cause: An error occurred during a data send.
    Action: Not normally visible to the user. For further details, turn on tracing and re-execute the operation. If error persists, contact Worldwide Customer Support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Software & Hardware Configuration are as follow:
    Software:
    Database
    Oracle 8.1.7.0.0 (Oracle8i)
    Operating System
    Microsoft Windows 2000
    5.00.2195
    Service Pack 2
    Hardware:
    x86 Family 6 Model 8 stepping
    10
    AT/AT COMPITABLE
    260,400 KB RAM

    user563502 wrote:
    I am working on Solaris 8. What is Alert_SID.log? where can I find it?
    ThanksFor the responsible of the upgrade of Oracle database, not even know what Alert log is?
    to be honest with you, this is not your work.

  • Problem when creating Database (Database, OS and hardware Configuraiton)

    Problem when creating Database:
    There are two problems, which I faced during creation of database. When creating database with Oracle Database Assistant. One when creating pre tuned database from CD. And second when creating customized database giving options your self.
    Problem # 1:
    When creating pre tuned database from CD. The process of creating Database is 90 % complete and is at step # 3 Initializing Database. It gives error ORA-03113: end-of-file on communication channel.
    I searched following oracle help for this problem.
    ORA-03113: end-of-file on communication channel
    Cause: An unexpected end-of-file was processed on the communication channel. The problem could not be handled by the Net8, two-task software. This message could occur if the shadow two-task process associated with a Net8 connect has terminated abnormally, or if there is a physical failure of the interprocess communication vehicle, that is, the network or server machine went down.
    Action: If this message occurs during a connection attempt, check the setup files for the appropriate Net8 driver and confirm Net8 software is correctly installed on the server. If the message occurs after a connection is well established, and the error is not due to a physical failure, check if a trace file was generated on the server at failure time. Existence of a trace file may suggest an Oracle internal error that requires the assistance of customer support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Problem # 2:
    When creating database with custom option. The process of creating Database is 2 % complete and is at step # 2 Creating Database Files. It gives error ORA-12571: TNS:packet writer failure.
    I searched following oracle help for this problem.
    ORA-12571: TNS:packet writer failure
    Cause: An error occurred during a data send.
    Action: Not normally visible to the user. For further details, turn on tracing and re-execute the operation. If error persists, contact Worldwide Customer Support.
    Conclusion:
    What I conceive from this problem and the help available is that, I have to install NET8 again. But I am not sure about the solution, please tell me whether I am rite or not.
    Software & Hardware Configuration are as follow:
    Software:
    Database
    Oracle 8.1.7.0.0 (Oracle8i)
    Operating System
    Microsoft Windows 2000
    5.00.2195
    Service Pack 2
    Hardware:
    x86 Family 6 Model 8 stepping
    10
    AT/AT COMPITABLE
    260,400 KB RAM

    user563502 wrote:
    I am working on Solaris 8. What is Alert_SID.log? where can I find it?
    ThanksFor the responsible of the upgrade of Oracle database, not even know what Alert log is?
    to be honest with you, this is not your work.

  • Problem to create database with RAC 10g with Oracle Standard Edition

    I install CRS (Cluster Ready Services), and then install Oracle 10g database. Also, I install patches 10.1.0.4. When I create database with ASM storage give me a error to create files database.
    Any idea?
    Thanks
    Edu Alcañiz

    You were right.
    http://download-uk.oracle.com/docs/html/B14203_05/intro.htm#sthref44
    under the section
    "1.3 Configuration Tasks for Oracle Clusterware and Oracle Real Application Clusters"
    "... If you use RAC on Oracle Database 10g Standard Edition, then you must use ASM."
    Thanks, problem solved.
    - Vegard

  • [b][u]JSP create mysql DataBase problem[/u][/b]

    While i try to create mysql database through JSP program using query,
    the qurey statement doesn't work
    stmt.executeUpdate("create database employee;"); is not executing.
    The code is as follows : Please Help Me......
    try {
    Connection con = null;
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    con=DriverManager.getConnection("jdbc:mysql://localhost:3306/bedrock","Dude1","");
    try {
    Statement stmt=con.createStatement();
    stmt.executeUpdate("create database employee;");
    System.out.println("Statement Executed");
    catch(Exception e) {
    System.out.println("Statement not Executed");
    catch (SQLException ex) {
    while (ex != null) {
    System.out.println("sql exception"+ex);
    ex = ex.getNextException ();
    " THANKS IN ADVANCE "

    It's not common to create databases with Java. I'd say this is especially true of JSPs. You'll have to GRANT permission to access and create tables to every single user that comes in? Are those tables cleaned up when users are done, or does the number of tables grow as the number of users grows? One table per customer? Sounds more like session or cookies to me. Do you validate users to make sure that only authorized users can create tables? Lots of problems, and it doesn't appear that you've addressed any of this from the code you've posted.
    It's a bad idea to have code like this in a JSP. Those are for view only. Better to put database code on the server side where it belongs.
    %

  • I m Not able to access to create database, Please solve the problem. please give some text steps

    ===================================
    Create failed for Database 'Qlao'.  (Microsoft.SqlServer.Smo)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=10.50.1750.9+((dac_inplace_upgrade).101209-1051+)&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Create+Database&LinkId=20476
    Program Location:
       at Microsoft.SqlServer.Management.Smo.SqlSmoObject.CreateImpl()
       at Microsoft.SqlServer.Management.Smo.Database.Create()
       at Microsoft.SqlServer.Management.SqlManagerUI.CreateDatabaseData.DatabasePrototype.ApplyChanges(Control marshallingControl)
       at Microsoft.SqlServer.Management.SqlManagerUI.CreateDatabase.DoPreProcessExecution(RunType runType, ExecutionMode& executionResult)
       at Microsoft.SqlServer.Management.SqlMgmt.SqlMgmtTreeViewControl.DoPreProcessExecutionAndRunViews(RunType runType)
       at Microsoft.SqlServer.Management.SqlMgmt.SqlMgmtTreeViewControl.ExecuteForSql(PreProcessExecutionInfo executionInfo, ExecutionMode& executionResult)
       at Microsoft.SqlServer.Management.SqlMgmt.SqlMgmtTreeViewControl.Microsoft.SqlServer.Management.SqlMgmt.IExecutionAwareSqlControlCollection.PreProcessExecution(PreProcessExecutionInfo executionInfo, ExecutionMode& executionResult)
       at Microsoft.SqlServer.Management.SqlMgmt.ViewSwitcherControlsManager.RunNow(RunType runType, Object sender)
    ===================================
    An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
    Program Location:
       at Microsoft.SqlServer.Management.Common.ServerConnection.ExecuteNonQuery(String sqlCommand, ExecutionTypes executionType)
       at Microsoft.SqlServer.Management.Common.ServerConnection.ExecuteNonQuery(StringCollection sqlCommands, ExecutionTypes executionType)
       at Microsoft.SqlServer.Management.Smo.ExecutionManager.ExecuteNonQuery(StringCollection queries)
       at Microsoft.SqlServer.Management.Smo.SqlSmoObject.ExecuteNonQuery(StringCollection queries, Boolean includeDbContext)
       at Microsoft.SqlServer.Management.Smo.SqlSmoObject.CreateImplFinish(StringCollection createQuery, ScriptingOptions so)
       at Microsoft.SqlServer.Management.Smo.SqlSmoObject.CreateImpl()
    ===================================
    CREATE DATABASE permission denied in database 'master'. (.Net SqlClient Data Provider)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=10.50.1617&EvtSrc=MSSQLServer&EvtID=262&LinkId=20476
    Server Name: SLPSOFTSOLS1
    Error Number: 262
    Severity: 14
    State: 1
    Line Number: 1
    Program Location:
       at Microsoft.SqlServer.Management.Common.ConnectionManager.ExecuteTSql(ExecuteTSqlAction action, Object execObject, DataSet fillDataSet, Boolean catchException)
       at Microsoft.SqlServer.Management.Common.ServerConnection.ExecuteNonQuery(String sqlCommand, ExecutionTypes executionType)

    Hello,
    This issue might be caused by the User Account Control (UAC) settings if we use Windows 7 or Windows Server2008, ect Operating System. Please also take a look at the following articles:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/28fee0ed-c7e2-40df-8f79-f513c9848f09/create-database-permission-denied-in-database-master-microsoft-sql-server-error-262?forum=sqltools
    http://blogs.msdn.com/b/dparys/archive/2009/09/17/create-database-permission-denied-in-database-master-my-fix.aspx
    Regards,
    Elvis Long
    TechNet Community Support

  • Problem in creating database instance in linux through webtool

    Dear sir
    i got sql erroe ,when i mam trying to creat database instance.i am decrbing steps here from point of start.
    Initially i invke two command
    1:/opt/sdb/programs/bin/x_server
    2:/etc/rc.d/init.d/maxdbweb start
    then i invoke web application as:http://localhost:9999/webdbm
    then i m trying to create DATABASE Instance
    1:specify Database/servaername
         Name     : Test12
         Server   : localhost
         Username : dbm
         Password : dbm
    2:the fill the authetication form as(dbm,dbm,dbm),(dba,dba,dba)
    3:use default and specify data and log space
    4:Then i click "Install" button
    then i got error: "-24988 sql error:"
    plz tell me where i m wrong and tell me any another component ,should i start.

    hi Roland
    the output ofthese command is given
    1. Command: dbmcli db_enum
    <b>OUTPUT</b>
    OK
    TEST12  /opt/sdb/7500   7.5.0.23        fast    offline
    TEST12  /opt/sdb/7500   7.5.0.23        quick   offline
    TEST12  /opt/sdb/7500   7.5.0.23        slow    offline
    2.Command: dbcmli -d Test12 -u dbm,dbm db_state
    <b>OUTPUT</b>
    OK
    State
    OFFLINE
    3.Command: dbcmli -d Test12 -u dbm,dbm db_online
    <b>OUTPUT</b>
    ERR
    -24988,ERR_SQL: sql error
    -8888,connection broken server state 4
    <b>Last Some lines of file :Knldiang.err</b>
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE  
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE   -
    > Symbolic Stack Back Trace <----
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      0: 0x0877601a eo670_CTraceStack +0x001e
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9cd20] (0x0,0x0,0x1,0x8776008)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      1: 0x0879448d vabort +0x0039
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9cd50] (0x8add904,0x89282a0,0x89282c2,0x40b9cd78)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      2: 0x08701813 RTE_Crash__FRC20SAPDBErr_MessageList +0x010f
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9cd80] (0x40100001,0x2e5,0x40b9cdc0,0x8701796)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      3: 0x0856eec5 ReadRestartPage__13IOMan_ManageriR18Kernel_RestartPage +0x0261
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9cdc0] (0x40b9d0ec,0x40b9d130,0x0,0x1)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      4: 0x08576e89 bd999ReadRestartPage +0x0075
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d100] (0x408ad608,0x25,0x40b9d130,0x8576e21)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      5: 0x083cbc16 kb57RestoreRestartRecord +0x003e
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d140] (0x25,0x8bb5bac,0x40b9d180,0x83cbc06)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      6: 0x08570f5e OpenAllDataVolumes__13IOMan_Manageri +0x003a
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d180] (0x25,0x25,0x0,0x8570f32)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      7: 0x08576b39 bd999AttachAllDataVolumes +0x0029
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d1b0] (0x408ad608,0x25,0x1,0x8576b1d)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      8: 0x08408e8b b01restart_filesystem +0x0057
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d1e0] (0x25,0x40ba5976,0x40b9d220,0x8408e74)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE      9: 0x086bd8b5 RestartFilesystem__21Kernel_AdministrationR18tgg00_TransContextb +0x0025
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d220] (0x40ba5954,0x1,0x0,0x86bd89e)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     10: 0x086a86fc RestartPrepare__21Kernel_AdministrationR18tgg00_TransContextQ221Kernel_Administration11RestartKind
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE                    R20SAPDBErr_MessageList +0x0038
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d250] (0x8b473e0,0x40ba5954,0x40b90001,0x86a86e0)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     11: 0x086a8e59 RestartIntern__21Kernel_AdministrationR18tgg00_TransContextQ221Kernel_Administration11RestartKindG
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE                    t19SAPDB_Invalidatable2ZUiUi0T3G16Log_IOSequenceNo +0x0061
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d3f0] (0x8b473e0,0x40ba5954,0x0,0x40b9d50c)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     12: 0x086a85ab Restart__21Kernel_AdministrationR18tgg00_TransContextGt19SAPDB_Invalidatable2ZUiUi0T2G16Log_IOSequ
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE                    enceNo +0x0197
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d520] (0x8b473e0,0x40ba5954,0x0,0x0)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     13: 0x0853391a gg999Restart +0x004e
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d580] (0x8b473e0,0x40ba5954,0x0,0x0)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     14: 0x081fd618 ak36restart +0x00e0
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9d5d0] (0x40ba5954,0x40b9f6f8,0x40b9f700,0xffffffff)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     15: 0x081fe9cc a36_call_semantic +0x05fc
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40b9f740] (0x40ba499c,0x40ba3774,0x0,0x81fe3e1)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     16: 0x081efb0f ak35call_semantik +0x0503
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba39b0] (0x40ba499c,0x40ba3a08,0x40ba39ef,0x40ba3a08)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     17: 0x081ef137 a35_asql_statement +0x07d3
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba3a30] (0x40ba499c,0x176,0x0,0x81ee972)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     18: 0x083146bc ak92not_only_execute +0x0858
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba3ab0] (0x40ba499c,0x40ba52d4,0x0,0x8313e75)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     19: 0x08315516 ak92analyze_messagetype +0x07ce
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba3c70] (0x40ba499c,0x40ba3cc8,0x40ba3ccc,0x40ba3dd4)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     20: 0x083161ed a92_mode_analyzer +0x01cd
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba3de0] (0x40ba499c,0x0,0x0,0x0)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     21: 0x0831aa85 ak93one_command +0x0779
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba3ee0] (0x40ba499c,0x0,0x0,0x831a6b4)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     22: 0x0831967d a93_user_commands +0x047d
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba4020] (0x40ba499c,0x1,0x40ba4088,0x1)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     23: 0x0813d9ee ak91run_sql_process +0x00ee
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba40c0] (0x40ba499c,0x40ba40fe,0x40ba40ff,0x813d911)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     24: 0x0813d6c1 ak91run_non_sql_process +0x00bd
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba4510] (0x40ba499c,0x0,0x1,0x813d620)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     25: 0x0813d760 ak91run_user_process +0x0064
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba4550] (0x40ba499c,0x816d2c8,0x0,0x813d70d)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     26: 0x0813dac5 a91mainprogam_with_allocator +0x0041
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba5e20] (0x40ba5f14,0x1,0x400e17f0,0x813da91)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     27: 0x0852e6a9 gg941CreateAllocatorAndCallMainprog +0x01e5
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba5e50] (0x40ba5f14,0x2,0xffffffff,0x25)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     28: 0x0813da68 a91mainprogram +0x003c
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba5ee0] (0x40ba5f14,0x0,0x0,0x813da3c)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     29: 0x087b7b82 en88_CallKernelTaskMain__FP9TASK_TYPE +0x016e
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba5f80] (0x8add904,0x400d4da0,0x87b8080,0x87b8080)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE     30: 0x087b80ae en88_CallCoroutineKernelTaskMain +0x002e
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE          /opt/sdb/7500/pgm/kernel
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE         Frameinfo [0x40ba5fb0] (0x50016be0,0x8b93d80,0x0,0x0)
    2005-03-04 16:07:50  4138 ERR 11599 BTRACE   -
    > End of Stack Back Trace <----
    2005-03-04 16:07:50  4138 ERR 11196 DBCRASH  vabort:Emergency Shutdown, Task: 37

  • Problem in create database use dbca in RAC

    i setup a two-nodes RAC, and use dbca to create db
    here is the output of dbca
    [oracle@rac1 ~]$ dbca -silent -responseFile /home/oracle/dbca.rsp
    Copying database files
    1% complete
    3% complete
    9% complete
    15% complete
    21% complete
    27% complete
    30% complete
    Creating and starting Oracle instance
    32% complete
    36% complete
    40% complete
    44% complete
    45% complete
    48% complete
    50% complete
    Creating cluster database views
    52% complete
    70% complete
    Completing Database Creation
    73% complete
    76% complete
    79% complete
    80% complete
    81% complete
    90% complete
    99% complete
    100% complete
    Look at the log file "/opt/ora/product/10.2.0/db_1/cfgtoollogs/dbca/mydb/mydb.log" for further details.
    and here is the log output:
    Failed to retrieve network listener resources required for the Real Application Clusters high
    availability extensions configurations on the following nodes: [rac1, rac2].
    Do you want listeners on port 1521 with prefix LISTENER to be created on nodes [rac1, rac2]
    automatically? If you would like to configure the listener with different properties, run NetCA
    before continuing.
    PRKS-1009 : Failed to start ASM instance "+ASM1" on node "rac1", [CRS-0215: Could not start
    resource 'ora.rac1.ASM1.asm'.]
    PRKS-1009 : Failed to start ASM instance "+ASM2" on node "rac2", [CRS-0215: Could not start
    resource 'ora.rac2.ASM2.asm'.]
    Could not mount the diskgroup on node: rac2. The ASM instance on node rac2 is not started.
    Could not mount the diskgroup on node: rac2. The ASM instance on node rac2 is not started.
    Copying database files
    DBCA_PROGRESS : 1%
    DBCA_PROGRESS : 3%
    DBCA_PROGRESS : 9%
    DBCA_PROGRESS : 15%
    DBCA_PROGRESS : 21%
    DBCA_PROGRESS : 27%
    DBCA_PROGRESS : 30%
    Creating and starting Oracle instance
    DBCA_PROGRESS : 32%
    DBCA_PROGRESS : 36%
    DBCA_PROGRESS : 40%
    DBCA_PROGRESS : 44%
    DBCA_PROGRESS : 45%
    DBCA_PROGRESS : 48%
    DBCA_PROGRESS : 50%
    Creating cluster database views
    DBCA_PROGRESS : 52%
    DBCA_PROGRESS : 70%
    Completing Database Creation
    Failed to start listeners on nodes "[rac1, rac2]" of cluster database "mydb", "CRS-1028: Dependency
    analysis failed because of:
    CRS-0223: Resource 'ora.rac2.LISTENER_RAC2.lsnr' has placement error.".
    DBCA_PROGRESS : 73%
    DBCA_PROGRESS : 76%
    DBCA_PROGRESS : 79%
    ORA-01078: failure in processing system parameters
    ORA-01078: failure in processing system parameters
    ORA-01565: error in identifying file '+ORADG/mydb/spfilemydb.ora'
    ORA-17503: ksfdopn:2 Failed to open file +ORADG/mydb/spfilemydb.ora
    ORA-15056: additional error message
    ORA-17503: ksfdopn:DGOpenFile05 Failed to open file +ORADG/mydb/spfilemydb.ora
    ORA-17503: ksfdopn:2 Failed to open file +ORADG/mydb/spfilemydb.ora
    ORA-15173: entry 'spfilemydb.ora' does not exist in directory 'mydb'
    ORA-06512: at line 4
    ORA-01034: ORACLE not available
    DBCA_PROGRESS : 80%
    ORA-01034: ORACLE not available
    ORA-01034: ORACLE not available
    ORA-01034: ORACLE not available
    DBCA_PROGRESS : 81%
    ORA-01034: ORACLE not available
    DBCA_PROGRESS : 90%
    Enterprise manager configuration failed due to the following error -
    Invalid username/password.
    Refer to the log file at /opt/ora/product/10.2.0/db_1/cfgtoollogs/dbca/mydb/emConfig.log for more
    details.
    You can retry configuring this database with Enterprise Manager later by manually running
    /opt/ora/product/10.2.0/db_1/bin/emca script.
    DBCA_PROGRESS : 99%
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    PRKP-1001 : Error starting instance mydb1 on node rac1
    CRS-1028: Dependency analysis failed because of:
    CRS-0223: Resource 'ora.mydb.mydb1.inst' has placement error.
    PRKP-1001 : Error starting instance mydb2 on node rac2
    CRS-1028: Dependency analysis failed because of:
    CRS-0223: Resource 'ora.mydb.mydb2.inst' has placement error.
    DBCA_PROGRESS : 100%
    Database creation complete. Check the logfiles at
    /opt/ora/product/10.2.0/db_1/cfgtoollogs/dbca/mydb for details.
    Database Information:
    Global Database Name:mydb
    System Identifier(SID) Prefix:mydb
    it should be run netca before running dbca?

    this time i run netca first,and then run dbca to configure the ASM,after that i run dbca to create database
    listener and asm instance is online,but when i create DB ,still have error
    Copying database files
    DBCA_PROGRESS : 1%
    DBCA_PROGRESS : 3%
    DBCA_PROGRESS : 9%
    DBCA_PROGRESS : 15%
    DBCA_PROGRESS : 21%
    DBCA_PROGRESS : 27%
    DBCA_PROGRESS : 30%
    Creating and starting Oracle instance
    DBCA_PROGRESS : 32%
    DBCA_PROGRESS : 36%
    DBCA_PROGRESS : 40%
    DBCA_PROGRESS : 44%
    DBCA_PROGRESS : 45%
    DBCA_PROGRESS : 48%
    DBCA_PROGRESS : 50%
    Creating cluster database views
    DBCA_PROGRESS : 52%
    DBCA_PROGRESS : 70%
    Completing Database Creation
    DBCA_PROGRESS : 73%
    DBCA_PROGRESS : 76%
    DBCA_PROGRESS : 79%
    ORA-01078: failure in processing system parameters
    ORA-01078: failure in processing system parameters
    ORA-01565: error in identifying file '+ORADG/mydb/spfilemydb.ora'
    ORA-17503: ksfdopn:2 Failed to open file +ORADG/mydb/spfilemydb.ora
    ORA-15056: additional error message
    ORA-17503: ksfdopn:DGOpenFile05 Failed to open file +ORADG/mydb/spfilemydb.ora
    ORA-17503: ksfdopn:2 Failed to open file +ORADG/mydb/spfilemydb.ora
    ORA-15173: entry 'spfilemydb.ora' does not exist in directory 'mydb'
    ORA-06512: at line 4
    ORA-01034: ORACLE not available
    DBCA_PROGRESS : 80%
    ORA-01034: ORACLE not available
    ORA-01034: ORACLE not available
    DBCA_PROGRESS : 89%
    DBCA_PROGRESS : 98%
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    PRKP-1001 : Error starting instance mydb1 on node rac1
    CRS-0215: Could not start resource 'ora.mydb.mydb1.inst'.
    PRKP-1001 : Error starting instance mydb2 on node rac2
    CRS-0215: Could not start resource 'ora.mydb.mydb2.inst'.
    DBCA_PROGRESS : 100%
    following info from my template file
    <MiscParams>
    <databaseType>MULTIPURPOSE</databaseType>
    <maxUserConn>20</maxUserConn>
    <percentageMemTOSGA>40</percentageMemTOSGA>
    <customSGA>false</customSGA>
    <archiveLogMode>false</archiveLogMode>
    <initParamFileName>+ORADG/admin/{DB_UNIQUE_NAME}/pfile/init.ora</initParamFileName>
    </MiscParams>
    <SPfile useSPFile="true">{ORACLE_HOME}/dbs/spfile{SID}.ora</SPfile>
    </InitParamAttributes>
    and dbca create +ORADG in /home/oracle dir (why??)
    [oracle@rac1 ~]$ ls +ORADG/admin/mydb/pfile/init.ora.6132011173958
    +ORADG/admin/mydb/pfile/init.ora.6132011173958
    Edited by: 859340 on 2011-7-12 下午7:25

Maybe you are looking for

  • Runtime dynamic filtering TreeModel

    Hello, Changing a tree during runtime seems to be a problem. I've looked at different threads and now I have the following class which filters a delegated DefaultTreeModel (see SimpleFilteredTreeModel and the corresponding TestFilteredTreeModel class

  • 2 different size displays- different settings

    Hi. New to Mac. Just got a new i5 Mini a week ago. I have a older 19" LCD monitor that has a VGA-mac adaptor on it, and I have a HDMI cable going to my 60" plasma TV-via my HT receiver. I mirror the images and can see both screens ok, but to make the

  • Photo count wrong in library module

    I Have wrong photo count on all my catalogs in the Lightroom 3 in the library module. It always show 0 count on the top level folders. This creates problem on photo search. I have tried all resources and could not find a solution. Please help!

  • Draft Folder Not Saving Emails

    I have a mobile Me account and I have my email syncing up to 3 computers. Ever since I got the 10.6 (the others are 10.5) if I make changes to an email in Mail, save it to the Draft folder, the email disappears within a day. I can still make changes

  • What changed in the Find/Change Object behavior?

    In Indesign CS4 all graphics in a document could be centered through the Find/Change feature (Object tab) by leaving the Find field blank and setting the Change field to "Fitting Reference Point: Center" (clicking the center button). This no longer w