Re-Store from Oradata Folder

Hi All,
My machine has been crashed, I was using windows O/S , I never took any type of backup i.e. Import/ Export or RMAN. All I have right now copy of ORADATA folder. Now I installed windows again and I want to recover my databases from ORADATA folder, could you please guide me step by step so that I could be able to recover my lost data.
Any immediate help will be highly appreciated.
Thanks in advance.

hi,
I have got only data files in my ORADATA Folder
You have no redo log files[i]
I don't have control file there.
You have to create control file like
STARTUP NOMOUNT
CREATE CONTROLFILE REUSE DATABASE "taj"
NORESETLOGS ARCHIVELOG
MAXLOGFILES 5
MAXLOGMEMBERS 3
MAXDATAFILES 10
MAXINSTANCES 1
MAXLOGHISTORY 113
LOGFILE
GROUP 1 'D:\ORACLE\PRODUCT\10.1.0\ORADATA\TAJ\REDO01.LOG' SIZE 10M,
GROUP 2 'D:\ORACLE\PRODUCT\10.1.0\ORADATA\TAJ\REDO02.LOG' SIZE 10M,
GROUP 3 'D:\ORACLE\PRODUCT\10.1.0\ORADATA\TAJ\REDO03.LOG' SIZE 10M
DATAFILE
'D:\ORACLE\PRODUCT\10.1.0\ORADATA\TAJ\SYSTEM01.DBF' SIZE xxx,
'D:\ORACLE\PRODUCT\10.1.0\ORADATA\TAJ\USERS01.DBF' SIZE xxx,
CHARACTER SET xxxxxxxxxafter mount your database you have datafile or redo log files for open your database.
just try on your test machine and post here if any error you face.
regards
Taj
Message was edited by:
M. Taj

