Database mounted but doesnt open !!

Hi All,
The database @ my machine gets mounted but doesnt open!
The error goes:
Database mounted.
ORA-00313: open failed for members of log group 1 of thread 1
ORA-00312: online log 1 thread 1:
'C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_647O6RPP_.LOG'
ORA-27041: unable to open file
OSD-04002: unable to open file
O/S-Error: (OS 2) The system cannot find the file specified.
While doing a disk cleanup i mistakenly deleted the log files!!!!
Please suggest me a to what i can do now to correct this,as all my ECM stack was installed over this database.
PLEASE HELP!! :( :(

Man, you're in the wrong thread!
Anyway, just an idea,
You can start by trying to recover the deleted file. Search on Google for "Recuva". It's a free and small but powerful file recovery utility, install it and see if you can recover the deleted file.

Similar Messages

  • Renaming datafiles in control files with database mounted but not open

    Hi,
    I moved a database (physical files) from one server to another. I need to modify the contents of the control files since the directory structure of the servers are not the same (and I can't change that).
    I know I can use ALTER DATABASE BACKUP CONTROLFILE TO TRACE to produce a script that I can than modify and run with the instance started, database mounted but not open, and that will recreate the control files. I don't want to do that.
    I was also told I can modify the datafile entries in the control files by starting the instance, mounting but not opening the database. Then I can issue the (this is the part I need help with) ALTER DATABASE RENAME FILE <file1> to <file2>. When I tried this it complains that <file1> is not found. Obviously the command I used is not the right one,,, what is the right command for what I want to do.
    Thanks,
    Gabriel

    Move all datafiles from one directory to an other without recreate controlfile :
    SYS@DEMO102> select file_name from dba_data_files
      2  union
      3  select member from v$logfile
      4  union
      5  select file_name from dba_temp_files
      6  union
      7  select name from v$controlfile;
    FILE_NAME
    E:\ORACLE\ORADATA\DEMO102C\CONTROL01.CTL
    E:\ORACLE\ORADATA\DEMO102C\CONTROL02.CTL
    E:\ORACLE\ORADATA\DEMO102C\CONTROL03.CTL
    E:\ORACLE\ORADATA\DEMO102C\EXAMPLE01.DBF
    E:\ORACLE\ORADATA\DEMO102C\REDO01.LOG
    E:\ORACLE\ORADATA\DEMO102C\REDO02.LOG
    E:\ORACLE\ORADATA\DEMO102C\REDO03.LOG
    E:\ORACLE\ORADATA\DEMO102C\SYSAUX01.DBF
    E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF
    E:\ORACLE\ORADATA\DEMO102C\TBS102_1.DBF
    E:\ORACLE\ORADATA\DEMO102C\TBS102_2.DBF
    E:\ORACLE\ORADATA\DEMO102C\TEMP01.DBF
    E:\ORACLE\ORADATA\DEMO102C\UNDOTBS01.DBF
    E:\ORACLE\ORADATA\DEMO102C\USERS01.DBF
    14 rows selected.
    SYS@DEMO102> create pfile='E:\oracle\admin\DEMO102\pfile\pfile102.ora' from spfile;
    File created.
    SYS@DEMO102> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.Here, I move all datafiles mentionned above, and modify my pfile for new controlfile directory. Then :
    SYS@DEMO102> startup pfile=E:\oracle\admin\DEMO102\pfile\pfile102.ora
    ORACLE instance started.
    Total System Global Area  272629760 bytes
    Fixed Size                  1288940 bytes
    Variable Size             163579156 bytes
    Database Buffers          100663296 bytes
    Redo Buffers                7098368 bytes
    Database mounted. --Note that we are in mount state
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: 'E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF'
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\USERS01.DBF' to 'E:\ORACLE\ORADATA\demo102\USERS01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\SYSAUX01.DBF' to 'E:\ORACLE\ORADATA\demo102\SYSAUX01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\UNDOTBS01.DBF' to 'E:\ORACLE\ORADATA\demo102\UNDOTBS01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF' to 'E:\ORACLE\ORADATA\demo102\SYSTEM\SYSTEM01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\EXAMPLE01.DBF' to 'E:\ORACLE\ORADATA\demo102\EXAMPLE01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TBS102_1.DBF' to 'E:\ORACLE\ORADATA\demo102\TBS102_1.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TBS102_2.DBF' to 'E:\ORACLE\ORADATA\demo102\TBS102_2.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO01.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO01.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO02.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO02.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO03.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO03.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TEMP01.DBF' to 'E:\ORACLE\ORADATA\demo102\TEMP01.DBF';
    Database altered.
    SYS@DEMO102> alter database open;
    Database altered.
    SYS@DEMO102> create spfile from pfile='E:\oracle\admin\DEMO102\pfile\pfile102.ora';
    File created.
    SYS@DEMO102> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SYS@DEMO102> startup
    ORACLE instance started.
    Total System Global Area  272629760 bytes
    Fixed Size                  1288940 bytes
    Variable Size             163579156 bytes
    Database Buffers          100663296 bytes
    Redo Buffers                7098368 bytes
    Database mounted.
    Database opened.
    SYS@DEMO102> select file_name from dba_data_files
      2  union
      3  select member from v$logfile
      4  union
      5  select file_name from dba_temp_files
      6  union
      7  select name from v$controlfile;
    FILE_NAME
    E:\ORACLE\ORADATA\DEMO102\CONTROL01.CTL
    E:\ORACLE\ORADATA\DEMO102\CONTROL02.CTL
    E:\ORACLE\ORADATA\DEMO102\CONTROL03.CTL
    E:\ORACLE\ORADATA\DEMO102\EXAMPLE01.DBF
    E:\ORACLE\ORADATA\DEMO102\REDO01.LOG
    E:\ORACLE\ORADATA\DEMO102\REDO02.LOG
    E:\ORACLE\ORADATA\DEMO102\REDO03.LOG
    E:\ORACLE\ORADATA\DEMO102\SYSAUX01.DBF
    E:\ORACLE\ORADATA\DEMO102\SYSTEM\SYSTEM01.DBF
    E:\ORACLE\ORADATA\DEMO102\TBS102_1.DBF
    E:\ORACLE\ORADATA\DEMO102\TBS102_2.DBF
    E:\ORACLE\ORADATA\DEMO102\TEMP01.DBF
    E:\ORACLE\ORADATA\DEMO102\UNDOTBS01.DBF
    E:\ORACLE\ORADATA\DEMO102\USERS01.DBF
    14 rows selected.
    SYS@DEMO102> Nicolas.

  • Oracle 8i Database mounted, but not opened.

    The Oracle 8i database on my server is successfully mounted, but cannot be opened as one of the .DBS files has become corrupt. The messages given during startup are as follows:
    ORA-01122: database file 27 failed verification check
    ORA-01110: data file 27: 'D:\FINSERV\DBS\FXATABM1.DBS'
    ORA-01251: Unknown File Header Version read for file number 27
    Please help!!!
    null

    Hi
    if u want to open immediately then
    offline the datafile and u can
    open the database.
    If ur system is running on archive mode then
    Copy the old datafile(no corruption) and do complete recovery
    suresh

  • Database mounted but not opened

    Hi
    Now i dont know how but my database is being mounted but i am facing this problem.
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area 437326184 bytes
    Fixed Size 450920 bytes
    Variable Size 184549376 bytes
    Database Buffers 251658240 bytes
    Redo Buffers 667648 bytes
    Database mounted.
    SQL> alter database open;
    alter database open
    ERROR at line 1:
    ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-01113: file 1 needs media recovery
    ORA-01110: data file 1: '/u01/app/oracle/oradata/test1/system01.dbf'
    Please help

    Hi Govind
    thanks for replying.I have already tried that.And it gives me this error
    SQL> recover database
    ORA-00283: recovery session canceled due to errors
    ORA-01610: recovery using the BACKUP CONTROLFILE option must be done
    please help
    Regrads

  • I click on itunes but doesnt open and says send error report or dont send

    i click on itunes but doesnt open and says send error report or dont send

    You will need to provide more details as we cannot see your computer screen. Does this happen every time you launch LabVIEW? What version of LabVIEW are you using? What version of Windows? Does LabVIEW crash? If so, what were you doing at the time it crashed?

  • I accidentally pushed the power button of my macbookpro... it restarted but doesnt open... what appears now is a flashing FOLDER logo with a QUESTION MARK on it.. can someboby help me to fix this?

    i accidentally pushed the power button of my macbookpro... it restarted but doesnt open... what appears now is a flashing FOLDER logo with a QUESTION MARK on it.. can someboby help me to fix this?

    (Assuming you don't have a firmware boot lock set)
    First easy step...
    1. Shut down the computer if it's on (hold the power button down... until it shuts off)
    2. Press the power button
    3. Immediately press AND hold the Option key ASAP
         Hold until drive option images appear in a single row across the screen. Typically most people running 10.7 or 10.8 will see 2 drive options to boot from: the main volume they usually boot from, and a recovery volume. If your main volume pops up. Use the cursor or arrow keys to highlight/select the main volume and press enter. That should boot your main volume. Let me know what you get from this point... I'll give you more as you go along.

  • HT4859 On my new ipad ios 5.1.1 when i try to tap the manage storage it just loads for a sec but doesnt open and i cant manage my iphone 4 on 5.1.1

    On my new ipad ios 5.1.1 when i try to tap the manage storage it just loads for a sec but doesnt open and i cant manage my iphone 4 on 5.1.1

    Hi,
    /Users/sarahschadek/Desktop/Safari.app/Contents/MacOS/Safari
    Move the Safari app from the Desktop to the Applications folder.
    Restart your Mac.
    That's why you see this:
    When I try to do the updates my computer says it has ready it goes through like it is downloading them then at the end it says some of the files could not be saved to "/" files.
    After your restart your Mac, click the Apple  menu (top left in your screen) then click:  Software Update ...
    Carolyn  

  • Final cut won't open..  It starts to load but doesnt open..

    The last thing it said was scratch disk has gone offline... then it closed and i havent been able to open it.... If anybody knows what to do... please help mE!!!!! I am on a deadline for school

    Make a copy of your Final Cut Express Preferences (in case this doesn't work(, and then trash the prefs. Also, try trashing all your render files (located in "Final Cut Express Documents").

  • HTML link to idisk/movie - movie doesnt open but downloads only

    i have set up a html button on my iweb site to link it directly to a movie i have uploaded to idisk/Movies. when i click the button it opens a blank page, asks for a password to access idisk.mac.com and then downloads the movie but doesnt open it - i want the movie to directly open when the button has been clicked without downloading and having to enter a password -any ideas anyone..Old toad are you there???

    To get a movie to play in the browser you need to decide on which plugin(s) that it will employ. A movie file (.mov, .mp4, .swf etc) can be played using various codes that call up the QuickTime or Flash Player plugin - or both.
    First, you need to decide on who your intended audience is as, for example, a movie uploaded to play using QT will not be able to be viewed by a lot of PC users and a movie programmed to use the Flash Player plugin cannot be viewed on iOS devices like the iPad/iPhone.
    If you are aiming your movie at Mac users and the minority of PC users who have installed QuickTime player, Old Toad shows a couple of ways here.
    http://web.me.com/toad.hall/Demo_2/Widget-Window.html
    http://web.me.com/toad.hall/Demo_2/Widget-MMeQT.html#widget6
    If you want to reach a wider audience you need to employ something like this....
    http://www.iwebformusicians.com/Website-Music-Movies/JW-Video-Player.html
    or this....
    www.iwebformusicians.com/Website-Music-Movies/Vimeo-YouTube.html
    For these to work they need to have their own web page that will be set to open in a new window when the button is clicked. This is done in the usual fashion using the Link inspector.

  • Camera doesnt open

    i tried to open the camera application in iPhone.
    butit doesnt open...it opens the black window and then exits itself...
    i restored the iphone 2 times and its not working...
    can anyone know how to make my camera application work...

    Is this a first-generation iPhone, or iPhone 3G?
    If it is a first-generation iPhone, did you update the iPhone software to 2.0?
    If the answers to these two questions is yes, you are experiencing what others have experienced on this forum. Others should comment, but as far as I know, no-one has found a solid solution.
    I think you did the right thing by trying a restore. It may be that you didn't follow the full restore process completely. See what other suggestions people might have, but if they cannot help you to solve the problem I recommend making an appointment with an Apple Genius for support.
    One would think that a full restore of a phone should resolve all issues, since you are essentially removing all existing software and data and replacing it completely, but it doesn't seem to be the case, which is disturbing.

  • Difference between the mount, nomount and open database.

    Hi,
    I'm very new in Oracle Database.
    I need more details regarding the oracle database. My questions is , What is exact difference between the oracle database which is 3 diff stage like mount , nomount and open?
    Can anybody clear my doubts. Is there any proper document which help me out?
    Thanks in advance.
    Regards,
    manish
    Edited by: user2567674 on Sep 8, 2009 10:36 PM

    When the database is nomount state, then database instance has been started using initialization file. Thus processes started and memory allocated.
    In Mount: The instance started and control file is opened. The control file is read but it's contents are not validated.
    In Open: If the database is opened then control file is validated against the physical structure of database. The database is verified that all of it's file are in consistent state. If any of the file is not in consistent state, we may need some sort of recovery.
    When you fire startup command following happens:
    Nomount------>Mount-------->Opened
    Regards,
    S.K.

  • Dmg mounts but doesn't open

    Hi everyone,
    kind of an odd problem I've started having today. DMG's mount fine but don't open in a window any more. For instance, if I wanted to install an app and it was a DMG file i would double click it, it would mount and I would see a window with the program listed. Now, I double click the DMG file and it mounts but no window. I have to go to the left bar on my finder window, locate the mounted image and install the app from there.
    Yes, that works ok but it's more of a pain then it used to be.
    Any ideas on what's going on? I can't think of anything that I've changed either.
    10.8.2 on a macmini.
    thanks

    That depends on how the disk image is created. Some won't open a window automatically when mounted.

  • I am trying to import my libary onto a new computor the file, my libarary that is, is in my music and in the itunes folder but it doesnt open up when l open itunes

    i am trying to import my libary onto a new computor, the file, my library that is, is in my music and in the itunes folder but it doesnt open up when l open itunes would appreciate some help with the import cheers

    Hey samanthaluca,
    Sounds like you want to move your music library to a new computer. I'd follow the steps in this article from the begining to make sure the import goes smoothly:
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    Cheers,
    Delgadoh

  • Oracle 9.2.0  starts, mounts but does not open with the error ORA-01113

    hi,
    I have installed Oracle 9.2.0 database in RHEL2.1(Update6). Installation is done successfully but when I tried to start the database service the following error displays.
    Connected to an idle instance.
    ORACLE instance started.
    Total System Global Area 560796504 bytes
    Fixed Size 451416 bytes
    Variable Size 385875968 bytes
    Database Buffers 163840000 bytes
    Redo Buffers 10629120 bytes
    Database mounted.
    ORA-01113: file 1 needs media recovery
    ORA-01110: data file 1: '/ora1/oradb/proddata/system01.dbf'
    Need some help to resolve this issue..
    Thanks and Regards.
    Imtiyaz.

    Hi!
    It seems that something went wrong with your db (instance crash with database file corruption or corruption in the control file. If you just installed the database you could save yourself a lot of trouble by just running the dbca and create a new database.
    cu
    Andreas

  • I erased all content and settings from i phone because my dad gave it to me i press and hold both buttons i conected it to the itunes but it tells me its not available and my iphone doesnt open what shall i do?

    I erased all content and settings from i phone because my dad gave it to me i press and hold both buttons i conected it to the itunes but it tells me its not available and my iphone doesnt open what shall i do?

    Do you have a SIM in the phone? A SIM is required to activate the phone.
    If you do, ask your dad if the phone was jailbroken or hacked to unlock it.

Maybe you are looking for

  • 1st generation ipod nano sync help

    I have a 1st generation iPod nano that was given to me - I want to delete the current music and sync my own iTunes - help!

  • 7-pass erase: did it work?

    Hello, I posted this question at the end of another thread, but I thought I'd start a new one.. I'm selling my old iMac G5 20" (purchased in '05) and erasing personal data for security reasons, etc.. I booted from install disk and set my mac to 7-pas

  • [Solved] Reflect all changes to a filesystem in another filesystem

    I'm looking for a solution to the following problem: I want to setup an external harddisk so that two different partitions on it behave in the following way: Given an ext4 partition mounted rw at /mnt/ext and a NTFS partition mounted also rw at /mnt/

  • Adobe Reader 10 and Stamps

    In previous versions of Adobe Reader, when a Stamp was created and viewed in the Comments Toolbar, you would see: 1. Name of Creator 2. Subject 3. Date of Creation. In the newest version of Adobe Reader, I cannot get the Subject to show up in the too

  • I keep getting this message...

    I am using the trial version of Lightroom 1.1 and have imported about 400 files for a start, all went well at first but I now keep getting the following message when I try to view the catalogs 'No photos in selected folders' and all the folders menti