CREATE DATABASE cannot create a control file

I know, it's not supported. Please refrain from reminding me.
I am trying to install a second database on an Oracle 8i installation (8.1.7.4) on a Windows 2003 server. I cannot use DBCA because it doesn't work, so I create the databases manually using the script produced by DBCA.
So I run the following:
connect INTERNAL@TEST
startup nomount pfile="C:\oracle\admin\COHPTEST\pfile\initTEST.ora"
CREATE DATABASE TEST
LOGFILE 'D:\oracle\oradata\TEST\redo01.log' SIZE 1024K,
'D:\oracle\oradata\TEST\redo02.log' SIZE 1024K,
'D:\oracle\oradata\TEST\redo03.log' SIZE 1024K
MAXLOGFILES 32
MAXLOGMEMBERS 2
MAXLOGHISTORY 1
DATAFILE 'D:\oracle\oradata\TEST\system01.dbf' SIZE 264M REUSE AUTOEXTEND ON NEXT 10240K
MAXDATAFILES 254
MAXINSTANCES 1
CHARACTER SET WE8ISO8859P1
NATIONAL CHARACTER SET WE8ISO8859P1;
I receive the following error:
ORA-01501: CREATE DATABASE failed
ORA-00200: controlfile could not be created
ORA-00202: controlfile: 'D:\oracle\oradata\TEST\ctrl01.ctl'
ORA-27040: skgfrcre: create error, unable to create file
OSD-04002: unable to open file
O/S-Error: (OS 3) The system cannot find the path specified.
More information:
1) Added the "Everyone" account to full control on the D: drive, to eliminate the possibility of access issues.
2) The control files, the alertLog, and just about every other file do not exist before, or after the error.
3) I cannot produce more detailed information other than what you see. I do not know of a trace that will track this, which would be helpful.
4) I've tried from both SQLPLUS and SVRMGRL, as well as using INTERNAL, SYS accounts as well as adding sysdba privileges.
I would love to upgrade this instance, but it has other databases on it, and only one box to run this DB on.
SO, just to be sure, telling me to upgrade isn't what I am hoping to learn. I would appreciate some insight on how to display the account svrmgrl runs under, or how to get it to run under another user ID that would be great, or why it can't create the file, or a manual way to create the file (CREATE CONTROLFILE is for existing db's only right? )

Hello, my name is stupid.
I was using a remote file in my TNS_ADMIN environment value. It was pointing to the old database the whole time. The old database was up and down all day, but no one was on it to notice.
Answer: Please check your TNS_ADMIN file, to make sure that you do not have any naming conflicts with the database you are creating, and another database with the same name in your collection of databases.
What happened:
The reason it could not create the files: There was another TEST database, which was what was connected to, and I tried to create the files on another server which did not have a D: Drive.
When I switched to C: it stated the files were already in existence, which I knew wasn't true, and what led me to look at what I was connecting to.
When I checked my TNSNames.Ora file, I noticed the 2nd entry for a database also named "TEST" that a previous DBA had left in there, I realized I was working on the wrong database because it connected to the first database in the TNSNames listed for that SID.
I removed the entry from the TNSNames file, and the database was created successfully (Manually, DBCA still doesn't work).
Thanks for all that tried to help, but introspection was the only solution.

Similar Messages

  • ORA-01103: database name 'ORDB' in control file is not 'ORCL'

    hey there !!
    11.2.0
    win 7 pro
    let me tell u whole scenario for how i reach to this error - ORA-01103: database name 'ORDB' in control file is not 'ORCL'
    -installed new 11g ( test/ practice environment )
    -by default database created 'ORCL' while installation
    -created another instance 'ORDB' ( my aim was to create auxiliary database/duplicate database )
    -done well according to oracle documents and SUCESSFULLY created a duplicated database
    -i thot of sycnronization to auxiliary to target db , so i read docs and learn that you can issue
    DUPLICATE TARGET DATABASE TO dupdb ( its an oracle Doc's exmple so i put my db name and path accordingly )
    SKIP TABLESPACE tools
    LOGFILE
    GROUP 1 ('/duplogs/redo01a.log',
    '/duplogs/redo01b.log') SIZE 200K REUSE,
    GROUP 2 ('/duplogs/redo02a.log',
    '/duplogs/redo02b.log') SIZE 200K REUSE;NOW, process was Failed , above command didn work bcos of some syntax error .
    BUT what happned is - now whenever i connect both target and auxiliary database from RMAN it shows this -
    C:\Users\Administrator>rman target /@orcl auxiliary /@ordb
    Recovery Manager: Release 11.2.0.1.0 - Production on Fri Apr 5 10:54:04 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    connected to target database: ORCL (DBID=1339650140)
    connected to auxiliary database: ORCL (not mounted)
    RMAN>and also whenever i connect Target ( main , not auxiliary db ) from SQL it shows the error that i described in title .
    I feel like something BUG because this happned to me 5th time , in that 5 times 4 times i got this error while i was duplicating a database . and also after sucessfully duplicated DB ( that was 5th time )
    Thanks
    Regards

    Hi ,
    check the db_name parameter in init parameter file.
    Edited by: Jamsher on Apr 4, 2013 10:33 PM

  • Help for: ORA-01103: database name PRIMARY in control file is not STANDBY

    Hello all, this will be my first post to the support forum. I'm an associate dba with just 6 months on the job, so if I've forgotten something or not given some infromation that is needed please let me know.
    I've also combed the forums/internet, and some of the answers haven't helped. The Oracle Document ORA-1103 While Mounting the Database Using PFILE [ID 237073.1] says my init.ora file is corrupted, but creating a new init.ora file from the spfile does not help. Neither does just starting from the spfile. I have older copies of the init.ora file and the spfiles that the database was running on previously, so I believe they are good.
    This standby NIRNASD1 has existed previously, I had to refresh the primary NIKNASD2, and then re-instantiate NIRNASD1 after the refresh is complete.
    My env is set correctly, and my ORACLE_SID has been exported to NIRNASD1
    NIKNASD2 = Primary Database
    NIRNASD1 = Secondary/Standby Database
    Goal: Creation of Logical Standby NIRNASD1 after creating Physical Standby from NIKNASD2
    My database versions are 10.2.0.4.0, and the databases are on a Unix server. Both databases are located on separate servers.
    Steps that I have taken:
    I used RMAN to backup our primary database to the staging area:
    $ rman target /
    run {
    backup database
    format '/datatransa/dg_stage/%U'
    include current controlfile for standby;
    sql "alter system archive log current";
    backup archivelog all format '/datatransa/dg_stage/%U';
    I used RMAN to Create Secondary Database utilizing RMAN DUPLICATE command.
    RMAN> run {
    2> allocate auxiliary channel auxdisk device type disk;     
    3> duplicate target database for standby NOFILENAMECHECK;
    4> }
    On Secondary database I started Managed Recovery mode
    SQL> shutdown immediate;
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    (I used pfile here, thinking that I needed to mount the database to the pfile so that the database would see the change in the dataguard parameters in the init.ora file, the change from logical to physical- I commeneted out the logical and uncommented the physical line)
    # Dataguard Parameters
    For logical standby, change db_name to name of standby database.
    db_name=NIKNASD2 ### for physical, db_name is same as primary
    #db_name=NIRNASD1 ### for logical, db_name is same as unique_name
    SQL> STARTUP MOUNT PFILE = /oraa/app/oracle/product/1020/admin/NIRNASD1/pfile/initNIRNASD1.ora;
    ORACLE instance started.
    Total System Global Area 1577058304 bytes
    Fixed Size 2084368 bytes
    Variable Size 385876464 bytes
    Database Buffers 1174405120 bytes
    Redo Buffers 14692352 bytes
    Database mounted.
    SQL> ALTER DATABASE recover managed standby database using current logfile disconnect;
    I then verified the Data Guard Configuration by using “alter system archive log current;” on the primary database and watching the sequence number change in the secondary database.
    I made sure that:
    •     The primary database was in MAXIMUM PERFORMANCE MODE
    •     Stopped managed recover on the standby database: alter database recover managed standby database cancel;
    •     Built a logical standby data dictionary on the primary database
    •     The db_name in init.ora was changed (this is in our document at my job)
    •     I changed my database name (from physical to logical) in my init.ora pfile (reverse of what I did above)
    # Dataguard Parameters
    For logical standby, change db_name to name of standby database.
    #db_name=NIKNASD2 ### for physical, db_name is same as primary
    db_name=NIRNASD1 ### for logical, db_name is same as unique_name
    I then went to shutdown my standby database and re-start it in a mount exclusive state, which is where I get the ORA-01103 Error (Again I used the pfile, thinking that I needed to tell the database it is now a logical standby):
    SQL> shutdown immediate;
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    SQL> STARTUP EXCLUSIVE MOUNT PFILE = /oraa/app/oracle/product/1020/admin/NIRNASD1/pfile/initNIRNASD1.ora;
    ORACLE instance started.
    Total System Global Area 1577058304 bytes
    Fixed Size 2084368 bytes
    Variable Size 385876464 bytes
    Database Buffers 1174405120 bytes
    Redo Buffers 14692352 bytes
    ORA-01103: database name 'NIKNASD2' in control file is not 'NIRNASD1'
    From what I understand of the process, the name in the control file is correct, I want it to be NIRNASD1. But the database for some reason thinks it should be NIKNASD2. The following are the parts of my init.ora file that include the dataguard parameters:
    # Database Identification
    db_domain=""
    #db_name=NIRNASD1
    #db_unique_name=NIRNASD1
    # File Configuration
    control_files=("/oradba2/oradata/NIRNASD1/control01.ctl", "/oradba3/oradata/NIRNASD1/control02.ctl", "/oradba4/oradata/NIRNASD1/control03.ctl")
    # Instance Identification
    instance_name=NIRNASD1
    # Dataguard Parameters
    #db_name=NIKNASD2 ### for physical, db_name is same as prmary
    db_name=NIRNASD1 ### for logical, db_name is same as unique_name
    db_unique_name=NIRNASD1
    dg_broker_start=TRUE
    db_file_name_convert='NIKNASD2','NIRNASD1'
    log_file_name_convert='NIKNASD2','NIRNASD1'
    log_archive_config='dg_config=(NIRNASD1,NIKNASD2)'
    log_archive_dest_1='LOCATION="/oraarcha/NIRNASD1/" valid_for=(ONLINE_LOGFILES,all_roles) db_unique_name=NIRNASD1'
    #log_archive_dest_2='LOCATION="/oraarcha/NIKNASD2/" valid_for=(standby_logfiles,standby_roles) db_unique_name=NIRNASD1'
    log_archive_dest_2='LOCATION="/oraarcha/NIKNASD2/" valid_for=(standby_logfile,standby_role) db_unique_name=NIRNASD1'
    STANDBY_ARCHIVE_DEST='LOCATION=/oraarcha/NIKNASD2/'
    # Parameters are not needed since this server will NOT become primary
    #log_archive_dest_2='service=NIKNASD2
    # valid_for=(online_logfiles,primary_role)
    # db_unique_name=NIKNASD2'
    fal_server='NIKNASD2'
    fal_client='NIRNASD1'
    I would appreciate any help, or pointing me in the right direction. I'm just missing something. I am reviewing the documents for building a physical and logical standby from oracle. Just not sure where to go from here.
    Thank you
    Edited by: 977917 on Dec 19, 2012 5:49 PM

    First of all, thank you both for answering my post. I've pulled up Mr. Hesse's page and will make it a go-to staple.
    We're in the process of upgrading our databases, but we have 130+ databases and only six Oracle dba's, and I'm one of them. It's a large corporation, and things move at a "slow and tested" pace.
    The pfile parameters listed above are from my secondary/standby database. And I do want to create a logical standby.
    I forgot to mention that we do use DataGuard Broker, but I did not think that would be the cause of why the database was starting up incorrectly, so I did not mention it. My apologies there.
    As far as the db_name, here's my question on that. It's my understanding the the db_name should be the name of the primary database when you are working with a physical standby, but as soon as you convert it to logical, you should change the db_name to the secondary/standby database? Am I correct on that?
    Leading from that, during the process of creating the physical standby and converting the physical standby to the logical standby, should I change the db_name in the secondary/standby database in the spfile and never use the pfile at all? For instance, when I create the physical standby I have to change the db_name in the standby to the PRIMARY database, so that makes me think I should change db_name in the spfile? (If you see above, I changed db_name in the pfile and did a startup pfile)
    This morning I was able to reach out to a fellow DBA (they are were asleep when I posted this last night), and they tried a few things. We had a redirect in the standby directory /oraa/app/oracle/product/1020/dbs folder that looked like this: spfileNIRNASD1.ora -> /oraa/app/oracle/product/1020/admin/NIRNASD1/pfile/spfileNIRNASD1.ora
    She removed the redirect and the startup mount exclusive then worked without the error.
    Thank you again for your help Mr.Quluzade and Mr. Hesse, I appreciate you all taking the time to teach someone new to the craft. I will definitely read up on the link that you sent me.
    Chris Cranford

  • 11g Data Guard --ORA-01103: database name 'PRIM' in control file is not 'ST

    Dear all,
    From no mount stage i am trying to bring the db in mount stage in standby database
    SQL> alter database mount standby database;
    alter database mount standby database
    ERROR at line 1:
    ORA-01103: database name 'PRIM' in control file is not 'STANDBY'
    What is this problem ?
    I have taken standby control from from standby database and places with datafile's and removed the orginal control file. and added this standby.ora file in parameter file also (pfile).
    the Primary database name is PRIM and standby database name is STANDBY.
    This is my first time doing this data guard configuration kindly let me know what i have to do at this above mentioned stage ..
    Regards
    Hamid

    Standby DB init file
    prim.__db_cache_size=536870912
    prim.__java_pool_size=8388608
    prim.__large_pool_size=8388608
    prim.__oracle_base='F:\standby'#ORACLE_BASE set from environment
    prim.__pga_aggregate_target=520093696
    prim.__sga_target=771751936
    prim.__shared_io_pool_size=0
    prim.__shared_pool_size=209715200
    prim.__streams_pool_size=0
    audit_file_dest='F:\standby\admin\standby\adump'
    audit_trail='db'
    compatible='11.2.0.0.0'
    control_files='F:\standby\oradata\standby\STANDBY.ctl'
    db_block_size=8192
    db_domain='AKEETECH.COM'
    db_name='prim'
    db_recovery_file_dest='F:\standby\flash_recovery_area'
    db_recovery_file_dest_size=4039114752
    diagnostic_dest='F:\standby'
    dispatchers='(PROTOCOL=TCP) (SERVICE=standbyXDB)'
    fal_client='standby'
    fal_server='prim'
    local_listener='LISTENER_PRIM'
    memory_target=1288699904
    open_cursors=300
    processes=150
    remote_login_passwordfile='EXCLUSIVE'
    standby_file_management='auto'
    undo_tablespace='UNDOTBS1'
    standby_file_management=auto
    fal_server=prim
    fal_client=standby
    Primary Db Init file
    prim.__db_cache_size=536870912
    prim.__java_pool_size=8388608
    prim.__large_pool_size=8388608
    prim.__oracle_base='D:\Primary'#ORACLE_BASE set from environment
    prim.__pga_aggregate_target=520093696
    prim.__sga_target=771751936
    prim.__shared_io_pool_size=0
    prim.__shared_pool_size=209715200
    prim.__streams_pool_size=0
    *.audit_file_dest='D:\Primary\admin\prim\adump'
    *.audit_trail='db'
    *.compatible='11.2.0.0.0'
    *.control_files='D:\Primary\oradata\prim\control01.ctl','D:\Primary\flash_recovery_area\prim\control02.ctl'
    *.db_block_size=8192
    *.db_domain='AKEETECH.COM'
    *.db_name='prim'
    *.db_recovery_file_dest='D:\Primary\flash_recovery_area'
    *.db_recovery_file_dest_size=4039114752
    *.diagnostic_dest='D:\Primary'
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=primXDB)'
    *.local_listener='LISTENER_PRIM'
    *.memory_target=1288699904
    *.open_cursors=300
    *.processes=150
    *.remote_login_passwordfile='EXCLUSIVE'
    *.undo_tablespace='UNDOTBS1'
    standby_file_management=auto
    fal_server=prim
    fal_client=standby
    Steps i have followed till now.
    1) Created standby control file in primary in mount stage (STANDBY.CTL)
    2) Installed 11g DB software alone in standby location
    3) Shutdown the Primary DB and Taken cold back of all the other files and copied in Standby DB location (Primary in D:\ Drive and Standby in F:\ Drive )
    4) Edited init parameters in Primary and standby
    5) Startup no mount pfile= standby db init file ( its started )
    6) SQL> alter database mount standby database; --- at this time i got the error i have mentioned above, so i have changed the db_name same in both init.ora files
    7)
    Up to this step i have done .. but this is all blindly.. not in clear understanding..
    Kindly guide me.. step by step configuration..
    Regards
    Hamid

  • ORA-01103: database name 'PROD1' in control file is not 'PROD2'

    Dear Experts,
    I am trying to use a full compressed backup of PROD1database to create a new database called PROD2 on the SAME host.
    Both databases are using 11.2.0.2 version on Oracle Redhat 5.
    1- I created pfile from source PROD1 database, and modified the following;
    {code}
    *.control_files='+prod2_DG/prod2/controlfile/control01.ctl'
    *.db_create_file_dest='+prod2_DG'
    *.db_name='prod2'
    {code}
    2- Started up no mount the prod2 database using the new pfile.
    3- restore the controlfile from PROD1 backup;
    restore controlfile from '/tmp/prod2/prod1_cntl_4ioet09f_1_1.bkp'
    4- alter database mount give me the following error;
    {code}
    RMAN-00571: ===========================================================
    RMAN-03002: failure of startup command at 07/18/2013 05:52:51
    ORA-01103: database name 'PROD1' in control file is not 'PROD2'
    {code}
    I want to test the backup made on prod1 and same time have a new database prod2 on same host.
    I also tried with SET DBID = <DBID_OF_PROD1> and it doesn't work!
    How I can fix that?
    Thanks and best regards

    SET DBID or DB_NAME in the parameter file don't change the database name  that is in the control file.  At the point of restore, the control file still has the "prod1" database name.
    With RMAN backups, you should consider using DUPLICATE DATABASE
    http://docs.oracle.com/cd/E11882_01/backup.112/e10642/rcmdupdb.htm#i1008564
    Running a DUPLICATE Database on the same host as the source database is a risky operation.  Done incorrectly, you run the risk of overwriting the datafiles of the source database.  Since your source is a Production database, you run the risk of taking the production database down.  I suggest that you practice the steps on a non-production environment first.
    Hemant K Chitale

  • ORA-01103: database name 'RAC' in control file is not 'STB'

    Hiii..,
    Im doing my dataguard setup, My primary side is a 2node RAC and standby is a single node. Im using 11gR2 Database.
    when im using RMan command for Duplicating the Database im getting the following Error.
    sql statement: alter database mount standby database
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 10/03/2011 18:33:58
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-03009: failure of sql command on clone_default channel at 10/03/2011 18:33:58
    RMAN-11003: failure during parse/execution of SQL statement: alter database mount standby database
    ORA-01103: database name 'RAC' in control file is not 'STB'
    Plz anyone can help me in resolving the issue.??
    Thanks in advance..

    881222 wrote:
    In my primary side the db_recovery_file_dest is not set as shown beloww..
    SQL> show parameter db_recovery_file_dest;
    NAME                                 TYPE        VALUE
    db_recovery_file_dest                string
    db_recovery_file_dest_size           big integer 0
    SQL> select flashback_on from v$database;
    FLASHBACK_ON
    NO
    so shud i need to set in standby side..??
    Thanks.
    ORA-19801:
         initialization parameter DB_RECOVERY_FILE_DEST is not set
    Cause:      An attempt was made to create a file in DB_RECOVERY_FILE_DEST when DB_RECOVERY_FILE_DEST was not set. There are number of possible causes of this error, including:
                    1) A LOG_ARCHIVE_DEST_n parameter was specified using a LOCATION attribute whose value was DB_RECOVERY_FILE_DEST and an archivelog file creation was attempted.
                    2) STANDBY_ARCHIVE_DEST parameter was specified using a LOCATION attribute whose value was DB_RECOVERY_FILE_DEST and an archivelog file creation was attempted.
    Action:      Specify a valid destination for DB_RECOVERY_FILE_DEST in initialization parameter file or with the ALTER SYSTEM SET command.

  • ORA-01103: database name 'TESTING2' in control file is not'TESTING1..

    Hello all, please help me on this..im using 10.2.0.4.0 , DB created by ex-colleque
    while connecting db getting ora 1103 error, and tried to create controlfile using trace but i couldn't
    here is the details:
    TESTING1 >startup mount;
    ORACLE instance started.
    Total System Global Area 734003200 bytes
    Fixed Size 2141536 bytes
    Variable Size 328159904 bytes
    Database Buffers 369098752 bytes
    Redo Buffers 34603008 bytes
    ORA-01103: database name 'TESTING2' in control file is not 'TESTING1'
    want to backup ctl file and change the dbname, getting below error..
    TESTING1 >alter database backup controlfile to trace;
    alter database backup controlfile to trace
    ERROR at line 1:
    ORA-01507: database not mounted
    TESTING1:/app/oracle/TESTING1/product/10.2.0.4/dbs >grep db_name initTESTING1.ora
    *.db_name='TESTING1'
    I have found TESTING2 entries in alert log file..
    TESTING1:/app/oracle/TESTING1/admin/bdump >grep TESTING2 alert_TESTING1.log
    DBNAME will be changed from TESTING1 to new DBNAME of TESTING2
    Database name changed to TESTING2.
    Database ID for database TESTING2 changed to 1933958893.
    i have tried to create new controlfile and tried to startup..got below error hence i hv mentioned same datafiles path..
    ORA-01161: database name TESTING2 in file header does not match given name of TESTING1

    Here is the first law of holes.
    When you find yourself in a hole, the first thing you should do is STOP digging.
    Have you taken a full, cold backup since this event started?
    DBNAME will be changed from TESTING1 to new DBNAME of TESTING2When & why did this occur?
    Do you have a valid & recent backup?
    i have tried to create new controlfile Why did you do this?
    Edited by: sb92075 on May 7, 2010 8:36 PM

  • How to Use Sequence created in Oracle Database in SQL Ldr Control file

    Hi,
    I created a sequence in oracle database. How will use the sequence in SQL loader Control file.
    Thanks in advance

    Hi,
    You might get a good response to your post in the forum dedicated to data movement , including SQL*Loader . You can find it here Export/Import/SQL Loader & External Tables
    Regards,

  • How to create database using modified INIT.ORA file

    anybody know anything about the creating a
    database using modified init.ora file?
    Thanks

    If you take a look at the "Getting Started" guides, there's a section on creating databases and init.ora files.
    Look for the document
    Oracle8i Enterprise Edition for Windows NT Getting Started
    Justin
    null

  • NEED TO RECOVER A DATABASE USING RMAN with CONTROL FILE AND NO RMAN CATALOG, DISK FAILURE..

    Hello All,
    The disk failure caused our production data on the disk to be resotred with the backup data available and recovered through RMAN with cotrolfile , and no catalog DB is configured.
    I had the restored the spfile and control file then recovered the database,
    startup nomount;
    RESTORE SPFILE FROM ' path '  ;
    Shutdown immediate;
    startup nomount
    Restore controfile from autobackup;
    restore database;
    [AT POINT , A MESSAGE PROMPTED LIKE " failur of restored command - some targets not found"  (thinking may be few archives are not found, i proceeded to incomeplete recovery of DB) ]
    recover database;
    Finished reocvery .
    Now in the Grid control i see that 60 blocks of a particular datafile are corrupted and needs recovery. Do i need to get the data file resotred again and recover it or any simple way to recover this data file
    When i perform the block recovery , it says recovery failed and when i run the data file recovery it succeeds. Please provide you inputs to recover the database as it is production BI database and pretty critical to our client.
    Thanks for your valuable time in advance.
    Regards,
    Ran G.

    These is a common problem if the object are created due to NOLOGGIN option. If you check most of the object which are facing block corruption is indexes .
    Use the below query to check the objects :
    It will map each block from v$database_block_corruption to either a segment or if the block is free.
    $ sqlplus / as sysdba
    set pagesize 2000
    set linesize 250
    SELECT e.owner, e.segment_type, e.segment_name, e.partition_name, c.file#
    , greatest(e.block_id, c.block#) corr_start_block#
    , least(e.block_id+e.blocks-1, c.block#+c.blocks-1) corr_end_block#
    , least(e.block_id+e.blocks-1, c.block#+c.blocks-1)
    - greatest(e.block_id, c.block#) + 1 blocks_corrupted
    , null description
    FROM dba_extents e, v$database_block_corruption c
    WHERE e.file_id = c.file#
    AND e.block_id <= c.block# + c.blocks - 1
    AND e.block_id + e.blocks - 1 >= c.block#
    UNION
    SELECT s.owner, s.segment_type, s.segment_name, s.partition_name, c.file#
    , header_block corr_start_block#
    , header_block corr_end_block#
    , 1 blocks_corrupted
    , 'Segment Header' description
    FROM dba_segments s, v$database_block_corruption c
    WHERE s.header_file = c.file#
    AND s.header_block between c.block# and c.block# + c.blocks - 1
    UNION
    SELECT null owner, null segment_type, null segment_name, null partition_name, c.file#
    , greatest(f.block_id, c.block#) corr_start_block#
    , least(f.block_id+f.blocks-1, c.block#+c.blocks-1) corr_end_block#
    , least(f.block_id+f.blocks-1, c.block#+c.blocks-1)
    - greatest(f.block_id, c.block#) + 1 blocks_corrupted
    , 'Free Block' description
    FROM dba_free_space f, v$database_block_corruption c
    WHERE f.file_id = c.file#
    AND f.block_id <= c.block# + c.blocks - 1
    AND f.block_id + f.blocks - 1 >= c.block#
    order by file#, corr_start_block#;
    Below oracle support note will help you :
    ORA-1578 / ORA-26040 Corrupt blocks by NOLOGGING - Error explanation and solution (Doc ID 794505.1)
    The Gains and Pains of Nologging Operations (Doc ID 290161.1)
    SQL> select d.NAME as DBF_NAME, t.NAME as TS_NAME, d.UNRECOVERABLE_CHANGE# as NOLOG_CHNG#, to_char(d.UNRECOVERABLE_TIME, 'Dy DD-Mon-YYYY HH24:MI:SS') as NOLOG_TIME from V$DATAFILE d join V$TABLESPACE t on d.TS# = t.TS# order by t.NAME;
    Thanks,
    gssdba.wordpress.com

  • Error while creating database - Cannot load backend library 'oci.dll'

    Hi all,
    I am newbie to Timesten imdb (in memory database). I do not wish to use oracle rdbms.
    I have installed the Timesten IMDB on Win2003.
    E:\TimesTen\tt70_32\bin>ttVersion.exe
    TimesTen Release 7.0.5.0.0 (32 bit NT) (tt70_32:17000) 2008-04-05T00:54:16Z
    Instance admin: m4sadm
    Instance home directory: e:\TimesTen\tt70_32
    Daemon home directory: e:\TimesTen\tt70_32\srv\info
    While installing, I followed the viewlet at: [http://www.oracle.com/technology/products/timesten/viewlets/tt70_install_win_viewlet_swf.html]
    Now, I am planning to create a database, and so following the viewlet at: [http://www.oracle.com/technology/products/timesten/viewlets/tt70_create_db_win_cc_viewlet_swf.html]
    However, when I give the command (according to the viewlet), I get the following error:
    Command> select * from v$version;
    5102: Cannot load backend library 'oci.dll' for Cache Connect. OS error message '<empty>'.
    The command failed.
    Can anyone provide pointers to resolve this?

    I'm guessing you chose No to the install question about using Cache Connect to Oracle? This would cause certain libraries not to be installed at install time, specifically libraries that would enable you to use TimesTen Cache Connect to cache data from Oracle tables.
    The table "v$version" that you use in your select
    select * from v$version
    only exists on an Oracle RDBMS. It doesn't exist on TimesTen. Moreover the second viewlet you refer to is about using the TimesTen Cache Connect feature to cache tables from Oracle RDBMS. If you're not interested in using Oracle RDBMS, as you say, it would be my assumption that you're also not interested in using the TimesTen Cache Connect feature? So I'm a little confused here about your intentions. Are you interested in using TimesTen as a standalone datastore, or do you want to use it to cache data from tables located in an Oracle RDBMS?
    Thanks.

  • Cannot find ipod control file

    Hi guys
    My pc crashed and ive lost all my music on itunes
    When i connect my iphone to my new laptop i get internal storage-DCIM Then 3 folders containing pictures
    I have enable show hidden files etc but all to no avail  i do not see the usual 4 files ie notes etc
    Can anyone help ?

    Either that or buy software that can try to extract the music from the phone.
    You may want to invest in an external hard drive you can use for backup as well. They're cheap... What if those had been tax returns instead of music files and you got audited?

  • 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

  • Error while creating database manually

    hi guru's i am getting error while creating database manually
    my sql is SQL>create database lily
      logfile   group 1 ('C:\oracle\product\10.2.0\oradata\lily\redo1.log') size 10M,
                group 2 ('C:\oracle\product\10.2.0\oradata\lily\redo2.log') size 10M,
                group 3 ('C:\oracle\product\10.2.0\oradata\lily\redo3.log') size 10M
      character set          WE8ISO8859P1
      national character set utf8
      datafile 'C:\oracle\product\10.2.0\oradata\lily\system.dbf'
                size 50M
                autoextend on
                next 10M maxsize unlimited
                extent management local
      sysaux datafile 'C:\oracle\product\10.2.0\oradata\lily\sysaux.dbf'
                size 10M
                autoextend on
                next 10M
                maxsize unlimited
      undo tablespace undo
                datafile 'C:\oracle\product\10.2.0\oradata\lily\undo.dbf'
                size 10M
      default temporary tablespace temp
                tempfile 'C:\oracle\product\10.2.0\oradata\lily\temp.dbf'
                size 10M;and i am getting following error
    create database lily
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-00200: control file could not be created
    ORA-00202: control file: 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\LILY\CONTROL01.CTL'
    ORA-27038: created file already exists
    OSD-04010: <create> option specified, file already exists
    code}
    Edited by: CHETAN YADAV on Jul 19, 2011 6:55 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    create database lily
      logfile   group 1 ('C:\oracle\product\10.2.0\oradata\lily\redo1.log') size 10M,
              group 2 ('C:\oracle\product\10.2.0\oradata\lily\redo2.log') size 10M,
                group 3 ('C:\oracle\product\10.2.0\oradata\lily\redo3.log') size 10M
      datafile 'C:\oracle\product\10.2.0\oradata\lily\system.dbf'  size 150M
    sysaux datafile 'C:\oracle\product\10.2.0\oradata\lily\sysaux.dbf' 150 M
      undo tablespace undo  datafile 'C:\oracle\product\10.2.0\oradata\lily\undo.dbf'  size 10M
    default temporary tablespace temp tempfile 'C:\oracle\product\10.2.0\oradata\lily\temp.dbf' size 10M;
    remove the SQL> from the a.sql script also change the system datafile size to minimum of 100mb size
    ALSO check/change the undotablespace name with your init parameter file it should match as it is in the init parameter file
    Edited by: rajeysh on Jul 19, 2011 6:59 PM

  • ORA-01501: CREATE DATABASE failed in asm

    i am trying to create manual database using asm
    and i am using oracle SID
    and when i create manual database i am getting the below error
    ERROR at line 1:
    ORA-01501: CREATE DATABASE failed
    ORA-00200: control file could not be created
    ORA-00202: control file: '+ASMDG/manual/control1.ctl'
    ORA-17502: ksfdcre:4 Failed to create file +ASMDG/manual/control1.ctl
    ORA-15001: diskgroup "ASMDG" does not exist or is not mounted
    and when i use asm SID +asm and if i create a manual database i am getting the below error
    ERROR at line 1:
    ORA-15000: command disallowed by current instance type
    please help me to resolve this

    Hi Friend,
    Please check the following permissions for all the below :
    Grid Infrastructure Home Owner : grid
    Primary Group : oinstall
    Secondary Groups : asmadmin, asmdba, asmoper
    RDBMS Home Owner : oracle
    Primary Group : oinstall
    Secondary Groups : dba, oper, asmdba
    In case of stand alone set up, if the 11.2 Database be managed by Oracle Restart ( srvctl stop/start ), then 'grid' user should also be a part of 'dba' group.
    The ASM Disks would be owned by grid:asmadmin
    Please check once again...Before starts
    Hope it helps...
    Thanks
    LaserSoft

Maybe you are looking for

  • Smart object colormanagement

    When I place a psd file as a smart object in Dreamweaver CS4 I get a much darker images than the original or the exported jpeg file from photoshop. Any tips on where I can change the colormanagement/conversion?

  • Is there a way to add roman numerals to the footer? (eg. page i of n)

    Is there a way to add roman numerals to the footer? (eg. page i of n)

  • SO_OBJECT_SEND Function Module

    Hello All, I am using this function module to send mails to the users. When i run the program that uses the function module its working fine and when i run the program in bacground its giving me a short dump saying The termination occurred in the ABA

  • User Decision Step in BPM - PI 7.1

    Hi All, I have posted a wiki for User Decision step in BPM in PI 7.1, Please go through it and post your queries, suggestions and comments here. The link for same is under: Part1 - https://www.sdn.sap.com/irj/scn/wiki?path=/display/xi/userDecisionste

  • Can't update to Mavericks, says my hard drive is backup

    When trying to update to Mavericks, the system won't do it and only says that the selected drive is used for time machine backups. This is my hard drive, and I don't use it for time machine backups.