Similar Messages

  • Recovering DB from oradata folder

    Gurus
    i want to recover my db from oradata folder.i have redologs,controlfile and datafiles.
    plz help and let me know the steps
    Regards
    Nitn

    What is wrong with your database and are the files that you have from the orafolder copies of the database that were made when the database was shutdown? Are you in archive log mode?

  • Oradata folder size over 6.5 gb

    What should I do in this case? One temp.dbf file>3.5 gb. Which files can I delete from oradata folder
    Amitesh

    You should also check dba_temp_files to see if the temp file belongs to your temporary tablespace and v$logfile to see if the redo log files are used by the instance. You should also make sure that the files do no belong to another database instance running on the same server.
    John

  • Anyone know how to delete emails from trash folder?

    I have hada Droid phone for about 6 months.  When I delete emails from my inbox it goes to a "trash" file (similiar to trash file in Outlook).  It is getting full.  Any idea how to delete from trash folder.  My wife also bought the same phone but she does not have a trash file.  No one at our verizon store can answer my question as to how to delete from trash folder and don't seem to know how I have a trash folder on my email account.

    I'd go on the P.C. side of your Mail and start clearing it will clean what's on the phone and the Computer i have done this Many time on my Gmail and Yahoo.. b33

  • How to get all image files from a folder to wwv_flow_files?

    Hi there!
    Is it possible in apex to show, in a report look-a-like, all image filenames from a folder in another machine (i enter in that machine by ip) and insert all files into wwv_flow_files?
    I want to see all files, then pick one and open a image...
    But it can't be by browse item... it has to show all filenames as a list...
    If it is possible, how can i do it?
    Thanks!
    Best regards,
    Luis Pires

    Hi,
    you can connect to the server using UTL_HTTP.
    Then for each files you copy the response into a BLOB to be able to show it or to store it in a table.
    A piece of code :
    begin
       -- initialize the BLOB.
       dbms_lob.createtemporary(l_blob, false);
       -- path to the file
       l_url := 'http://your_server/your_file.jpg';
       -- begin retrieving the target.
       l_req := utl_http.begin_request(l_url);
       -- identify ourselves (some sites serve special pages for particular browsers)
       utl_http.set_header(l_req, 'User-Agent', 'Mozilla/4.0');
       -- start receiving the response.
       l_resp := utl_http.get_response(l_req);
       -- copy the response into the BLOB.
       begin
          loop
             utl_http.read_raw(l_resp, l_raw, 32767);
             dbms_lob.writeappend (l_blob, utl_raw.length(l_raw), l_raw);
          end loop;
          -- stop when exception end_of_body is raised
       exception
          when utl_http.end_of_body then
             utl_http.end_response(l_resp);
       end;
    end;It's a minimal example, you may need authentication, check l_resp.status_code, etc...

  • When using Iphoto to import photo from existing folder, what happens if I delete the photo in Iphoto ? Will the original file in the folder be deleted too?

    When using Iphoto to import photo from existing folder to iphoto, what happens if:
    1. I delete that photo in iphoto? will the original file in the folder be deleted too ?
    2.  when importing, does the hard disk store 2 versions of the photo, hence occupying additional space in the harddisk?

    1 - no  --  iPhoto only manages fiel within the iPhoto library - it does not ever do anything with files outside the library
    2 - No idea what you are asking - by default (and strongly recommended) iPhoto copies the original to the iPhoto library and you delete the source file outside the iPhoto library - iPhoto alwasy has at least two versions of every photo and some times three - it always have the original, a thumbnail and once a photo is modified a preview - this is not optional - if it is not what you want then iPhoto is not the correct progrtam to be using for phopto management
    LN

  • How to copy a file from one folder to another folder in Linux

    Hello everyone,
    Oracle forms 11g 11.1.2.0.0
    OS: Oracle Linux
    We use webutil to upload files to the application server from the client machine, and stores them in a folder named JOB_DOCS on the application server (This folder is created as a databse directory too). File types are JPEG, GIF, PDF, TXT, BMP, DOC, XLS etc...
    At a later stage when the user tries to view the uploaded documents, this was not getting displayed on the screen
    on our windows server, when the user clicks on the print button we copy the file from the JOB_DOCS folder to the forms\java folder using the below command
    HOST('COPY ' ||d:\JOB_DOCS\test.pdf||' '||'c:\oracle\middleware\as\forms\java\test.pdf ,NO_SCREEN);
    once the file is under the forms\java folder then it is getting displayed on the screen to print or save, and later we remove the file from forms\java folder.
    But my problem here is, recently we have installed our application on Oracle Linux server, and we have JOB_DOCS folder there, and the users can upload files to this folder also. How can we copy the file test.pdf from JOB_DOCS to forms/java in linux?
    And what could be the reson for the document cannot be accessed from the folder where it is saved? We tried giving folder permissions, adding the folder to PATH variable etc.

    For copying and moving directories you can use the cp and mv commands just like you use them with files. Yeah, I know. If you've already tried to copy a directory with cp, you've probably noticed that cp just complains at you. Probably it says something like cp: omitting directory yadda yadda. You see, the cp command wants you to use the -r option if you want to copy a directory with its contents. The -r means "copy recursively":
    $ cp -r dir1 dir2
    The above creates a directory named dir2 whose contents will be identical to dir1. However, if dir2 already exists, nothing will be overwritten: the directory dir1 will be copied into the dir2 directory under the name dir2/dir1.
    When renaming directories, you use the mv command exactly the same way as with files:
    $ mv dir1 dir2
    When dealing with directories, mv works a bit like cp does. If dir2 doesn't exist, the above will rename dir1 to dir2, but if dir2 exists, the directory dir1 will be moved into the dir2 directory under the name dir2/dir1.
    ref http://www.tuxfiles.org/linuxhelp/dirman.html

  • Can you please make sure the next update you do on iTunes automatically saves your purchased items without going into iTunes tabs. I lost a heap of my later itune downloads again! I'm furious! And please make dragging music from a folder straight into pla

    I lost my recent purchases again! My phone synced automatically and didn't save any new purchases. Not the 1st time this has happened!! I don't want to have to go into tabs in iTunes to tell it to remember to save my purchased iTunes items!! It should save them automatically. How can I get them back??? Also , please enable dropping music straight from a folder into iTunes playlist. iTunes is unbearable for me to use now!! I liked apple because you made things simple. I only ever sync my phone if I know I have a lot of spare time now. It's painful to use.
    With the iPhone .. When I'm in a call it doesn't show me the time whilst I'm on a call.. Please fix this. Big writing for time.
    Music player doesn't pop up when I double click.. Nothing happens when I double click when locked screen. I know you swipe from bottom to get it now but double click should be dedicated to music player
    If feels like apple is trying to make it less compatible with everything not apple . I can't afford everything apple!!

    We are itunes users just like you.
    You should transfer all purchases to your computer.  File>Devices>Transfer Purchases
    You can redownload some purchases in some countries:
    Download previous purchases from the iTunes Store - Support - Apple

  • How do I force a file download from a folder above the root?

    I am new to ColdFusion and need some help. I set up a virtual folder on my website and then mapped in the CF9 admin panel to a "Docs" folder above my root, where I would like to store sensitive documents. CF tags are enabled.
    I know that my mapping is set up correctly, because when I set up a cfm page with the following code, I can successfully download the file:
    <cfheader name="Content-Disposition" value="attachment; filename=Calendar.pdf">
    <cfcontent type="application/pdf file=/Docs/Calendar.pdf">
    But what I need is to create one cfm age that will be able to handle downloads of multiple files types and names from the folder above my root.
    I then found Duke Snyder's solution on an older forum for the "click link and download file" question where he suggests making a "download.cfm" page with the following code:  I did this, and named the file "download.cfm"
    <cfsetting enablecfoutputonly="yes">
    <cfheader name="Content-disposition" value="attachment; filename=""#Url.FileName#""">
    <cfcontent type = "foo/bar" file = "/Docs/#Url.FileName#">
    Then Duke suggests: "Now I pass the FileName through the Url and it WILL ask if you want to open or download the file. We accomplish this by making up an eronious file type."
    I then set up a password-protected page on the site that lists the titles of a number of documents, with links to the virtual folder, where they can be downloaded.  One of the links, which goes to "Calendar.pdf" I constructed as: "download.cfm?FileName=Calendar.pdf"  When I click on the link, I get the popup box that says "Do you want to open or save this file?  With the name listed as: "download.cfm?Filename=Calendar_pdf"
    When I click "Save", I get the message: "Internet Explorer cannot download download.cfm from www.... Internet Explorer was not able to open this Internet site.  The requested site is either unavailable or cannot be found. Please try again later.
    I must have constructed the link incorrectly. Any ideas?  Thanks in advance for your help.

    I am trying to force the download of pdf files from a folder above the root.  The file below is named "download.cfm"  I pass the name of the file (Calendar.pdf) in the URL link, as follows: download.cfm?filename=Calender.pdf
    In the ColdFusion admin panel, I mapped a folder in the root "Docs"  to point to a folder with a different name above the root.   I have tried the code below, which was generously supplied by another member of this forum, but it does not seem to recognize the CF mapping. Do I need to use another CF Tag for the mapping to working correctly?
    <cfsetting enablecfoutputonly="yes">
    <cfheader name="Content-disposition" value="attachment; filename=""#Url.FileName#""">
    <cfcontent type = "application/pdf" file = "/Docs/#Url.FileName#">
    Thanks for your help

  • Moving messages from one folder to another.

    hi there,
    I am trying to move messages from one folder to another. It works perfectly when i try to move one message at a time. However when i try to move more than 1 message(for e.g 2 messages) only the first message is being move to the destinated folder and while attempting to move the 2nd message it is throwing IndexOutOfBounds exception.
    This is how i am attempting to move the message.
    String destFolder = request.getParameter("fold");
    String srcFolder = request.getParameter("originalFolder");
    Store store = (Store)session.getAttribute("store");
    Folder sourceF = store.getFolder(srcFolder);
    sourceF.open(Folder.READ_WRITE);
    if(!(destFolder.equals("null")))
    String[] msgs = request.getParameterValues("list");
    System.out.println(msgs.length);
    Folder destinationF = store.getFolder(destFolder);
    destinationF.open(Folder.READ_WRITE);
    if(msgs != null)
    for(int i=0; i<msgs.length; i++)
         int msgNbr = Integer.parseInt((String)msgs);
         int[] msg_id = {msgNbr+1};
         Message[] msg = sourceF.getMessages(msg_id);
         sourceF.copyMessages(msg,destinationF);
         sourceF.setFlags(msg, new Flags(Flags.Flag.DELETED), true);
         sourceF.expunge();
         destinationF.expunge();
    session.setAttribute("mails", sourceF);
    try
    response.sendRedirect("../Inbox.jsp");
    catch(IOException ex)
    ex.printStackTrace();
    This is how i am trying to do it... Please help me i really need this urgently. Kindly help me ASAP.
    Help is very much appreciated.
    Thank you.
    Renuka.

    Well your code is unreadable because you didn't post it properly, but I'd guess you've fallen into the old multiple-delete trap in a new way. It's like this:
    To start with you have messages numbered 0, 1, and 2, let's say. So you write a loop that lets i run from 0 to 2 and delete message number i in the loop. What really happens? The first time through the loop you delete message number 0, after which you are left with messages numbered 0 and 1. The second time through the loop you delete message number 1, after which you are left with message 0 only. The third time through the loop you delete message 2, which isn't there and you get that message.
    That's just a guess, I didn't have the patience to read that ugly unformatted code. There are two ways to do the multiple delete properly, if that's actually your problem: (1) run the loop upwards from 0 and always delete message 0; (2) run the loop downwards from N-1 to 0 and delete message i.

  • I accidentally Deleted the Mac app store from my computer. How can I get it back? I am using Yosemite on a MacBook

    I accidentally Deleted the Mac app store from my computer. How can I get it back? I am using Yosemite

    Another way is to open your Time Machine back up or clone (if you have one) and copy the App Store app from the /Applications to your Macintosh HD's /Application folder.
    Right click on the Time Machine icon in the Menu Bar.
    Select Enter Time Machine; then navigate to a date you know it was still there and copy if from the /Applications folder.

  • Fscommand() to open a pdf from cd folder...

    hi,
    need to open a pdf thats inside a cd:
    but this doesn't work!?
    on (release)
    fscommand("exec", "DOWNLOADS\Elefante.pdf");
    the DOWNLOAD folder is on the CD root

    IndioDoido wrote:
    > hi,
    > need to open a pdf thats inside a cd:
    > but this doesn't work!?
    > on (release)
    > {
    > fscommand("exec", "DOWNLOADS\Elefante.pdf");
    > }
    > the DOWNLOAD folder is on the CD root
    Wish it was that easy :) First of all, FS command CAN'T refer
    to any folder so
    the DOWNLOADS concept is out.
    All the content has to be store in FSCOMMAND folder, it's
    flash security feature.
    Secondly, that action does not open anything except
    executable file.
    That's where the name comes from "EXEC", so you can only use
    exe, com, bat etc...
    You could use BAT file to open pdf but it will prompt the
    ugly DOS window even tho
    if you set the ECHOE off, something we can't control, pity
    because bat is a easy
    solution but not so neat if you make commercial work.
    Clean solutions are available only with 3rd party tools.
    For many years I have been using Flash Jester tool call
    JStart. Works like charm
    all the way, no extra pop up DOS windows.
    http://flashjester.com/?section=tricks_jtools_jstart
    JStart will allow you to not only launch a program, but use
    parameters to make the
    program open files, perform special actions and just about
    anything you can use
    parameters for. You can also choose to launch files with
    their default associated
    program.
    Another solution is provided by Rick Turoczy, it's pretty old
    but it should still
    work. Perhaps give it a try.
    http://www.flashgeek.com/tutorials/07_launchapp_01.asp
    Easy to use tool that allow you to launch basically anything
    from the projector.
    As long as there is system default application supporting
    particle file.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Help! After restoring my computer from Carbonite, My e-mails are corrupted. Each one multicorruptedplies a bajillion times! I erase them from the folder, erase them, then they come back. I have three mailbox accounts,each one does the same.

    eHelp! After restoring my computer from Carbonite, My e-mails are corrupted. Each one multiplies a bajillion times! I delete them from the folder, empty trash, them, then they come back. I have three mailbox accounts,each one does the same.

    This is the Mac App Store forum.
    For your specific issue, you'll get more feedback in the Snow Leopard forum.
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.6_snow_leopard

  • I have only oradata folder. how i can create orapwd file.

    i have oracle 8.1.7 installed on oracle 2000 professional. my harddisk crashed but i have oradata file only.
    how i can create orapwd from that
    thanks and regard
    Rizwan

    user4305377 wrote:
    i have oracle 8.1.7 installed on oracle 2000 professional. my harddisk crashed but i have oradata file only.
    how i can create orapwd from that
    thanks and regardRizwan
    You don't need oradata folder to create the password file. All you need is the orapwd util to create it. Just do as follows,
    E:\>orapwd
    Usage: orapwd file=<fname> password=<password> entries=<users> force=<y/n>
      where
        file - name of password file (mand),
        password - password for SYS (mand),
        entries - maximum number of distinct DBA and     force - whether to overwrite existing file (opt),
    OPERs (opt),
      There are no spaces around the equal-to (=) character.
    E:\>orapwd file=<your file location> password=<your password here> enteries=5 force=NOracle would create the password file for you in the Databsae folder.
    HTH
    Aman....

  • Reloading iWeb from desktop folder....

    I keep a folder on my desktop for my iWeb stuff. I moved this folder into another folder on my desktop last week, when I opened iWeb today it is empty. None of my websites are in iweb.
    How do I reload the pages from my folder back into iWeb?

    Hi Verbolo,
    The only way to get iWeb pages back to iWeb and edit those pages is to have the Domain.sites2 file where iWeb stores its files. To find that file you usually go to
    User/Library/Application Support/iWeb/Domain.sites2
    unless you placed it in the folder you talked about (the one you moved)
    To get the site showing up in iWeb just open the Domain.sites file by double clicking on it and your sites and pages will show up on the left side in the iWeb page browser. Note that the location, where you put the file, doesn’t matter.
    Regards,
    Cédric

Maybe you are looking for