DBCA create database statement

Hi,
I am using DBCA for creating the database. But i am looking for the create database SQL statement that has been generated by DBCA.
At the time of creating DB using DBCA i have given the option for "Generating Database scripts".
But however i am not able to see the Create database SQL statement in those scripts location.
Please help me out.
Cheers

Hi;
What give you script path during installation? Please check under \<oracle_home>\admin\<database_name>\scripts
Please review:
http://docs.oracle.com/cd/B28359_01/install.111/b28264/scripts.htm#CIHEIDIA
Ps: By the way you can get script after dbca done.Please see: http://tldp.org/HOWTO/Oracle-7-HOWTO-3.html
Regard
Helios

Similar Messages

  • Specify datafiles in the create database statement-plz help

    hi i have the following create database statement...
    i need to add 2 more datafile and a tablesapce for data named dqdata.. how do i do that...
    create database ABC123
    logfile group 1 ('/retu/oraredo/ABC123/redo01.log') size 500M,
    group 2 ('/retu/oraredo/ABC123/redo02.log') size 500M,
    group 3 ('/retu/oraredo/ABC123/redo03.log') size 500M
    character set WE8ISO8859P1
    national character set utf8
         datafile '/retu/oracle/oradata/dev/ABC123/system01.dbf'
    size 2000M
    autoextend on
    next 100M maxsize unlimited
         extent management local
    sysaux datafile '/retu/oracle/oradata/dev/ABC123/sysaux01.dbf'
    size 2000M
    autoextend on
    next 100M
    maxsize unlimited
    undo tablespace UNDO
    datafile '/retu/oracle/oradata/dev/ABC123/undo01.dbf'
    size 2000M,
         datafile '/retu/oracle/oradata/dev/ABC123/undo02.dbf'
    size 2000M,
         datafile '/retu/oracle/oradata/dev/ABC123/undo03.dbf'
    size 2000M,
    default temporary tablespace temp
    tempfile '/retu/oracle/oradata/dev/ABC123/temp01.dbf'
    size 2000M,
         tempfile '/retu/oracle/oradata/dev/ABC123/temp02.dbf'
    size 2000M,
         tempfile '/retu/oracle/oradata/dev/ABC123/temp03.dbf'
    size 2000M;
    =======================
    THESE ARE THE DATAFILES I NEED AND EACH IS OF 2000M...
    FOR DATA TBALESPACE NAMED DQDATA----
    /retu/oracle/oradata/dev/ABC123/dqdata01.dbf
    /retu/oracle/oradata/dev/ABC123/dqdata02.dbf
    /retu/oracle/oradata/dev/ABC123/dqdata03.dbf
    /retu/oracle/oradata/dev/ABC123/dqdata04.dbf
    /retu/oracle/oradata/dev/ABC123/dqdata05.dbf
    FOR INDEX TABLESPACE NAMED DQINDEX
    /retu/oracle/oradata/dev/ABC123/dqindex01.dbf
    /retu/oracle/oradata/dev/ABC123/dqindex02.dbf
    /retu/oracle/oradata/dev/ABC123/dqindex03.dbf
    /retu/oracle/oradata/dev/ABC123/dqindex04.dbf
    /retu/oracle/oradata/dev/ABC123/system01.dbf
    /retu/oracle/oradata/dev/ABC123/temp01.dbf
    /retu/oracle/oradata/dev/ABC123/temp02.dbf
    /retu/oracle/oradata/dev/ABC123/temp03.dbf
    /retu/oracle/oradata/dev/ABC123/undo01.dbf
    /retu/oracle/oradata/dev/ABC123/undo02.dbf
    /retu/oracle/oradata/dev/ABC123/unod03.dbf
    COULD OU PLEASE LET ME KNOW HOW DO I DO THAT................
    AM VERY VERY CONFUSED I THIS...
    AND I SUPOSE I NEED TO CREATE THEM physically in the unix right?????
    please help
    /retu/oracle/oradata/dev/ABC123/sysaux

    Yes, you are right, there is no clause in CREATE DATABASE command to
    create additional tablespaces except the TEMPORARY and UNDO besides
    SYSTEM and SYSAUX. Here is link that you can refer to:
    http://www.lorentzcenter.nl/awcourse/oracle/server.920/a96521/create.htm#1000691

  • EXTRACT ALL CREATE DATABASE STATEMENTS?

    Hi,
    I manually created a database named demo, using CREATE DATABASE statement as follows:
    CREATE DATABASE demo
    USER SYS IDENTIFIED BY fyicenter
    USER SYSTEM IDENTIFIED BY fyicenter
    LOGFILE GROUP 1 ('/oraclexe/oradata/FYI/redo01.log') SIZE 10M,
    GROUP 2 ('/oraclexe/oradata/demo/redo02.log') SIZE 10M,
    GROUP 3 ('/oraclexe/oradata/demo/redo03.log') SIZE 10M
    MAXLOGFILES 5
    MAXLOGMEMBERS 5
    MAXLOGHISTORY 1
    MAXDATAFILES 100
    MAXINSTANCES 1
    CHARACTER SET US7ASCII
    NATIONAL CHARACTER SET AL16UTF16
    DATAFILE '/oraclexe/oradata/FYI/system01.dbf' SIZE 32M REUSE
    EXTENT MANAGEMENT LOCAL
    SYSAUX DATAFILE '/oraclexe/oradata/FYI/sysaux01.dbf' SIZE 32M REUSE
    DEFAULT TABLESPACE tbs_1
    DEFAULT TEMPORARY TABLESPACE tempts1
    TEMPFILE '/oraclexe/oradata/demo/temp01.dbf'SIZE 20M REUSE
    UNDO TABLESPACE undotbs
    DATAFILE '/oraclexe/oradata/demo/undotbs01.dbf'
    SIZE 20M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED;
    Is is true that the database specification would be saved in a file located somewhere or this database specification(definition) would be recorded in a certain data dictionary table once the CREATE DATABASE statement is executed? If yes, what are the default database creation file name or name of the data dicitonary table?
    In other word, if someone would like to view the database definition of a created database, e.g. demo in this case, how would she or he be able to view all the create database statements as shown above?
    In MySQL, it would be SHOW DATABASE command. Is there any statement in Oracle equivalent to SHOW DATABASE to produre the similiar output?

    alter database backup controlfile to trace;
    a trace file is created in the "udump" folder that contains desired SQL
    but most folks would NEVER do it this way.
    Additional steps are required beyond what you stated.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/create.htm#i1009122
    Last time I did a manual creation it took 2 - 3 HOURS to complete 2 scripts below
    Run Scripts to Build Data Dictionary Views
    Run the scripts necessary to build views, synonyms, and PL/SQL packages:
    CONNECT SYS/password AS SYSDBA
    @/u01/oracle/rdbms/admin/catalog.sql
    @/u01/oracle/rdbms/admin/catproc.sql
    EXIT
    Edited by: sb92075 on Feb 22, 2010 5:17 PM

  • Not creating  the UNDO tablespace in the CREATE DATABASE statement

    Another discrepancy here, between a book and the Self Test CD:
    Book:
    If the UNDO_MANAGEMENT parameter is set to AUTO, but in the CREATE DATABASE you didn’t specify an UNDO tablespace, Oracle wont start.
    Self-Test:
    If the database is set to AUTO undo management, and an UNDO tablespace is not specified in the CREATE DATABASE statement, the Oracle server creates an UNDO tablespace named SYS_UNSDOTS.
    which is correct?
    thanks.
    DA

    Yes thanks, the link you sent explains :
    If no undo tablespace has been specified during database creation or by the UNDO_TABLESPACE initialization parameter, then the first available undo tablespace in the database is chosen. If no undo tablespace is available, then the instance starts without an undo tablespace. You should avoid running in this mode.
    Which seems, to me, to address neither option I listed.
    The book is the Couchman, (9i)
    DA

  • Problem about use dbca create database

    before run dbca
    [oracle@rac1 bin]$ ./crs_stat -t
    Name           Type           Target    State     Host
    ora....SM1.asm application    ONLINE    ONLINE    rac1
    ora....C1.lsnr application    ONLINE    ONLINE    rac1
    ora.rac1.gsd   application    ONLINE    ONLINE    rac1
    ora.rac1.ons   application    ONLINE    ONLINE    rac1
    ora.rac1.vip   application    ONLINE    ONLINE    rac1
    ora....SM2.asm application    ONLINE    ONLINE    rac2
    ora....C2.lsnr application    ONLINE    ONLINE    rac2
    ora.rac2.gsd   application    ONLINE    ONLINE    rac2
    ora.rac2.ons   application    ONLINE    ONLINE    rac2
    ora.rac2.vip   application    ONLINE    ONLINE    rac2when i run dbca to create DB ,it failed
    [oracle@rac2 ~]$ dbca -silent -responseFile /home/oracle/dbca.rsp
    Look at the log file "/opt/ora/product/10.2.0/db_1/cfgtoollogs/dbca/mydb.log" for further details.
    [oracle@rac2 ~]$ cat "/opt/ora/product/10.2.0/db_1/cfgtoollogs/dbca/mydb.log"
    The file path +ORADG/oradata/mydb/system01.dbf is invalid. Please check the permissions.info in my dbca.rsp
    OPERATION_TYPE = "createDatabase"
    GDBNAME = "mydb.oracle.com"
    SID = "mydb"
    NODELIST=rac1,rac2  
    TEMPLATENAME = "/home/oracle/mydb.dbc"
    SYSPASSWORD = "Myss123456"
    SYSTEMPASSWORD = "Myss123456"
    EMCONFIGURATION = "LOCAL"
    SYSMANPASSWORD = "Myss123456"
    DBSNMPPASSWORD = "Myss123456"
    ASM_SYS_PASSWORD="Myss123456"in template file,i put redo file,datafile,spfile and control file in ASM, some diag file and pfile i put in local file system
    and i do not know why dbca will complain no permission
    and i run the same command on another node
    [oracle@rac1 ~]$ dbca -silent -responseFile /home/oracle/dbca.rsp
    Look at the log file "/opt/ora/product/10.2.0/db_1/cfgtoollogs/dbca/mydb0.log" for further details.
    [oracle@rac1 ~]$ cat "/opt/ora/product/10.2.0/db_1/cfgtoollogs/dbca/mydb0.log"
    The directories "[+ORADG/mydb, +ORADG/oradata/mydb]" are not on cluster file system partitions shared across nodes "rac1, rac2".Edited by: 859340 on 2011-7-23 上午12:21

    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.

  • 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.

  • DBCA vs create database

    Hi,
    Is there any difference in creating database through DBCA(GUI/silent mode) and CREATE DATABASE statement.
    Thanks,

    user13310502 wrote:
    Hi,
    Is there any difference in creating database through DBCA(GUI/silent mode) and CREATE DATABASE statement.
    Thanks,No difference between creating database manually and using DBCA.
    in manual creation have to create pfile, creating directories for dump files and database files, running scripts create database script, catalog, catproc manually, and creating sample schemas,password file creation, oratab entry, you have to do.
    in DBCA every thing is automatic.
    one suggestion,
    Total Questions:      8 (8 unresolved) why? mark the thread as answered if you satisfied with the replies.
    Announcement: Forums Etiquette / Reward Points
    Posters, please mind these common-sense rules when participating here:
    - When asking a question, provide all the details that someone would need to answer it. Consulting documentation first is highly recommended.
    - When answering a question, please be courteous and respectful; there are different levels of experience represented here. A poorly worded question is better ignored than flamed - or better yet, help the poster ask a better question.
    - It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts).
    - See more tips in the FAQ
    Thanks for doing your part to make this community as valuable as possible for everyone!
    - OTN

  • Error when creating database

    when installing 9i server i couldn't create database and after installation i tried to create database using DBCA but same errors occured.
    it says null sid name error=2. and then says tns protocol problem.
    what should i do?

    Kim Gabrielsen (guest) wrote:
    : Hi,
    : I have tried to install O8 on Linux several times but all have
    : failed. I follow the doc written by Tom Bissett which I find
    very
    : informative on this subject.
    : I have the correct env setting, have created oracle user as
    : member of the dba group and the install program runs nicely
    until
    : it starts to create the database. It stops with an error
    message.
    : The log files look like this (excerpts):
    : CRDBORCL.LST
    : ORA-06413: Connection not open.
    : LCC-00161: Message 161 not found; product=SVRMGR; facility=MGR
    : ORA-06413: Connection not open.
    : create database "ORCL"
    : ORA-03114: not connected to ORACLE
    : ORA-06413: Connection not open.
    : which is the same results I see if I invoke svrmgr manually
    : and tries to connect as 'internal'. BTW srvmgr prompts me for a
    : password even though I'm logged on as 'Oracle' which is a
    member
    : of DBA.
    : INSTALL.LOG
    : - Entering database actions section.
    : - Creating initORCL.ora file
    : - Creating crdb2ORCL.sql database catalog and file
    creation
    : script
    : - ERROR: The 'CREATE DATABASE' statement for the ORCL
    : database failed.
    : egrep failed to find 'ORA-' error in the file:
    : /u01/app/oracle/admin/ORCL/create/crdbORCL.lst
    : I hope someone can help 'cause I'm stock here...
    : Best regards
    : Kim Gabrielsen
    If you followed the instructions on setting the shared memory
    parameters you may have a problem.
    In the 'shmparam.h' file set SHMMAX to something smaller than 4G.
    I just set mine to 2G or 0x7FFFFFFF and now it works fine.
    I have done the Oracle 8.0.5 installation twice now on 2
    different machines with success(1 Compaq Proliant 1500 -
    RH5.2/2.0.36 kernel and 1 GW2K - RH5.2/2.2.1 kernel) I ran into
    several problems along the way but all problems were solvable.
    Mark
    null

  • Creating database Manually

    Dear Experts
    I want to create database in oracle 10g manually, without using dbca or create database script on sql. I have been searching google, but not getting any related document. Can you please guide me or provide any link where I get steps to create a database by copying files etc

    user832095 wrote:
    Thanks to all of you for your prompt response. But in all these responses, I have to issue CREATE DATABASE scrip. There is another way in which we do not use CREATE DATABASE statement, and create all files and folders manually. I did this exercise in the past but now lost all the stuff. Anyways, thanks for your replyIf you are asking about creating a database than how it can be possible to do it without issuing Create Database command? How can you create the files and folders manually? May be you should refer to the reply of Pierre where he has mentioned to create a database using a backup.
    Aman....

  • Creating Database Manuallu

    Hello,
    I'm trying to create database manually using the Create database statement, but i can't do that, because when i try to log to sqlplus i receive an adapter protocol error, so i can't start the instance after using the oradim utility, sp please if any one can give the steps to create db manually i will be thankful, the OS is windows XP service pack 2, database 10g release 2, thank u.

    if you are installing on windows xp,
    1. please note that you have to create microsoft loop back adapter.
    2. set the environment variables ORACLE_SID and ORACLE_HOME properly and then run the oradim utility.
    3. once the service is created and up and running, proceed with the db creation.
    alternatively, use DBCA tool which is easy to use and takes care of everything.

  • Create database fails

    hi,
    im trying to create a small instance on linux using 9.2.0.1
    & this is the error
    CREATE DATABASE nssan01d
    ERROR at line 1:
    ORA-01092: ORACLE instance terminated. Disconnection forced
    looking at the trace log in udump i see the following
    *** SESSION ID:(8.1) 2002-10-20 20:54:44.077
    ORA-00604: error occurred at recursive SQL level 1
    ORA-30012: undo tablespace 'UNDOTBS' does not exist or of wrong type
    Offending statement at line 5161
    CREATE UNDO TABLESPACE UNDOTBS1 DATAFILE '/opt/Oracle/Database/nssan01d/data/undotbs01.dbf' SIZE
    200M REUSE AUTOEXTEND ON NEXT 5120K MAXSIZE UNLIMITED
    ORA-01501: CREATE DATABASE failed
    ORA-01519: error while processing file '?/rdbms/admin/sql.bsq' near line 5161
    ORA-00604: error occurred at recursive SQL level 1
    ORA-30012: undo tablespace 'UNDOTBS' does not exist or of wrong type
    this is a plain vanilla script generated by dbca..
    anyone run into this before ?
    regards
    pete

    Hi,
    it seems, there is a mismatch between your CREATE DATABASE statement and the the corresponding entry in the init.ora file. Check init.ora and search for UNDO_TABLESPACE= ... . I assume you will find UNDO_TABLESPACE=UNDOTBS (according to the error stack), but the CREATE DATABASE statement contains UNDOTBS1 and this does not match the init.ora entry.
    Regards
    Werner

  • Is db_name is the only parameter for creating database ? [Exper. on 32-bit]

    Because of the discussion present in the following thread, I did few experiments and would you like to share with you. Hope it is a useful information for you guys.
    Re: db_name & memory allocation
    OS: Win XP SP2 or Windows 2000 <b>(32-bit)</b>
    Oracle Version: Oracle 10gR2
    System RAM: 1G
    <b>Attempting to create the database CCC by specifying db_name parameter only</b>
    C:\oracle\product\10.2.0\db_1\database>copy con initCCC.ora
    db_name=CCC
    ^Z
            1 file(s) copied.
    <b> Starting the service </b>
    C:\oracle\product\10.2.0\db_1\database>oradim -new -sid CCC -startmode m
    Instance created.
    C:\oracle\product\10.2.0\db_1\database>set oracle_sid=CCC
    C:\oracle\product\10.2.0\db_1\database>sqlplus "/as sysdba"
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Apr 6 07:50:06 2007
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to an idle instance.
    SQL>
    SQL>
    SQL> startup nomount
    ORACLE instance started.
    Total System Global Area  <b>113246208</b> bytes -- Default SGA size
    Fixed Size                  1247588 bytes
    Variable Size              58721948 bytes
    Database Buffers           50331648 bytes
    Redo Buffers                2945024 bytes
    <b> On seeing dynamic components size, shared pool got
    33m, large pool got 0m, java pool got 25m and buffer cache
    got 50m. Please check the references for these default
    values. </b>
    SQL> select component,current_size from v$sga_dynamic_components;
    COMPONENT                                                        CURRENT_SIZE
    shared pool                                                          33554432
    large pool                                                                  0
    java pool                                                            25165824
    streams pool                                                                0
    DEFAULT buffer cache                                                 50331648
    KEEP buffer cache                                                           0
    RECYCLE buffer cache                                                        0
    DEFAULT 2K buffer cache                                                     0
    DEFAULT 4K buffer cache                                                     0
    DEFAULT 8K buffer cache                                                     0
    DEFAULT 16K buffer cache                                                    0
    COMPONENT                                                        CURRENT_SIZE
    DEFAULT 32K buffer cache                                                    0
    ASM Buffer Cache                                                            0
    13 rows selected.
    <b>Total=109051904 </b>
    SQL>
    create database
    ERROR at line 1:
    ORA-01092: ORACLE instance terminated. Disconnection forced
    <b>Errors in alert log file</b>
    ORA-00604: error occurred at recursive SQL level 1
    <b>ORA-04031: unable to allocate 40 bytes of shared memory ("shared pool","create unique index
    i_proxy_...","sql area","kksol : kksnsg")
    </b>
    Error 1519 happened during db open, shutting down database
    USER: terminating instance due to error 1519
    <b>It was thought that shared_pool memory area is not
    sufficient. Then thought to know how oracle will behave on
    setting sga_target parameter.</b>
    <b>initCCC.ora</b>
    db_name=CCC
    sga_target=113m
    SQL> startup nomount
    ORACLE instance started.
    Total System Global Area  <b>121634816 bytes -- Got around 121m  </b>
    Fixed Size                  1247636 bytes
    Variable Size              54527596 bytes
    Database Buffers           62914560 bytes
    Redo Buffers                2945024 bytes
    <b>Now create database statement got success here.
    Instance got few extra Mbs of memory and oracle can create
    the database.</b>
    <b>Then it was thought that, why to give 121Mb even. Let exactly 113246208 bytes be devoted to the instance.</b>
    initCCC.ora
    db_name=CCC
    sga_target=113246208 -- providing exact number of bytes as obtained in default case
    SQL> startup nomount
    ORACLE instance started.
    Total System Global Area  113246208 bytes
    Fixed Size                  1247588 bytes
    Variable Size              54527644 bytes
    Database Buffers           54525952 bytes
    Redo Buffers                2945024 bytes
    SQL>
    <b> Now create database statement got success here as
    well. Because of sga_target, automatic shared memory
    management enabled and instance was taking care of buffer
    cache, shared pool, large pool, java pool and
    streams_pool. In this case shared pool got 46m (greater
    than default case value). Java pool and Large pool got 4
    mb each and buffer cache got 54m. </b>
    SQL> select component,current_size
      2  from v$sga_dynamic_components;
    COMPONENT                                                        CURRENT_SIZE
    shared pool                                                          46137344
    large pool                                                            4194304
    java pool                                                             4194304
    streams pool                                                                0
    DEFAULT buffer cache                                                 54525952
    KEEP buffer cache                                                           0
    RECYCLE buffer cache                                                        0
    DEFAULT 2K buffer cache                                                     0
    DEFAULT 4K buffer cache                                                     0
    DEFAULT 8K buffer cache                                                     0
    DEFAULT 16K buffer cache                                                    0
    COMPONENT                                                        CURRENT_SIZE
    DEFAULT 32K buffer cache                                                    0
    ASM Buffer Cache                                                            0
    13 rows selected.
    <b>Total=109051904 </b>
    SQL>
    By providing 113246208 bytes (as in default case) of
    memory to SGA by setting sga_target value, Oracle gave
    extra memory to shared_pool and buffer cache than in case
    of default, thus helping create database statement to get
    pass. Oracle always recommends to use automatic shared
    memory management by setting sga_target parameter value.
    Hope this experiment provides few clues about automatic
    shared memory management feature of Oracle 10g. This case
    was conducted on 32-bit Oracle. It is quite possible that
    create database statement might get success in 64-bit
    Platform as by default Oracle will provide 84 Mb to Shared
    pool. But to confirm, it has to be experimented.
    References:
    Shared pool
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams196.htm#sthref804
    Large Pool
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams090.htm#sthref377
    Java Pool
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams087.htm#sthref364
    Buffer Cache
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams043.htm#sthref185

    Hi,
    Good Work Mohammed !!!
    Regards
    Taj

  • 9.2 create Database fails in sql.bsq

    I have installed Oracle 9.2.0.1.0. It appears to have installed correctly.
    I am attempting to create a new database. The script sql.bsq in %ORACLE_HOME%\rdbms\admin appears to be trying to create a cluster around line 1329. I don't use clusters (per se).
    I am rcving an the following error a trace file.
    *** SESSION ID:(10.1) 2003-09-08 16:59:56.000
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01569: data file too small for system dictionary tables
    Offending statement at line 1332
    create cluster c_cobj# (obj# number)
    pctfree 0 pctused 50
    /* space for: update cdef$ set condition = 'col IS NOT NULL' at // */
    size 300
    storage (initial 50K) /* avoid space management during IOR I */
    ORA-01501: CREATE DATABASE failed
    ORA-01519: error while processing file '%ORACLE_HOME%\RDBMS\ADMIN\SQL.BSQ' near line 1332
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01569: data file too small for system dictionary tables
    Can someone point me to an answer for this?
    I have 2 95MB files being created in the system tablespace. and I can provide you either my create database script and/or my init.ora file, if they will assist.
    Thnak you

    Thank you.
    I have changed the create database statement several times to try different possiblities.
    I have put maxsize unlimited. That failed.
    I have put maxsize 200M (with a second file of maxsize 200M) that failed.
    I have added the temp storage syntax. That failed.
    All of these failed in sql.bsq and all used the ORA 1569 error about a data file being too small.
    WHAT DATA FILE? The system tablespace data file(s) have never been increased (by Oracle) from the original size value I provided (whether that size was 500K, or 95M). So what data file is Oracle complaining about?
    In addition, I have seen the following message in the alert_project.log:
    ========================================
    Assigning activation ID 2846189359 (0xa9a5672f)
    Thread 1 opened at log sequence 1
    Current log# 1 seq# 1 mem# 0: D:\DATA\ORACLE\ORADATA\BURKE\LOGS\LOGFILE1.LOG
    Current log# 1 seq# 1 mem# 1: D:\ORACLE\ORADATA\BURKE\LOGS\LOGFILE1.LOG
    Successful open of redo thread 1.
    Tue Sep 09 11:42:39 2003
    SMON: enabling cache recovery
    Tue Sep 09 11:42:39 2003
    create tablespace SYSTEM datafile 'd:\data\Oracle\oradata\burke\system01.dbf' size 500K REUSE
              autoextend on next 500K maxsize 200M,
    'd:\data\Oracle\oradata\burke\system02.dbf' size 500k REUSE
              autoextend on next 500K maxsize 200M
    default storage (initial 10K next 10K) EXTENT MANAGEMENT DICTIONARY online
    Tue Sep 09 11:42:39 2003
    Completed: create tablespace SYSTEM datafile 'd:\data\Oracle
    Tue Sep 09 11:42:39 2003
    create rollback segment SYSTEM tablespace SYSTEM
    storage (initial 50K next 50K)
    Completed: create rollback segment SYSTEM tablespace SYSTEM
    Tue Sep 09 11:42:40 2003
    Errors in file d:\data\oracle\admin\burke\udump\project_ora_1324.trc:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01569: data file too small for system dictionary tables
    ========================================
    The line that says
    default storage (initial 10K next 10K) EXTENT MANAGEMENT DICTIONARY online
    is not in my create database statement. Can it be a portion of my problem?
    I don't see it in the 9.2 SQL manual for create database.
    I appreciate the assistance that has been provided, but I still need some more.
    Thanks you all again.

  • Getting ORA-01031 when attempting to Create Database

    I am attempting to issue a CREATE DATABASE statement via JDBC but I am getting a "ORA-01031: insufficient privileges" error. I am logged in as an administrator and I have no trouble creating tables. I am also receiving the same error when attempting this from SQLPlus. I'm stumped.
    Thanks,
    Pino

    Pino,
    I haven't verified this, but only the SYS user can create a DATABASE in Oracle, and you also need to use a special login (when going via SQL*Plus) which JDBC cannot handle. Hence your failures both via JDBC and SQL*Plus.
    By the way, if you are new to Oracle, but have experience in another database, then the Oracle idea of a DATABASE is probably different than what you're used to. That's probably why you're stumped. If you haven't already done so, I suggest reading the Oracle Database Concepts volume of the Oracle documentation, which is available from:
    http://tahiti.oracle.com
    Good Luck,
    Avi.

  • Creating database on multi cpu machines

    Hello:
    I want to issue the create database statements on a machine that has multiple cpu.
    Would like to to know what are the parameters if any need to specify in the ora file and anything specific needs to be done in the create database statement and if there are other considerations.
    Thanks,

    You can utilize there parameters if you have multiple cpu servers.
    parallel_max_servers integer 5
    parallel_min_percent integer 0
    parallel_min_servers integer 0
    parallel_server boolean FALSE
    parallel_server_instances integer 1
    parallel_threads_per_cpu integer 2
    Regards,
    http://askyogesh.com

Maybe you are looking for

  • Office 2007 Printing error in Outlook

    Getting this error message when trying to print anything from Outlook'' There is a problem with the selected printer. You might need to reinstall this printer. Try again, or use a different printer.". Prints from Word, notepad, and excel fine. Change

  • Sales order for a make to order item

    HI when i create a sales order in crm for a make to order item. its not creating any requirements. like for a make to order item  will have a BOM  and routing attached to it. it creates  a production order or a purchase requisition.  but  its not hap

  • Urgent Please: Mac-Based Home Studio

    hi. sorry if this is not the right category for this post. i'd really appreciate some urgent advice regarding the following. a sponsor has offered me about £5000-6000 for starting a mini (home) but professional audio-video studio, provided that i pro

  • POSDM ISSUE

    Hi Gurus! i am facing a problem inside POSDM. XI is sending the data into POSDM properly, after that I get into  /N/POSDW/PDIS -" Run Pipe dispatcher" and I execute the Tasks 01- Supply BW inmediately ... after that i execute the task 04 - Supply BW

  • NAC 4.9 CAS inband with ASA 8.6

    We are working on a new deployment. The user logs in, the agent pops, and posture assessment happens. The screen for posture assessment closes at the test laptop. It acts like all is working. When we look at the inband user it shows as not having tra