Oracle 10g Help?Create database error

I am unable to run a script createDB having command create database kmaa.I open up SQL*Plus, connect and login without any trouble as well. When I try to create a database I get the following:
SQL> CREATE DATABASE kmaa;
CREATE DATABASE kmaa
Error at line 1:
ORA-01501: CREATE DATABASE failed
ORA-01100:database already mounted
Any idea?

Hi Pete,
Oracle Express Edition creates a database automatically when you install it and the product is limited to one database instance per machine. Perhaps you are confusing users/schemas with what you may term a database. An Oracle database instance can be broken down into logical units called users or schemas. If you wish to create a database of books, you should create a user called books and then log on as this user and create your database objects. To make things simpler, Oracle XE comes with a browser interface based on Application Express. You can use this to create schemas, database objects and applications (forms reports etc) to access and manage those objects. Further to this you should RTFM.
Regards
Andre

Similar Messages

  • Newly installed oracle 10g express edition database

    Hai to all
    I have fedora 15 operating system with oracle 10g express edition database installed .. I already have working knowledge in mysql database .. my question is that when i opened oracle database via sql developer , then by expanding tables tab on left side .. I can able to see some table that are created by default as the following:
    AQ$_INTERNET_AGENT_PRIVS
    DEF$_AQCALL
    LOGMNR_AGE_SPILLS$
    My question is that . Can i drop all these tables ??? . By doing so, will that create any problems ..
    Any idea will help me ..
    thanks in advance to allllllll

    If You wont to see how Oracle drop tables
    - create Youre schema
    create user test_user ... ;
    -create table
    create table test_user.test_table ... ;
    drop table
    table test_user.test_table ;
    Regards,
    Pavel
    Edited by: Pavel on May 22, 2012 10:26 PM

  • Oracle 10g help file

    Hi,
    Can anyone send me oracle 10g help file. which file has information about the exceptions.
    Uttam SIngh

    Pavan Kumar wrote:
    Hi,
    Are you referring to PL/SQL Exceptions or Error Messages.
    With respect to PL/SQL Exceptions -
    Refer to : http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28370/errors.htm
    and
    http://download.oracle.com/docs/cd/B10500_01/appdev.920/a96590/adg10pck.htm
    - Pavan Kumar NPavan
    One book is of 11g, another of 9i, neither is of 10g whicj is of OP's version.2ndly, even PL exceptions are listed in the error book given already Orionnet.
    Aman....

  • About spfile creating in oracle 10g while creating a new database

    hi everyone,
    i had this problem while i was creating a new database in oracle 10g.when running the database script, it gives an error about invalid option for create temporary tablespace. is it necessary to have an spfile created in 10g. when the script was not working,we tried to create spfile which gives error tht it does not match the parameter db_name. its taking the default db_name=orcl itself..tis not taking our new db name.
    im creating it manually through sql prompt not through DBCA.the problem is that its still accepting the default db name. please send me the solution with syntaxes.
    thanx

    first of all, thanx for giuding me as im a student doing a course in this
    what abt the creation of spfile.. in a documentation for steps in creating database, they have mentioned it as recommended in creating spfile.here are some notes regarding this ....for oracle 10g
    Step 5: Create a Server Parameter File (Recommended)
    Oracle recommends that you create a server parameter file as a dynamic means of maintaining initialization parameters. The server parameter file is discussed in "Managing Initialization Parameters Using a Server Parameter File".
    The following script creates a server parameter file from the text initialization parameter file and writes it to the default location. The script can be executed before or after instance startup, but after you connect as SYSDBA. The database must be restarted before the server parameter file takes effect.
    -- create the server parameter file
    CREATE SPFILE='/u01/oracle/dbs/spfilemynewdb.ora' FROM
    PFILE='/u01/oracle/admin/initmynewdb/scripts/init.ora';
    SHUTDOWN
    -- the next startup will use the server parameter file
    EXIT
    the error : db_name does not match with the parameter.
    its still taking the default orcl database name

  • Oracle 10G installation problem, and errors on SOLARIS 10 x86

    HI.
    I installed the last version of oracle 10g on a x86 SOLARIS 10 system.
    When the installer arrived at Configuration assistants, the window is stopping, and I can't see forward. But when I look at the installAction.log, the installation is checked as OK (?).
    When I launch sqlplus, and startup inside, it is said the ora-00205 error (problem with control files), and in the end, I'm really suprised there's no the database I told the installer to create at the beginning. But should I be surprised? As I didn't see really the end of the installation, and the installer didn't propose me the PATH where to install the DB, well, I guess there's something wrong.
    Could anybody tell me how to solve these problems, please?
    Thank you :)

    Two options:
    1. Create database using DBCA - execute $ORACLE_HOME/bin/dbca
    2. Create database manually (without DBCA)

  • Oracle distributed doc capture - database error

    hi all,
    i work at project ( capture , archive ) and i implement the ODDC ( instalation and integration )
    i do all configure include scanning profiles ( the last step )
    then when i do test the system i find that there is no data saved upon scanning and after commit else data in the commit table i build and mapping with the index fields and ECAudit table , but no data in tables like EcBatches and more,
    i see more than one column with type blob ( i mean column in capture system core tables like ECBatches)in many tables ( these tables not contain any data ! )
    i use the evaluation period license
    oracle 10g release 2
    win server 2003 stander edition R2 sp2
    any Idea please ??!!!!!

    its started !!!, but is there any blob field in the capture system usual database ??
    i mean the system database that the capture build it ??? is there any blob field ..... any idea please ??
    what about the check integrity utility is it stable ? what can do for me ?
    i tired with this problem ... any one can help me please ?
    is there any data must add to the database before the commit operation ??
    i dont have any data before and not all tables collect data just the ECAUDIT and my commit tables where the index fields saved i name it ( dbcommit ) with this tables
    database info
    user: capture
    password: capture
    database: capture
    commit table:
    DBCOMMIT
    column name: DataType size description
    PERMIT_ID integer
    DOC_TYPE varchar2 500 ( from 1 to 14 from pick list)
    AREA_ID integer default = 09
    SCAN_DATE date
    USER_ID integer
    DOC_PATH varchar2 500 document path on capture server
    INDEX_DATE Date
    when i do select statment like :
    select * from ECBATCHES;
    i get the error SP2-0678
    its mean :
    The "SP2" error messages are messages issued by SQL*Plus. The SP2-0678 error message text is "Column or attribute type can not be displayed by SQL*Plus." What you probably tried to do is to dump a binary data type, i.e. BLOB, to the screen in SQL*Plus. The problem is that SQL*Plus can only handle text data. It cannot handle binary data. Therefore, you are getting an error message telling you that this data type can not be displayed in your SQL*Plus session. Try your SELECT statement again but eliminate the BLOB column(s) from your query.
    the question is why there is some column type " BLOB " in the table like " ECBATCHES " and the other column is not blob its varchar2 and integer .... and these column empty !!! there is error somewhere but i tired re install it in new machine and database but nothing change !
    any IDEA please :(
    Edited by: yos on Nov 21, 2008 3:56 AM

  • Connect oracle 10G  to access database

    Dear Sir,
    I try to connect oracle(10G) with Access.
    First step : I created Access ODBC
    Second Step: I updated listener , tnsnames , inithsodbc files
    Third step : I am testing by the command line
    'lsnrctl start LISTENERtest'
    but it doesn'yt start and the log file shows the following:
    TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Production on 20-MAY-2008 12:06:23
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    System parameter file is E:\oracle\product\10.2.0\db_2\network\admin\listener.ora
    Log messages written to E:\oracle\product\10.2.0\db_2\network\log\listenertest.log
    Trace information written to E:\oracle\product\10.2.0\db_2\network\trace\listenertest.trc
    Trace level is currently 0
    Started with pid=2328
    TNS-01150: The address of the specified listener name is incorrect
    could you help me what is the problem?

    The following are the lines I added to tnsnames file:
    test
    =
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1522))
    (CONNECT_DATA=(SID=test))
    (HS=OK)
    And the following are the lines I added to listener file:
    LISTENERtest =
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1522))
    (ADDRESS=(PROTOCOL=ipc)(KEY=PNPKEY)))
    SID_LIST_LISTENERtest=
    (SID_LIST=
    (SID_DESC=
    (SID_NAME=test)
    (ORACLE_HOME=E:\oracle\product\10.2.0\db_2)
    (PROGRAM=hsodbc)
    Where is the error?

  • Create database error during instalation

    I install Oracle Server 8.0.5 on Linux (kernel 2.0.34)
    I can't create database during Oracle 8.0.5 Instalation.
    The error is ORA-03113 end of communication channel.
    I get this message after "connect internal" and
    "startup nomount" in svrmgrl.
    Help!
    null

    anybody can help ? Tks

  • Unable to create database error

    Hello all-
    I've been working on a project in Robohelp7/HTML for about a
    week. I come in today and try to open my project and receive the
    error "Unable to create database. Check that the directory is not
    read-only.". I've done the obvious of checking the folders and
    files within and they are not marked read only. When I create a new
    project, I receive the same error. I'm stuck at a standstill and
    can't figure out why Robohelp has decided to deny me access to my
    project or the ability to create new ones. I went so far as to
    uninstall and reinstall, to no avail.
    Has anyone encountered this? Any help would be greatly
    appreciated.
    Thanks

    There is a topic on Opening RoboHelp Projects on my site. Rh allows you to browse to either an XPJ or HHP file but that is only as good as the last time you generated an output.
    When you open with an HHP you get an option to use the XPJ or not, in which case one is created. Either way there should be an XPJ. Not sure how you have lost it.
    Backup?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Phase Create Database Error in ECC 6.0 EHP5 Installation on SuSe10/Oracle11

    Hi,
    I have following  error ecnounter During Create Databse Phase. Have applied the latest patch after Oracle Installtion.
    /oracle file system has the permissions 755.
    Environment : ECC 6.0 EHP5 Installation on SuSe10/Oracle11.
    Please advise
    sapinst_log:-
    INFO 2011-08-27 20:36:38.900
    Creating file /install/dev_sap_kernel_test_27_Aug_2011_20_36_38.
    INFO 2011-08-27 20:36:38.901
    Removed file /install/dev_sap_kernel_test_27_Aug_2011_20_36_38.
    INFO 2011-08-27 20:36:38.908
    Working directory changed to /install/sapinst_exe.26397.1314448526.
    INFO 2011-08-27 20:36:38.915
    Working directory changed to /Media/IM_LINUX_ORACLE/IM_LINUX_X86_64.
    INFO 2011-08-27 20:36:38.927
    Creating file /install/dev_sap_kernel_test_27_Aug_2011_20_36_38.
    INFO 2011-08-27 20:36:38.927
    Removed file /install/dev_sap_kernel_test_27_Aug_2011_20_36_38.
    INFO 2011-08-27 20:36:38.933
    Real group ID set to 1001.
    INFO 2011-08-27 20:36:39.497
    Creating file /install/sapinst_instdir/x.
    INFO 2011-08-27 20:36:39.498
    Removed file /install/sapinst_instdir/x.
    INFO 2011-08-27 20:36:39.510
    Authorizations set for /install/sapinst_instdir.
    INFO 2011-08-27 20:36:39.510
    Working directory changed to /install/sapinst_exe.26397.1314448526.
    INFO 2011-08-27 20:36:39.543
    Working directory changed to /Media/IM_LINUX_ORACLE/IM_LINUX_X86_64.
    INFO 2011-08-27 20:37:58.173
    Creating file /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/x.
    INFO 2011-08-27 20:37:58.174
    Removed file /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/x.
    INFO 2011-08-27 20:38:02.167
    Creating file /install/sapinst_instdir/x.
    INFO 2011-08-27 20:38:02.168
    Removed file /install/sapinst_instdir/x.
    INFO 2011-08-27 20:38:02.172
    Authorizations set for /install/sapinst_instdir.
    INFO 2011-08-27 20:38:02.190
    Removed file /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/dev_sap_kernel.
    INFO 2011-08-27 20:38:02.192
    Removed file /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/dev_sap_kernel.
    INFO 2011-08-27 20:38:02.198
    Copied file '/Media/IM_LINUX_ORACLE/IM_LINUX_X86_64/dev_sap_kernel' to '/install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/dev_sap_kernel'.
    INFO 2011-08-27 20:38:02.217
    Authorizations set for /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/dev_sap_kernel.
    INFO 2011-08-27 20:38:02.217
    Removed file /Media/IM_LINUX_ORACLE/IM_LINUX_X86_64/dev_sap_kernel.
    INFO 2011-08-27 20:38:04.407
    Copied file '/install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/keydb.xml' to '/install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/keydb.3.xml'.
    INFO 2011-08-27 20:38:06.213
    Copied file '/install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/statistic.xml' to '/install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/statistic.2.xml'.
    INFO 2011-08-27 20:39:33.662
    Working directory changed to /install/sapinst_exe.26397.1314448526.
    INFO 2011-08-27 20:39:33.670
    Working directory changed to /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL.
    INFO 2011-08-27 20:39:33.674
    Working directory changed to /install/sapinst_exe.26397.1314448526.
    INFO 2011-08-27 20:39:33.686
    Working directory changed to /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL.
    INFO 2011-08-27 20:39:34.589
    Working directory changed to /install/sapinst_exe.26397.1314448526.
    INFO 2011-08-27 20:39:34.600
    Working directory changed to /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL.
    INFO 2011-08-27 20:39:39.720
    Working directory changed to /install/sapinst_exe.26397.1314448526.
    INFO 2011-08-27 20:39:39.733
    Working directory changed to /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL.
    INFO 2011-08-27 20:39:41.685
    Copied file '/install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/inifile.xml' to '/install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/inifile.2.xml'.
    INFO 2011-08-27 20:39:51.367
    Execute step createDatabase of component |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|onehost|0|NW_CreateDBandLoad|ind|ind|ind|ind|createdbandload|0|NW_CreateDB|ind|ind|ind|ind|createdb|0|NW_OraDBCheck|ind|ind|ind|ind|0|0|NW_OraDBMain|ind|ind|ind|ind|0|0|NW_OraDBStd|ind|ind|ind|ind|std|0|NW_OraDbBuild|ind|ind|ind|ind|5|0
    INFO 2011-08-27 20:39:57.971
    Working directory changed to /install/sapinst_exe.26397.1314448526.
    INFO 2011-08-27 20:39:58.1
    Working directory changed to /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL.
    INFO 2011-08-27 20:39:58.26
    Working directory changed to /install/sapinst_exe.26397.1314448526.
    INFO 2011-08-27 20:39:58.71
    Working directory changed to /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL.
    INFO 2011-08-27 20:40:00.256
    Working directory changed to /install/sapinst_exe.26397.1314448526.
    INFO 2011-08-27 20:40:00.278
    Working directory changed to /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL.
    ERROR 2011-08-27 20:40:08.434
    CJS-00084  SQL statement or script failed. DIAGNOSIS: Error message: ORA-01501: CREATE DATABASE failed
    ORA-00200: control file could not be created
    ORA-00202: control file: '/oracle/JE1/origlogA/cntrl/cntrlJE1.dbf'
    ORA-27041: unable to open file
    Linux-x86_64 Error: 13: Permission denied
    Additional information: 2
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    . SOLUTION: For more information, see ora_sql_results.log and the Oracle documentation.
    ERROR 2011-08-27 20:40:08.437
    MUT-03025  Caught ESAPinstException in module call: .
    ERROR 2011-08-27 20:40:08.585
    FCO-00011  The step createDatabase with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|onehost|0|NW_CreateDBandLoad|ind|ind|ind|ind|createdbandload|0|NW_CreateDB|ind|ind|ind|ind|createdb|0|NW_OraDBCheck|ind|ind|ind|ind|0|0|NW_OraDBMain|ind|ind|ind|ind|0|0|NW_OraDBStd|ind|ind|ind|ind|std|0|NW_OraDbBuild|ind|ind|ind|ind|5|0|createDatabase was executed with status ERROR ( Last error reported by the step: SQL statement or script failed. DIAGNOSIS: Error message: ORA-01501: CREATE DATABASE failed
    ORA-00200: control file could not be created
    ORA-00202: control file: '/oracle/JE1/origlogA/cntrl/cntrlJE1.dbf'
    ORA-27041: unable to open file
    Linux-x86_64 Error: 13: Permission denied
    Additional information: 2
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    . SOLUTION: For more information, see ora_sql_results.log and the Oracle documentation.).
    INFO 2011-08-27 20:40:09.446
    Creating file /install/sapinst_instdir/ERPEhP5/AS-ABAP/ORA/CENTRAL/__instana_tmp.xml.

    ora_sql results log:::
    2011-08-27, 19:40:31 SAPINST ORACLE start logging for
    CREATE DATABASE JE1 CONTROLFILE REUSE  MAXLOGFILES 255 MAXLOGMEMBERS 3 MAXLOGHISTORY 1000 MAXDATAFILES 254 MAXINSTANCES 50 NOARCHIVELOG CHARACTER SET UTF8 NATIONAL CHARACTER SET UTF8 DATAFILE '/oracle/JE1/sapdata1/system_1/system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M EXTENT MANAGEMENT LOCAL DEFAULT TEMPORARY TABLESPACE PSAPTEMP TEMPFILE '/oracle/JE1/sapdata1/temp_1/temp.data1' SIZE 1400M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M UNDO TABLESPACE PSAPUNDO DATAFILE '/oracle/JE1/sapdata1/undo_1/undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M SYSAUX DATAFILE '/oracle/JE1/sapdata1/sysaux_1/sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    LOGFILE GROUP 1 ('/oracle/JE1/origlogA/log_g11m1.dbf',
    '/oracle/JE1/mirrlogA/log_g11m2.dbf') SIZE 50M  REUSE ,
    GROUP 2 ('/oracle/JE1/origlogB/log_g12m1.dbf',
    '/oracle/JE1/mirrlogB/log_g12m2.dbf') SIZE 50M  REUSE ,
    GROUP 3 ('/oracle/JE1/origlogA/log_g13m1.dbf',
    '/oracle/JE1/mirrlogA/log_g13m2.dbf') SIZE 50M  REUSE ,
    GROUP 4 ('/oracle/JE1/origlogB/log_g14m1.dbf',
    '/oracle/JE1/mirrlogB/log_g14m2.dbf') SIZE 50M  REUSE
    exit;
    Output of SQL executing program:
    SQL*Plus: Release 11.2.0.2.0 Production on Sat Aug 27 19:40:31 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    CREATE DATABASE JE1 CONTROLFILE REUSE  MAXLOGFILES 255 MAXLOGMEMBERS 3 MAXLOGHISTORY 1000 MAXDATAFILES 254 MAXINSTANCES 50 NOARCHIVELOG CHARACTER SET UTF8 NATIONAL CHARACTER SET UTF8 DATAFILE '/oracle/JE1/sapdata1/system_1/system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M EXTENT MANAGEMENT LOCAL DEFAULT TEMPORARY TABLESPACE PSAPTEMP TEMPFILE '/oracle/JE1/sapdata1/temp_1/temp.data1' SIZE 1400M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M UNDO TABLESPACE PSAPUNDO DATAFILE '/oracle/JE1/sapdata1/undo_1/undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M SYSAUX DATAFILE '/oracle/JE1/sapdata1/sysaux_1/sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-00200: control file could not be created
    ORA-00202: control file: '/oracle/JE1/origlogA/cntrl/cntrlJE1.dbf'
    ORA-27041: unable to open file
    Linux-x86_64 Error: 13: Permission denied
    Additional information: 2
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SAPINST: End of output of SQL executing program /oracle/JE1/112_64/bin/sqlplus.
    SAPINST found errors.
    SAPINST The current process environment may be found in sapinst_ora_environment.log.
    2011-08-27, 19:40:31 SAPINST ORACLE stop logging
    2011-08-27, 20:27:43 SAPINST ORACLE start logging for
    SHUTDOWN IMMEDIATE;
    exit;
    Output of SQL executing program:
    SQL*Plus: Release 11.2.0.2.0 Production on Sat Aug 27 20:27:43 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORA-01507: database not mounted
    ORACLE instance shut down.
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SAPINST: End of output of SQL executing program /oracle/JE1/112_64/bin/sqlplus.
    SAPINST found errors.
    SAPINST The current process environment may be found in sapinst_ora_environment.log.
    2011-08-27, 20:27:50 SAPINST ORACLE stop logging
    ================================================================================
    2011-08-27, 20:27:50 SAPINST ORACLE start logging for
    STARTUP NOMOUNT;
    exit;
    Output of SQL executing program:
    SQL*Plus: Release 11.2.0.2.0 Production on Sat Aug 27 20:27:50 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to an idle instance.
    ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
    ORACLE instance started.
    Total System Global Area 2338463744 bytes
    Fixed Size              2228600 bytes
    Variable Size           1174408840 bytes
    Database Buffers      1140850688 bytes
    Redo Buffers             20975616 bytes
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SAPINST: End of output of SQL executing program /oracle/JE1/112_64/bin/sqlplus.
    2011-08-27, 20:27:52 SAPINST ORACLE stop logging
    ================================================================================
    2011-08-27, 20:27:52 SAPINST ORACLE start logging for
    CREATE DATABASE JE1 CONTROLFILE REUSE  MAXLOGFILES 255 MAXLOGMEMBERS 3 MAXLOGHISTORY 1000 MAXDATAFILES 254 MAXINSTANCES 50 NOARCHIVELOG CHARACTER SET UTF8 NATIONAL CHARACTER SET UTF8 DATAFILE '/oracle/JE1/sapdata1/system_1/system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M EXTENT MANAGEMENT LOCAL DEFAULT TEMPORARY TABLESPACE PSAPTEMP TEMPFILE '/oracle/JE1/sapdata1/temp_1/temp.data1' SIZE 1400M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M UNDO TABLESPACE PSAPUNDO DATAFILE '/oracle/JE1/sapdata1/undo_1/undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M SYSAUX DATAFILE '/oracle/JE1/sapdata1/sysaux_1/sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    LOGFILE GROUP 1 ('/oracle/JE1/origlogA/log_g11m1.dbf',
    '/oracle/JE1/mirrlogA/log_g11m2.dbf') SIZE 50M  REUSE ,
    GROUP 2 ('/oracle/JE1/origlogB/log_g12m1.dbf',
    '/oracle/JE1/mirrlogB/log_g12m2.dbf') SIZE 50M  REUSE ,
    GROUP 3 ('/oracle/JE1/origlogA/log_g13m1.dbf',
    '/oracle/JE1/mirrlogA/log_g13m2.dbf') SIZE 50M  REUSE ,
    GROUP 4 ('/oracle/JE1/origlogB/log_g14m1.dbf',
    '/oracle/JE1/mirrlogB/log_g14m2.dbf') SIZE 50M  REUSE
    exit;
    Output of SQL executing program:
    SQL*Plus: Release 11.2.0.2.0 Production on Sat Aug 27 20:27:52 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    CREATE DATABASE JE1 CONTROLFILE REUSE  MAXLOGFILES 255 MAXLOGMEMBERS 3 MAXLOGHISTORY 1000 MAXDATAFILES 254 MAXINSTANCES 50 NOARCHIVELOG CHARACTER SET UTF8 NATIONAL CHARACTER SET UTF8 DATAFILE '/oracle/JE1/sapdata1/system_1/system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M EXTENT MANAGEMENT LOCAL DEFAULT TEMPORARY TABLESPACE PSAPTEMP TEMPFILE '/oracle/JE1/sapdata1/temp_1/temp.data1' SIZE 1400M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M UNDO TABLESPACE PSAPUNDO DATAFILE '/oracle/JE1/sapdata1/undo_1/undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M SYSAUX DATAFILE '/oracle/JE1/sapdata1/sysaux_1/sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-00200: control file could not be created
    ORA-00202: control file: '/oracle/JE1/origlogA/cntrl/cntrlJE1.dbf'
    ORA-27041: unable to open file
    Linux-x86_64 Error: 13: Permission denied
    Additional information: 2
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SAPINST: End of output of SQL executing program /oracle/JE1/112_64/bin/sqlplus.
    SAPINST found errors.
    SAPINST The current process environment may be found in sapinst_ora_environment.log.
    2011-08-27, 20:27:52 SAPINST ORACLE stop logging
    ================================================================================
    2011-08-27, 20:40:00 SAPINST ORACLE start logging for
    SHUTDOWN IMMEDIATE;
    exit;
    Output of SQL executing program:
    SQL*Plus: Release 11.2.0.2.0 Production on Sat Aug 27 20:40:00 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORA-01507: database not mounted
    ORACLE instance shut down.
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SAPINST: End of output of SQL executing program /oracle/JE1/112_64/bin/sqlplus.
    SAPINST found errors.
    SAPINST The current process environment may be found in sapinst_ora_environment.log.
    2011-08-27, 20:40:05 SAPINST ORACLE stop logging
    ================================================================================
    2011-08-27, 20:40:05 SAPINST ORACLE start logging for
    STARTUP NOMOUNT;
    exit;
    Output of SQL executing program:
    SQL*Plus: Release 11.2.0.2.0 Production on Sat Aug 27 20:40:05 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to an idle instance.
    ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance
    ORACLE instance started.
    Total System Global Area 2338463744 bytes
    Fixed Size              2228600 bytes
    Variable Size           1174408840 bytes
    Database Buffers      1140850688 bytes
    Redo Buffers             20975616 bytes
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SAPINST: End of output of SQL executing program /oracle/JE1/112_64/bin/sqlplus.
    2011-08-27, 20:40:07 SAPINST ORACLE stop logging
    ================================================================================
    2011-08-27, 20:40:08 SAPINST ORACLE start logging for
    CREATE DATABASE JE1 CONTROLFILE REUSE  MAXLOGFILES 255 MAXLOGMEMBERS 3 MAXLOGHISTORY 1000 MAXDATAFILES 254 MAXINSTANCES 50 NOARCHIVELOG CHARACTER SET UTF8 NATIONAL CHARACTER SET UTF8 DATAFILE '/oracle/JE1/sapdata1/system_1/system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M EXTENT MANAGEMENT LOCAL DEFAULT TEMPORARY TABLESPACE PSAPTEMP TEMPFILE '/oracle/JE1/sapdata1/temp_1/temp.data1' SIZE 1400M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M UNDO TABLESPACE PSAPUNDO DATAFILE '/oracle/JE1/sapdata1/undo_1/undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M SYSAUX DATAFILE '/oracle/JE1/sapdata1/sysaux_1/sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    LOGFILE GROUP 1 ('/oracle/JE1/origlogA/log_g11m1.dbf',
    '/oracle/JE1/mirrlogA/log_g11m2.dbf') SIZE 50M  REUSE ,
    GROUP 2 ('/oracle/JE1/origlogB/log_g12m1.dbf',
    '/oracle/JE1/mirrlogB/log_g12m2.dbf') SIZE 50M  REUSE ,
    GROUP 3 ('/oracle/JE1/origlogA/log_g13m1.dbf',
    '/oracle/JE1/mirrlogA/log_g13m2.dbf') SIZE 50M  REUSE ,
    GROUP 4 ('/oracle/JE1/origlogB/log_g14m1.dbf',
    '/oracle/JE1/mirrlogB/log_g14m2.dbf') SIZE 50M  REUSE
    exit;
    Output of SQL executing program:
    SQL*Plus: Release 11.2.0.2.0 Production on Sat Aug 27 20:40:08 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    CREATE DATABASE JE1 CONTROLFILE REUSE  MAXLOGFILES 255 MAXLOGMEMBERS 3 MAXLOGHISTORY 1000 MAXDATAFILES 254 MAXINSTANCES 50 NOARCHIVELOG CHARACTER SET UTF8 NATIONAL CHARACTER SET UTF8 DATAFILE '/oracle/JE1/sapdata1/system_1/system.data1' SIZE 350M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M EXTENT MANAGEMENT LOCAL DEFAULT TEMPORARY TABLESPACE PSAPTEMP TEMPFILE '/oracle/JE1/sapdata1/temp_1/temp.data1' SIZE 1400M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M UNDO TABLESPACE PSAPUNDO DATAFILE '/oracle/JE1/sapdata1/undo_1/undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M SYSAUX DATAFILE '/oracle/JE1/sapdata1/sysaux_1/sysaux.data1' SIZE 200M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-00200: control file could not be created
    ORA-00202: control file: '/oracle/JE1/origlogA/cntrl/cntrlJE1.dbf'
    ORA-27041: unable to open file
    Linux-x86_64 Error: 13: Permission denied
    Additional information: 2
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SAPINST: End of output of SQL executing program /oracle/JE1/112_64/bin/sqlplus.
    SAPINST found errors.
    SAPINST The current process environment may be found in sapinst_ora_environment.log.
    2011-08-27, 20:40:08 SAPINST ORACLE stop logging

  • Oracle 10g express Edition Database

    We are using oracle 10g express edition with a temporary storage space for a class using SQL. When creating and using the database, the data is being deleted after 1 or 2 days and students are having to start over, creating tables and inserting data. Any suggestions?

    suggestions?Backups?
    Or, as long as the DDLs and DMLs don't take long, rerunning table create and insert SQLs would probably be much faster than setting up the database(s) in archivelog mode and copying datafile/archivelog files or rman backup files someplace that won't get reimaged every other day.

  • Oracle 10g DB create fails with jave.lang.StackOverflowError

    Hi all,
    wonder if you can help with my issue.
    I'm trying to install oracle 10g on Redhat ES4 on a virtual machine (VMplayer) on a HP Elite Book laptop. I've set swapspace to 4GB and have 1.5 Gb of RAM allocated to the virtual machine.
    I've set the ulimts and maxproc an the soft/hard nproc/nofile to appropraie values for the create.

    I don't think it's a java problem at all.................
    When I run dbca with the silent install I get the message
    "waiting for m_bReaderStarted to be true" - which is never is.
    So it isn't making a connection I suspect.
    The loistenser also won't start.
    10g is installed on linux es4 running on VM Player.
    I think the proble ,ay be to do with when I start dbca (or the listener) it doesn't connect.
    In /etc/hosts I have
    127.0.0.1 localhost.localdomain localhost
    and in the tnsnames.ora and listener.ora files i have the 'HOST = localhost.localdomain' (with post = 1521)
    Is /etc/hosts and the ora files set correctly ?

  • Oracle 10g Enterprise Edition Java Error

    Hi I am a student. I have licences copy of Oracle 10g Enterprise Edition. While using dbconsol i have an error that java.lang.Exception: Exception in sending Request :: null. so what is the solution. Please Help Me.

    Welcome to OTN
    Also notice that when you post new question , Included DB version ( 4 digit ) and OS version .
    Similar thread
    Oracle 10g R2 Enterprise Manager Web Interface doesn't see the database

  • ASO - Create database error

    I have been tried to create ASO database from either esscmd or maxl, but both failed.<BR><BR>For esscmd: copydb "oldApp" "oldDatabase" "newApp" "newDatabase";<BR>for maxl: create database newApp.newDatabase as oldApp.oldDatabase<BR><BR>Both got same error: Operation not supported for aggregate storage applications.<BR><BR>Any helps would be great.<BR>Thanks,<BR>Yan

    This is because you need to do a little bit more then you just did. This is what I used on my local machine (OS X) for my database area51, the script was created by the DBCA. As you can see I point to a pfile before I create the database. In this init.ora file, the db_name has been set (among a lot of other stuff). Therefore I gave you the hint to look into the documentation ;)
    connect SYS/&&sysPassword as SYSDBA
    set echo on
    spool /u01/admin/area51/create/log/CreateDB.log
    startup nomount pfile="/u01/admin/area51/create/init.ora";
    CREATE DATABASE "area51"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    DATAFILE '/u01/oradata/area51/system01.dbf' SIZE 300M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
    EXTENT MANAGEMENT LOCAL
    SYSAUX DATAFILE '/u01/oradata/area51/sysaux01.dbf' SIZE 120M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
    DEFAULT TEMPORARY TABLESPACE TEMP TEMPFILE '/u01/oradata/area51/temp01.dbf' SIZE 20M REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    UNDO TABLESPACE "UNDOTBS1" DATAFILE '/u01/oradata/area51/undotbs01.dbf' SIZE 200M REUSE AUTOEXTEND ON NEXT 5120K MAXSIZE UNLIMITED
    CHARACTER SET WE8ISO8859P15
    NATIONAL CHARACTER SET AL16UTF16
    LOGFILE GROUP 1 ('/u01/oradata/area51/redo01.log') SIZE 10240K,
    GROUP 2 ('/u01/oradata/area51/redo02.log') SIZE 10240K,
    GROUP 3 ('/u01/oradata/area51/redo03.log') SIZE 10240K
    USER SYS IDENTIFIED BY "&&sysPassword" USER SYSTEM IDENTIFIED BY "&&systemPassword";
    spool off

  • Installation of Oracle 10g und 9i Database on one Windows 2003 Srv System

    Hello,
    I would like to install Oracle 9i and 10g database on the same server.
    OS is Windows 2003 Server default.
    I already read that i must do some adjustments (regarding ORACLE_HOME / SIDs ..)
    anyone here who knows something about this ?
    Thank you
    Philip

    Yep.
    Install 9i and when it asks for a port to install the listener pick something other than 1521. (1522 should work).
    Then the Oracle 10g installation should go without a hitch.
    ~Jer

