Create Database

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ni3b007
    New Member
    • Sep 2007
    • 2

    Create Database

    I m having oracle 10g
    while creating database its giving me error

    database not mounted

    this is my p file;

    ############### ############### #############
    # Cache and I/O
    ############### ############### #############
    db_block_size=8 192
    db_file_multibl ock_read_count= 16

    ############### ############### #############
    # Cursors and Library Cache
    ############### ############### #############
    open_cursors=30 0

    ############### ############### #############
    # Database Identification
    ############### ############### #############
    db_domain=""
    db_name=nits

    ############### ############### #############
    # Diagnostics and Statistics
    ############### ############### #############
    background_dump _dest=D:\nits/bdump
    core_dump_dest= D:\nits/cdump
    user_dump_dest= D:\nits/udump

    ############### ############### #############
    # File Configuration
    ############### ############### #############
    control_files=( "D:\nits\disk1\ control01.ctl", "D:\nits\disk1\ control02.ctl", "D:\nits\disk1\ control03.ctl")
    db_recovery_fil e_dest=D:\oracl e\product\10.2. 0/flash_recovery_ area
    db_recovery_fil e_dest_size=214 7483648

    ############### ############### #############
    # Job Queues
    ############### ############### #############
    job_queue_proce sses=10

    ############### ############### #############
    # Miscellaneous
    ############### ############### #############
    compatible=10.2 .0.1.0

    ############### ############### #############
    # Processes and Sessions
    ############### ############### #############
    processes=150

    ############### ############### #############
    # SGA Memory
    ############### ############### #############
    sga_target=2789 21216

    ############### ############### #############
    # Security and Auditing
    ############### ############### #############
    audit_file_dest =D:\nits/adump
    remote_login_pa sswordfile=EXCL USIVE




    and this is my script:


    create database nits
    maxdatafiles 1024
    maxlogfiles 5
    maxlogmembers 5
    maxinstances 1
    datafile 'd:\nits\disk1\ system01.dbf' size 300m
    logfile group 1 ('d:\nits\disk2 \log1A.log') size 10m,
    group 2 ('d:\nits\disk3 \log2A.log') size 10m
    undo tablespace undotbs datafile 'd:\nits\disk3\ undo.dbf' size 50m
    default temporary tablespace temp tempfile 'd:\nits\disk3\ temp.dbf' size 50m;
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    Please find details of database creation here , here and here.
    Also find here.

    Comment

    Working...