Can not create  new database on Oracle 10G release 2 (10.2.0.3) under Linux

I have a server with SO Red Hat Enterprise Linux 4
Oracle Oracle 10G release 2 (10.2.0.1)
After instaling the patch (10.2.0.3) to the data base it doesn´t allow me to create a new data base when the dbca is going to generate the service it disconects it self from oracle and marks
an error that its not conected to oracle.
atte
Rafael Mendoza

Hi Rafael
Did you change your shm values in the kernel ? Please check those values in 2.6 Configuring Kernel Parameters
64 bits: http://download.oracle.com/docs/cd/B19306_01/install.102/b15667/pre_install.htm#i1011296
32 bits: http://download.oracle.com/docs/cd/B19306_01/install.102/b15660/pre_install.htm#sthref264
Note that you have to increase : semmni, semmns,shmmni should be multiplied by # of instances, SHMMAX should be set to avail memory
Can you please give us your values from your server please?
Your physical memory :
grep MemTotal /proc/meminfo
And also the result of
ipcs -l
which release of Linux are working with 32 bits or 64 bits ?

Similar Messages

  • Why i can't not create new database in oracle 10g express

    why i can't not create new database in oracle 10g express?
    should i use oracle 11g standard edition?
    thanks

    In Oracle a schema is what a 'database' is in Sqlserver.
    And if you would have been aware about the limitations of XE, you would have known you can only create *1* (one) database using Oracle XE.
    However, probably you don't need a new database at all, and a schema will suffice.
    Sybrand Bakker
    Senior Oracle DBA

  • How to create new database on Oracle 10g

    Hi All,
    Can any one tell me how to create new database on oracle 10g.
    Thanks in Advance for your help.

    again some confusion here.....
    u said u need a new database in your first post and now you saying u need a new schema..
    one database has many schemas(users)..... ex: scott,sys,system are few of them...
    now it depends you need seperate database for test,dev environment - this is in the case u have many schemas under each database and many tables(objects) under each schema.
    OR
    You just need a separate schema (in same db) for test,dev environment...where in you will have multiple tables in each schema...U need to know the dba credentials of the db to create a new schema.
    ideally u need to have different database...You can create one with out sys/system(oracle users) password as these passwords are db dependent.
    what you need is access to the any machine where server is installed(can be the same mc where you have your dev db or a diff machine) and that will be the machine where your db will be installed (can do it through database configuration assistance),ofcourse you will need windows authentication for this.
    so you login to the same machine or access it from your machine using remote login.
    I hope that is clear.Hope i am not listing things that you already know..Just did it coz of confusion between db and schema
    Message was edited by:
    coolguy

  • Can not create new database

    hi all,
    i am new to oracle, so it may be a very simple question for you, but i couldn't find the answer though i read all the documentation and manual stuff.
    i have already installed trial version of oracle 8.1.7 , though i had some warnings( or errors) which i had ignored. from the programs menu i tried to open enterprise manager, DBA stuido or console.. whatever, i am promted to login a user name and a password. Can someone please tell me what user name and password should i enter at first, or from where i should start.
    i also tried creating a new database from the database config assistant, and faced with "EOF on the communication channel" at the beginning of database creation process, it can't go further.
    i just want to create a sample database to start with .
    Please any help and suggestions ?
    thanks in advance.
    Cheers :)

    okey guys, since no one replied my question
    i gave up, creating a database and now i am using another oracle database server's sample database through network.
    this time i encountered another strange problem. When i am trying to start OAS through the control panel>servies as described in the docs, it can't start saying that : "can't start the OAS on this computer, server didn't throw any error. this may be because of an inner problem of windows or service. See your admin for help"
    any idea what to do or how to start Oracle application server?
    thanks for help
    cheers :)

  • Can we create new tablespace in Oracle Database 10g Express Edition?

    Hi,
    Can we create new tablespace in Oracle Database 10g Express Edition instead of using the default "users" tablespace provided?
    Please advise.
    Thank you.

    Correct. The sum of all user tablespaces is not allowed to exceed 4 GIG.
    You could try shrinking your tablespaces. Theres a script called maxshrink on http://asktom.oracle.com which is useful for this.
    You could compress your tables.
    If you are storing lobs, you could consider storing them as bfiles.
    Or upgrade to Oracle Standard Edition 1. Its not that expensive.

  • How do l create a new database in Oracle 10g Express

    How do l create a new database in Oracle 10g Express, other than the one that is created on installation?

    Hello,
    You cannot create a second XE database on the same server.
    But, Oracle database can support as many Schema as you want.
    "Oracle database" is like "SQL Server Instance" and "Oracle Schema" is like "SQL Server database". I means by this shortcut that for
    the end users accessing to different Schemas looks like accessing to different databases.
    You can have several applications on the same database. Each application has its own Schema and Datafile (Tablespace) structure.
    So on your XE database you can add a new Tablespace and create a new User/Schema as follows:
    sqlplus /nolog
    connect / as sysdba
    create tablespace {color:red}new_tablespace_name{color}
    extent management local autoallocate
    SEGMENT SPACE MANAGEMENT AUTO
    datafile '{color:red}complete_datafile_name{color}' size 100M autoextend on next 10M maxsize unlimited;
    create user {color:red}new_schema_name{color} identified by {color:red}password{color}
    default tablespace {color:red}new_tablespace_name{color}
    temporary tablespace TEMP
    quota unlimited on {color:red}new_tablespace_name{color}
    grant connect, resource to {color:red}new_schema_name{color};Then you can connect to this new User/Schema as you defined it and create your new structure and load datas.
    Hope it can help.
    Best regards,
    Jean-Valentin

  • Updated Mac Air to Mountain Lion and now I can not create new email in Hot Mail

    Updated Mac Air to Mountain Lion and now I can not create new email in Hot Mail

    Greetings,
         What you posted is rather vague. By doesn't work do you mean the applications don't open at all or are you getting a message stating that your product needs activation? If it's product activation then that is something that Microsoft will have to assist you with. If your problem is that the applications simply won't open you may have to uninstall and reinstall Office again. This is common on the Windows platform too. Rarely when you upgrade to a new OS Office sometimes has an issue with the upgrade and won't open correctly. I would suggest merely uninstalling and reinstalling. Nine times out of ten that helps.

  • SQL QUERY to create new schema in Oracle 10g Express

    Can anyone provide the SQL query to create a new schema in Oracle 10g Express edition.

    Can anyone provide a SQl query to create a
    schema/user named 'test' with username as 'system'
    and password as 'manager'system user is created during database creation, it's internal Oracle admin user that shouldn't be used as schema holder.
    In Oracle database, Oracle user is schema holder there's no seperate schema name to be defined other than username.

  • Error when creating a new database on oracle 9i release 2

    hi friend,
    i have a question when i create new database manually then i get error.
    error like this
    create database alauki
    error at line 1:
    ORA-01092 : ORACLE instance terminated. Disconnection forced
    the alert log file is
    Dump file e:\ritesh\alauki\bdump\alert_alauki.log
    Mon Jan 02 06:42:47 2006
    ORACLE V9.2.0.1.0 - Production vsnsta=0
    vsnsql=12 vsnxtr=3
    Windows 2000 Version 5.1 Service Pack 2, CPU type 586
    Mon Jan 02 06:42:47 2006
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    SCN scheme 2
    Using log_archive_dest parameter default value
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up ORACLE RDBMS Version: 9.2.0.1.0.
    System parameters with non-default values:
    processes = 150
    timed_statistics = TRUE
    shared_pool_size = 50331648
    large_pool_size = 8388608
    java_pool_size = 33554432
    control_files = E:\RITESH\DATA\CONTROL01.CTL, E:\RITESH\MIRROR\CONTROL01.CTL
    db_block_size = 8192
    db_cache_size = 25165824
    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 = ALAUKI
    dispatchers = (PROTOCOL=TCP) (SERVICE=ALAUKIXDB)
    job_queue_processes = 10
    hash_join_enabled = TRUE
    background_dump_dest = E:\RITESH\ALAUKI\bdump
    user_dump_dest = E:\RITESH\ALAUKI\udump
    core_dump_dest = E:\RITESH\ALAUKI\cdump
    sort_area_size = 524288
    db_name = ALAUKI
    open_cursors = 300
    star_transformation_enabled= FALSE
    query_rewrite_enabled = FALSE
    pga_aggregate_target = 25165824
    aq_tm_processes = 1
    PMON started with pid=2
    DBW0 started with pid=3
    LGWR started with pid=4
    CKPT started with pid=5
    SMON started with pid=6
    RECO started with pid=7
    CJQ0 started with pid=8
    QMN0 started with pid=9
    Mon Jan 02 06:43:02 2006
    starting up 1 shared server(s) ...
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Mon Jan 02 06:43:07 2006
    alter database mount exclusive
    Mon Jan 02 06:43:08 2006
    ORA-09341: scumnt: unable to mount database
    OSD-04400: unable to acquire internal semaphore for process
    O/S-Error: (OS 183) Cannot create a file when that file already exists.
    Mon Jan 02 06:43:08 2006
    ORA-1102 signalled during: alter database mount exclusive...
    Shutting down instance: further logons disabled
    Shutting down instance (immediate)
    License high water mark = 3
    Waiting for dispatcher 'D000' to shutdown
    Waiting for shared server 'S000' to die
    All dispatchers and shared servers shutdown
    Mon Jan 02 06:46:03 2006
    alter database close normal
    ORA-1507 signalled during: alter database close normal...
    Dump file e:\ritesh\alauki\bdump\alert_alauki.log
    Mon Jan 02 10:50:49 2006
    ORACLE V9.2.0.1.0 - Production vsnsta=0
    vsnsql=12 vsnxtr=3
    Windows 2000 Version 5.1 Service Pack 2, CPU type 586
    Mon Jan 02 10:50:49 2006
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    SCN scheme 2
    Using log_archive_dest parameter default value
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Mon Jan 02 10:51:24 2006
    Starting up ORACLE RDBMS Version: 9.2.0.1.0.
    System parameters with non-default values:
    processes = 150
    timed_statistics = TRUE
    shared_pool_size = 50331648
    large_pool_size = 8388608
    java_pool_size = 33554432
    control_files = E:\RITESH\DATA\CONTROL01.CTL, E:\RITESH\MIRROR\CONTROL01.CTL
    db_block_size = 8192
    db_cache_size = 25165824
    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 = ALAUKI
    dispatchers = (PROTOCOL=TCP) (SERVICE=ALAUKIXDB)
    job_queue_processes = 10
    hash_join_enabled = TRUE
    background_dump_dest = E:\RITESH\ALAUKI\bdump
    user_dump_dest = E:\RITESH\ALAUKI\udump
    core_dump_dest = E:\RITESH\ALAUKI\cdump
    sort_area_size = 524288
    db_name = ALAUKI
    open_cursors = 300
    star_transformation_enabled= FALSE
    query_rewrite_enabled = FALSE
    pga_aggregate_target = 25165824
    aq_tm_processes = 1
    PMON started with pid=2
    DBW0 started with pid=3
    LGWR started with pid=4
    CKPT started with pid=5
    SMON started with pid=6
    RECO started with pid=7
    CJQ0 started with pid=8
    QMN0 started with pid=9
    Mon Jan 02 10:51:34 2006
    starting up 1 shared server(s) ...
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Mon Jan 02 10:51:45 2006
    alter database mount exclusive
    Mon Jan 02 10:51:45 2006
    ORA-00202: controlfile: 'E:\RITESH\DATA\CONTROL01.CTL'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    Mon Jan 02 10:51:48 2006
    ORA-205 signalled during: alter database mount exclusive...
    Shutting down instance (abort)
    License high water mark = 3
    Instance terminated by USER, pid = 604
    can u pls give me a solution of error
    Thanks in advance
    Ritesh Patel
    Message was edited by:
    RITESH

    this is my alert log file
    starting up 1 shared server(s) ...
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Mon Jan 02 14:21:01 2006
    CREATE DATABASE ALAUKI
         USER SYS IDENTIFIED BY *     USER SYSTEM IDENTIFIED BY *     LOGFILE GROUP 1 ('E:\RITESH\DATA\REDO01.LOG') SIZE 100M,
              GROUP 2 ('E:\RITESH\DATA\REDO02.LOG') SIZE 100M,
              GROUP 3 ('E:\RITESH\DATA\REDO03.LOG') SIZE 100M
         MAXLOGFILES 5
         MAXLOGMEMBERS 5
         MAXLOGHISTORY 1
         MAXINSTANCES 1
         CHARACTER SET US7ASCII
         NATIONAL CHARACTER SET AL16UTF16
         DATAFILE 'E:\RITESH\DATA\SYSTEM01.DBF' SIZE 325M REUSE
         EXTENT MANAGEMENT LOCAL
         DEFAULT TEMPORARY TABLESPACE TEMPTS1
              TEMPFILE 'E:\RITESH\DATA\TEMP01.DBF' SIZE 20M REUSE
         UNDO TABLESPACE UNDOTBS1
              DATAFILE 'E:\RITESH\DATA\UNDOTBS01.DBF' SIZE 200M REUSE
              AUTOEXTEND ON NEXT 5120K MAXSIZE UNLIMITED
    Mon Jan 02 14:21:02 2006
    Database mounted in Exclusive Mode.
    Mon Jan 02 14:21:36 2006
    Successful mount of redo thread 1, with mount id 2260372877.
    Assigning activation ID 2260372877 (0x86ba8d8d)
    Thread 1 opened at log sequence 1
    Current log# 1 seq# 1 mem# 0: E:\RITESH\DATA\REDO01.LOG
    Successful open of redo thread 1.
    Mon Jan 02 14:21:36 2006
    SMON: enabling cache recovery
    Mon Jan 02 14:21:36 2006
    create tablespace SYSTEM datafile 'E:\RITESH\DATA\SYSTEM01.DBF' SIZE 325M REUSE
    EXTENT MANAGEMENT LOCAL online
    Mon Jan 02 14:22:11 2006
    Completed: create tablespace SYSTEM datafile 'E:\RITESH\DATA
    Mon Jan 02 14:22:11 2006
    create rollback segment SYSTEM tablespace SYSTEM
    storage (initial 50K next 50K)
    Completed: create rollback segment SYSTEM tablespace SYSTEM
    Mon Jan 02 14:22:16 2006
    CREATE UNDO TABLESPACE UNDOTBS1 DATAFILE 'E:\RITESH\DATA\UNDOTBS01.DBF' SIZE 200M REUSE
              AUTOEXTEND ON NEXT 5120K MAXSIZE UNLIMITED
    Mon Jan 02 14:22:38 2006
    Created Undo Segment _SYSSMU1$
    Created Undo Segment _SYSSMU2$
    Created Undo Segment _SYSSMU3$
    Created Undo Segment _SYSSMU4$
    Created Undo Segment _SYSSMU5$
    Created Undo Segment _SYSSMU6$
    Created Undo Segment _SYSSMU7$
    Created Undo Segment _SYSSMU8$
    Created Undo Segment _SYSSMU9$
    Created Undo Segment _SYSSMU10$
    Undo Segment 1 Onlined
    Undo Segment 2 Onlined
    Undo Segment 3 Onlined
    Undo Segment 4 Onlined
    Undo Segment 5 Onlined
    Undo Segment 6 Onlined
    Undo Segment 7 Onlined
    Undo Segment 8 Onlined
    Undo Segment 9 Onlined
    Undo Segment 10 Onlined
    Successfully onlined Undo Tablespace 1.
    Completed: CREATE UNDO TABLESPACE UNDOTBS1 DATAFILE 'E:\RITE
    Mon Jan 02 14:22:39 2006
    CREATE TEMPORARY TABLESPACE TEMPTS1 TEMPFILE 'E:\RITESH\DATA\TEMP01.DBF' SIZE 20M REUSE
    Completed: CREATE TEMPORARY TABLESPACE TEMPTS1 TEMPFILE 'E:\
    Mon Jan 02 14:22:40 2006
    ALTER DATABASE DEFAULT TEMPORARY TABLESPACE TEMPTS1
    Completed: ALTER DATABASE DEFAULT TEMPORARY TABLESPACE TEMPTS
    Mon Jan 02 14:22:41 2006
    SMON: enabling tx recovery
    Mon Jan 02 14:22:44 2006
    Errors in file e:\ritesh\alauki\udump\rits_ora_804.trc:
    ORA-01501: CREATE DATABASE failed
    ORA-01991: invalid password file 'D:\oracle\ora90\DATABASE\PWDrits.ORA'
    Mon Jan 02 14:22:44 2006
    Error 1991 happened during db open, shutting down database
    USER: terminating instance due to error 1991
    Instance terminated by USER, pid = 804
    ORA-1092 signalled during: CREATE DATABASE ALAUKI
         USER SYS IDENTIFIED BY *     U...

  • To create standby database using oracle 10g standared edition

    my producation database is oracle 10G standard edition .Can i implement a oracle dataguard or standby database using standard edition licenses.if standby database is possiable in standard edition .what are the steps for creating a standby database using oracle 10g standard edition.

    General answer is http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/editions.htm#BABJICBB.
    For Data Guard you cannot :
    - use instance parameters to automatically send archived redo logs
    - use instance parameters to resolve archived redo logs gaps
    - create a logical standby
    - use SQL statements to do switchover / failover
    - use Data Guard Broker.

  • Visual Adminstrator: can not create new users

    Hi,
    I've got a problem with my "Sneak Preview SAP NetWeaver 04 - Full Java Edition with Web AS Java 6.40, MaxDB, and Developer Studio" (NW04 SP15) installation. Whenever I start the visual administrator I can not create a new user. All buttons excepting the Refresh Button are disabled.
    If I use the web (http://..../useradmin) I can create new users.
    Now I want to change Security Policies in the Visual Administrator. But the problem is the same.
    Does anyone know any solution?
    Best Regards,
    tobi

    Hi Tobias,
    In VA => Security Provider there is a change button ("pencil") in the top of the right frame. You should enable other buttons by clicking this one.
    Regards,
    Mike

  • I can not create mysql database

    I installed mariadb and mariadb-client. Whent I type this in command line
    mysql> CREATE DATABASE menagerie;
    a text file was created which name is CREATE and it consist of mysql --help output.
    How can I create mysql database?

    I think the problem is that you took the instructions too literally. There's a system command line, and a MySQL command line; you're likely looking for the second.
    Try running in your terminal:
    $ mysql
    This will bring up a MySQL prompt that will look like:
    mysql>
    inside of which you can run your "CREATE DATABASE" command.

  • I can not create new bookmarks. New bookmarks don't show up in my bookmarks list.

    i have a list of about 20 bookmarks but i can not add new bookmarks to it.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • How to create a new DataBase using Oracle 10g Express Edition???

    Hello, I am new to Oracle, I am used to Microsoft SQL Server (Enterprise Manager).
    Here in Oracle I do not get how do I create a DataBase, and then create tables on it.
    could anyone please explain to me how to do it?

    A SQL Server database is roughly equivalent to an Oracle schema.
    You should rarely need to create a new database. If you do need to create a database, get a 'for fee' edition of Oracle and use the dbca tool (Database Configuration Assistant) to do that. In fact, you are only allowed to have one XE database on the machine.
    However, you can create as many schemas in an existing Oracle database as you need. (One schema, owned by userid SYS, is roughly equal to your 'master catalog'.)
    You can create other schemas simply by
    1) creating a userid that will own the schema (one designated for maintenance of the schema);
    2) grant that userid appropriate privileges, such as 'CREATE TABLE', 'CREATE VIEW' as shown in the SQL Reference manual under the GRANT section;
    3) provide that userid with a quota in one or more tablespaces (see the CREATE USER command in the SQL Reference manual);
    4) create the objects, such as tabels, views, sequences, stored procs and functions, etc. (as in the SQL Reference manual);
    5) create the users who will access the objects, and grant them the CREATE SESSION capability (as in the SQL Reference manual);
    6) grant access (select, update, execute, etc.) on the schema objects to these users (as in the SQL Reference manual);
    7) if desired, create synonyms on the schema objects so the users do not need to use fully qualified syntax such as "SELECT col FROM schema.table;" (as in the SQL Reference manual).
    In case you are interested in looking at the SQL Reference manual, it can be found at http://www.oracle.com/pls/db102/portal.portal_db?selected=1 ;-)

  • Error Creating Database on Oracle 10g Release 2

    I'm having a problem creating a second database on 10g release 2 on Windows server 2003.
    I have created an initialization parameter file on %Oracle_Home%\database\initDB2.ora
    However, whenever I try to run sql command to create a database with the same name as the db_name parameter in the initialization parameter, it gives an error database name 'DB2' does nto matchthe parameter db_name = dbase
    dbase is the first database that was created automatically when I installed Oracle.
    Any solutions? Why is the server not using the parameter file I have created? Why does it seem to use the initialization parameter file that belongs to the first database?
    Cheers

    'startup nomount' with 'pfile=...initDB2.ora' clause? In this case Oracle chooses a server parameter file (spfile) by default and I still assume ORACLE_SID is set to your first database. So automatically spfile from the first database is used. You should try:
    set ORACLE_SID=DB2
    (now in sqlplus) startup nomount pfile=%ORACLE_HOME$\database\initDB2.ora
    Werner

Maybe you are looking for