Maybe you are looking for

  • Ios 8.1.3 wont download in my iphone 5

    I've been struggling for weeks now. first, apps wont download and update. so when i checked the web for solutions, some say that i need to update to 8.1.3, iphone's currently running 8.1.2. but when i tried to download it in my iphone, it shows updat

  • My HD crashed.. Can't copy the songs from my ipod to my PC...

    I was very disapointed that itune couldn't synch the files from my ipod back to my PC. The excuses from Apple is completely insignificant. Also, I found that ITUNE is a REAL VIRUS... You just simply CAN'T uninstall it correctly from your PC. I've bee

  • Sql loader (catching record length error)

    Guys is there any command in sqlldr that can catch record length error (less or more than certain length).I am using java to execute my sqlldr and would like to know if it is possible to catch those error. thanks Manohar.

  • Transferring bookmarks to different login

    I am trying to transfer all my bookmarks from firefox in my login (administrative) to my son's login firefox. I go to Bookmarks, "organize bookmarks", backup, and save as as JSON file. I then change to my son's login, enter Firefox and repeat the pro

  • (Drw) Imprimir cierta cantidad de caracteres

    Hola foreros. Tengo esta duda Realice un juego de registro Lo mande a imprimir El texto es grande. Me preguntaba que código coloco con el fin que me muestre hasta cierta cantidad de caracteres y cuando le de clic me muestre el resto? Gracias y espero