Corrupt database, need to start over

This is a test bed env. I've hosed the .dbf and control files, there's no backup and I don't want to recover. V$DATABASE and V$INSTANCE show the db as intact when I 'startup nomount', but in fact there's no database out there anymore.
What I want to do is the equivalent of 'drop database;' so I can recreate and retest, but I can't mount the DB to drop it. Is there a best/fast way to clean up the mess?

Since there are no dbf's there is no database.
A instance can be mounted without any datafiles. In your case it is not clear what you are intending to do.
$export ORACLE_SID=DUMSID
$sqlplus / as sysdba
SQL>shutdown abort;
$cd $ORACLE_HOME/
$rm -i init* sp*
This will mean that the entire instance has gone. Now you can start over.

Similar Messages

  • TS3212 All your music in one place.  This is what's showing when I downloaded the new itunes but will not go any further.  Have been here for 20 minutes?  Do I need to start over?  Or is there something else I can do to get to so I can click next for the

    I've been trying to down load the new itunes version and I'm stuck on All your music in one place but now it's been stuck there for over 20 minutes.  Do I need to start over or is this normal?

    The sort fields should generally be empty unless you've putting in custom values to sort solo artists by their surnames. You can apply common changes to thousands of tracks at once, just don't apply the wrong change because there is no undo.
    It is a good idea to backup before undertaking large scale changes. See this backup tip for a suggested approach.
    tt2
    Message was edited by: turingtest2

  • I will starting afresh website in my iWeb, it shows only the head or the command line and the command new website is inactive - what do I need to start over

    Help........
    I will starting afresh website in my iWeb, when I start the program it only shows the head or the command line and the command new website is inactive - what do I need to start over - what have I done wrong

    Don't quite understand what you mean, but it says at the bottom that you are still using iWeb 08 so depending on what OSX you are running, you might consider upgrading to iWeb 09.  This works with Lion, Mountain Lion and Mavericks.
    Apple no longer sells iWeb so if you decide to upgrade, then you'll need to purchase iWeb by going to Amazon and buying the iLife 09 or 11 boxed sets, both of which contain iWeb 09.
    Install this on your Mac and it might solve your problems, or just ditch iWeb and start again with one of the newer programmes out there that are still being supported and updated, such as RapidWeaver, Sandvox, Freeway Pro/Express, Flux 4, WebAcapella 4 and EverWeb (http://www.everwebapp.com).

  • Help!  Need to start over with iPhone 4!

    Got the phone, looks fine, started setup using old 3Gs--ie, made the call to the number below and typed in the number I was activating. Well, then realized the service might not know I was activating a replacement phone, though there was some question addressing that issue, and I quit that activation and set out to call the AT&T number on the new, unactivated, phone, thinking maybe it was rigged to go ahead and call this one number even though it was not activated. It did that and almost instantly a popup arrived saying my new phone was activated.
    Charge your phone/device following the instructions provided in the user's guide.
    Power on your phone/device.
    Call 1-866-499-8008 Monday-Friday from 8:00 a.m.–9:00 p.m. Eastern Time or Saturday from 11:00 a.m.–8:00 p.m. Eastern Time to activate your phone/device. You may be asked for any of the following information:
    Wireless Phone Number
    AT&T Premier Order Number
    15 digit IMEI number
    20-21 digit SIM card number
    It DID NOT ask any of these other questions above.
    Well, the 4 seems to work for calls, but the Internet is ridiculously slow, way slower than my 3Gs, and iTunes put NONE of my apps back onto the new phone after I (laboriously) backed up the 3Gs in iTunes 9.1. Of course I had to upgrade to iTunes 9.2 when I attached the iPhone 4.
    So, w/o any of my apps, and with slow or no functionality on Internet, not much 3G at all, what I'd like to do is go back to square one, start over from activation. Is there any way to do that?
    Also, for some reason the phone is constantly asking me for the Voicemail password,even when there is no Voicemail and I am not trying to pick up Voicemail.
    I ordered thru AT&T (as you can see from the instructs above) so any advice would be welcome as to how to start over, get my apps onto the new phone, and have the thing run at least as well as my 3Gs.
    Thanks for bearing with me thru this labored description of the problem. I hope it's reasonably clear.
    Pier

    no msg

  • Gap in logs are too far to recover.  Need to start over I think.

    Hello,
    I have a dataguard setup and due to several circumstances the connection was lost to the standby and the archivelogs are gone for as far back as needed.
    I want to double check that this is the best method to get synched up again. On primary I am running rman backups every night. Here is my config....
    Oracle 10.2.0.5 (64 bit)
    Red Hat 5 enterprise 64 bit.
    PRIMARY
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 1 DAYS;
    CONFIGURE BACKUP OPTIMIZATION ON;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO COMPRESSED BACKUPSET PARALLELISM 3;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/u04/flash_recovery_area/snapcf_bcso.f';
    Standby
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 28 DAYS;
    CONFIGURE BACKUP OPTIMIZATION ON;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO COMPRESSED BACKUPSET PARALLELISM 4;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/u04/flash_recovery_area/snapcf_bcso.f';
    Backup script that is only run on primary. No backup on standby at the moment.
    run{
    crosscheck archivelog all;
    delete expired archivelog all;
    backup database plus archivelog not backed up delete all input;
    delete noprompt obsolete;
    #Fix for bug 964522.1
    delete force archivelog until time 'trunc(sysdate-1)' backed up 1 times to device type disk;
    So can I just copy over my flash_recovery_area to the standby FRA, restore database, recover database? Then set my log_archive_dest_2 on the primary and ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT; on the standby?
    I did not set this up initially and I see a couple issues I need to address on the standby
    db_recovery_file_dest string /u01/app/oracle/flash_recovery_area
    standby_archive_dest string /u04/flash_recovery_area
    Here is primary
    db_recovery_file_dest string /u04/flash_recovery_area
    What I'm not sure of is which one of these I need to switch on the standby or in RMAN on the standby. RMAN is going to look for the backup in the location set by db_recovery_file_dest on the standby for the files to recover. I don't have room on that drive so can I just simply change on standby db_recovery_file_dest = '/u04/flash_recovery_area' for the recovery then set it back when it's finished?
    Thanks

    Hello again;
    Monday is meeting day here.
    PRIMARY
    db_name='bcso'
    db_unique_name='bcso'
    log_archive_config='DG_CONFIG=(bcso,stdby)'
    log_archive_dest_1='LOCATION=USE_DB_RECOVERY_FILE_DEST VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=bcso'
    log_archive_dest_2='SERVICE=BCSTDBY_40 LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=stdby'
    FAL_SERVER=bcso
    FAL_CLIENT=stdby
    STANDBY
    db_name='bcso'
    db_unique_name='stdby'
    log_archive_config='DG_CONFIG=(bcso,stdby)'
    log_archive_dest_1='LOCATION=USE_DB_RECOVERY_FILE_DEST VALID_FOR=(ALL_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=stdby'
    log_archive_dest_2='SERVICE=bcso LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=bcso'
    FAL_SERVER=stdby
    FAL_CLIENT=bcso
    I just want to be clear that in *.log_archive_dest_2='SERVICE=BCSTDBY_40 I put the tnsnames.ora entry of the server I want to connect to not the instance name?Correct. The is the TNSNAMES.ORA entry.
    Important
    The way I show it you need to set DB_RECOVERY_FILE_DEST too.
    Example
    db_recovery_file_dest='/u04/flash_recovery_area'
    If the standby site's FRA is different you need to account for that.
    Once you get it going keep this query ( I would run once a day )
    http://www.visi.com/~mseberg/data_guard/monitor_data_guard_transport.html
    Best Regards
    mseberg

  • Can OATM Lexer error be fixed in place or do I need to start over?

    Hi,
    I am doing some trial runs of OATM. I had registered CTXSYS to include it in the OATM migration and I was aware that I might hit some issues because I couldn't locate the drkorean.sql script and wanted to still keep moving. Sure enough, I am 99% complete but have these errors in the logs for several schemas.
    DRG-11422: linguistic initialization failed
    DRG-11446: supplied knowledge base file /sechi/oracle/product/112/ctx/data/enlx/droldUS.dat not installed
    DRG-10595: ALTER INDEX CS_INCIDENTS_ALL_TL_N1 failed
    DRG-50857: oracle error in drixmd.PurgeKGL
    ORA-20000: Oracle Text error:
    DRG-13201: KOREAN_LEXER is desupported
    ORA-30576: ConText Option dictionary loading error
    DRG-50610: internal error: kglpurge
    My longterm (real) fix will be to run drkorean.sql BEFORE the migration so as to not hit these errors in the first place.
    However, once I locate this script and run it, could I just restart OATM migration for those schemas in which I got this
    errror? Can i (I should I) bounce the DB inbetween?
    If not, I will just restore the whole DB from backup and restart, pretending it never happened. I just want to know if
    in-place fixes can be done in case I were to encounter some issue when going live during the live run.
    Thanks, Marv

    Thanks all.
    I bounced the DB again. Got the same issue. Despite the "error log report" not having every single schema at 100%, using other queries I could not find any object that had not been migrated, and the audit report said SUCCESS everywhere.
    A friend a colleague had a script to generate some manual migration commands and it came up with these...24 of them
    ALTER INDEX "HR"."IRC_DOCUMENTS_CTX" REBUILD parameters ('replace storage APPS.TXN_IND_STORAGE_PREF') ;
    ALTER INDEX "HR"."IRC_DOCUMENTS_CTX1" REBUILD parameters ('replace storage APPS.TXN_IND_STORAGE_PREF') ;
    .. another 22 commands
    and I ran them and they all worked, except for this one:
    ALTER INDEX "JTF"."JTF_AMV_ITEMS_URL_CTX" REBUILD parameters ('replace storage APPS.TXN_IND_STORAGE_PREF')
    ERROR at line 1:
    ORA-29874: warning in the execution of ODCIINDEXALTER routine
    ORA-29960: line 1,
    DRG-10595: ALTER INDEX JTF_AMV_ITEMS_URL_CTX failed
    DRG-10758: index owner does not have the privilege to use file or URL datastore
    But this error I saw before in another metalink note as ignorable so I am ignoring it and continuing..
    may not even have needed to do the above commands since everything was listed as having migrated, but all but 1 worked so continued (this is a PRE-CRP) so going to keep going...
    now doing the steps like resizing the old tablespace and dropping empty files... will see if the system
    At this point I'm just interested to see if the system will come up...

  • HT1206 I've already deauthorized my computer once and i need to start over so i need to do it again and it says wait a year i dont have a year is there any way i can do it now?

    I've already deauthorized my computer once this year and i need to deauthorize it again and it says wait year. well i dont have a year is there snd way i can do it now?

    I am having the exact same issue, I have had many issues with this Ipod touch ever since I got it, lately it usually is just that the charge holds for about 20 minutes then dies. Now I used my ipod last night and it worked perfectly and now all of a sudden I woke up this morning took the ipod out of my docking station and the same problem has happened. I even took my ipod into work to see if it was my home wifi, but no the issue is still happening. Let me know if you found a solution. I use my ipod touch for alot of home web browsing and social networks. Do not have the cash right now to buy another one or get this one fixed. Thanks

  • Do I need to start over?

    Him, I was wondering because i had a sitation with my laptop a while back and I had to get the harddrive replaced. Well when i first bought my laptop, I found out that it had come with imovie, and one i had the hard drive replaced, I no longer had all the applications that i had used to have. Do I have to purchase them again? Because I think because I already payed for them I should be ok. I am needing imovie to rotate upside down videos and its difficult considering that I do not have imovie. What can I do about that?

    You can custom install the "missing" applications directly from the disc that originally came with your computer.  They should be inside the "bundled" software folder.

  • Need to start over with A3, can I restore and start again?

    I'm having so many of the same issues with A3 as most folks here plus a few others, with no fix in sight, and I'm thinking of just restoring my iMac via TM back to BEFORE I installed the trial version.
    Will this take me back to the A2 version and the A2 library?
    I've read here some helpful tips to clean up the A2 library before going A3, so I'm hoping if I just backtrack and do it right, all will be well.
    I tried doing a delete of A3 and a reinstall with the update disc, but I opened it up afterwards to the exact same yuk I had before.
    Any thoughts anyone, please? TIA.

    The short answer is, "Yes, of course."
    The longer answer is, "Shoot me an e-mail with details on what is and what is not working and maybe I can save you some work." Or maybe not.

  • Need to start over, how do I clear the music in iTunes but keep books, apps

    The external drive I connect to my laptop changes designation (E:to F: to E: to G: etc.) every time I plug it in and now I have two copies of everything.
    What I would like to do, first, is wipe out all the songs in my iTunes library. That is music only, apps, books etc are stored locally on the laptop, the music and music only is on the external hard drive.
    Then I want to figure out how to keep my external hard drive at the same drive letter and re-add my music from said drive.
    If anyone can help me with this it would be greatly appreciated.
    Dean
    Message was edited by: deanesp

    Thanks! I tried that before with Vists and it didn't work. It seems to have worked with Win7.
    I did a select all, deleted items from iTunes library but kept the files. I did all this with the hard drive disconnected. I went ahead and name the drive (m:) as you suggested. It works on two levels the drive is a My Book and contains my media.
    I'm not going to mark this as solved until I've had a few on-off cycles.
    Thanks again for the help!

  • Start over? Restore?

    So I made a few mistakes when setting up my server, and I need to start over. Do I need to do a restore, or is there an easy way to restore to defaults?
    When I set up the server, I failed to make an OD master first before beginning my quest to bind to AD. (we are a dual platform environment). After a few steps, I realized that I no longer had the option to start OD services... it is just flat out not in the services list. Is there a way to get it back, so I can set up my OD master? DNS is working fine... I just need to get to OD.
    In terms of a restore... I got a little nervous, so I held up.
    When I do command+R at start up it gives me the option to restore Lion. However, it doesn't say Lion Server. I am nervous that when I restore it will not restore the server software.
    Anyone done a restore this way?

    Anyone help with this?  
    I am restoring over 500gb to my local drive after a NAS was corrupted.  I'm very hesitant about putting stuff back out on the network drive again so i guess I may keep it on my local hard drive.  Currently, when I open itunes it has all of my old files remembered (just with exclamation points) and my playlists.  I'd love to keep that intact but point itunes to the correct files in a new location.
    Is it as simple as going to preferences and changing the location of the itunes folder once I have it in place?

  • Steps to start over with time capsule?

    i need to start over with time capsule, completely.  what are the steps necessary to do this?
    erase the TC (I can see how to do that)
    remove from Time Machine list (i can see how to do that, too).
    reset to factory defaults?  would that clear name and password.  do they get reset to something?
    is this step necessary.
    what else is needed?

    On an iPad or iPhone.....
    Tap Settings on the home screen
    Tap WiFi
    Under the heading of Setup a new AirPort Base Station, Tap Time Capsule
    The setup wizard will guide you through
    On a Mac running Lion, Mountain Lion or Mavericks
    Open Macintosh HD > Applications > Utilities > AirPort Utility
    Click Other WiFi Devices
    Click Time Caspule
    The setup wizard will guide you through

  • Why when i am downloading pictures from my iphone 4s to my mac it kicked me out and i need to start again the sync ?

    why when i am dowmloading pictures from my iphone 4s to my mac it kicked me out and i need to start over and over again i dont know what its going on ?

    plz guys help me...

  • HT1338 How can I start a software update from scratch?  error states that it was corrupted during transfer but when it starts over later, it still give the same error

    Software updates tells me it needs to download and install a new version of itunes.  When this notice first appeared the download started but stopped after about 34 MB and said the download was corrupted.  Later (after many restarts), the notice appears again but the download starts where it left off and immediately gives me the message that it is corrupted.  How do I force the download to start over from scratch?

    Check the version you're being offered, and go to Apple Support Downloads.
    Read the info on the update and decide if you actually need it. (if your OS version is 10.6.4 as shown in your info, I doubt that you will need it at all).
    The latest update I can find for iTunes is here; http://support.apple.com/kb/DL1426

  • I have LR5 on a mac book pro with a external hard drive with LR5 images. my problem is my external hard corrupted reformatedand have to this is expensive and i would to start over in LR5

    i have LR5 on a mac book pro with a WD external hard drive with my with my LR5 images . my problem is my external drive is corrupted .i was told by apple that my macshow the hard drive is there but it is not moumting and have to be reformat. i have to use recovery data to save my images on my external before i can refomat.iam willing to lose my images on my extenal hard drive but i would like to know can i erase my LR5 images and start over or delete LR5 and download it again

    Simply start a new catalog:
    File >> New Catalog
    Choose a new name and save.
    When the empty catalog launches you are ready to start over.

Maybe you are looking for

  • How to handle expired sessions in portals

    Hai all,   we have implemented a logic which is given in the following blog (to handle expired sessions). (Blog from--Thomas Jung) /people/thomas.jung3/blog/2004/12/06/bsp-developers-journal-part-xv--stateful-bsp-and-timeouts this is working fine whe

  • 1.83ghz Macbook and Adobe/Macromedia ??

    I'm a poor student at the moment and I'm considering the Macbook 1.83 because I already have access to a dvd burner if needed so don't want to pay the extra $400 for the 2.0Ghz model. That being said does anyone know if this MacBook will be adequate

  • Grainy output when converting cr2 to JPEG in Photoshop CS5

    Output JPEG becomes grainy whenever I am converting cr2 file to JPEG. Please help me with solution.

  • Browsing result set in gui

    how do i browse resulr set one by one i try to do but it place me in last row stat = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);                 res = stat.executeQuery("Select * from netTable");           while(r

  • Acrobat 8 Standard Digital Signature Problems

    Running Acrobat 8 Standard under Windows Vista Ultimate, both fully updated. Acrobat works fine BUT I cannot certify or sign docs because I always get the following error message: Creation of this signature could not be completed. Certificate parsing