How to find ...db recoverd till what time ?

Dear All,
I have a query.
I have done incomplete recovery of database. How can i know till what time i have recovered database ?
Please let me know any more information you need from my side.
Thanks in Advance.
Regards,
Rajesh.

You should be able to set RESETLOGS_CHANGE# in V$DATABASE (it would also be logged in the database instance's alert.log file when the OPEN RESETLOGS is issued).
(Note : RESETLOGS_TIME in V$DATABASE shows when you did the Resetlogs, which isn't the same as the point in time to which you did the Recovery).
You can then use the function TIMESTAMP_TO_SCN against the RESETLOGS_CHANGE# as in
select scn_to_timestamp(resetlogs_change#) from v$database;Notes :
a. The very act of OPEN RESETLOGS will itself increment the SCN very slightly to a value slightly higher than the last SCN actually recovered.
b. The SCN_TO_TIMESTAMP function returns an approximation of the time, not the exact time.
Hemant K Chitale
http://hemantoracledba.blogspot.com

Similar Messages

  • I move folders from my internal hard drive twice to an external hard drive.  Now I believe Lr does not know how to find my photos.  What can I do to get this cleared up.

    I move folders from my internal hard drive twice to an external hard drive.  Now I believe Lr does not know how to find my photos.  What can I do to get this cleared up. 

    Jim has a very good suggestion. There are many factors at work here:
    1) How are you connecting the external drive to the computer?
    2) How big are files (329 x 1MB is not the same as 329 x 25MB)?
    3) What is your computer specification?
    4) Do you have any power saving settings on (in particular something that would send the computer/hard drives to sleep)?

  • How to find the last update date time and user of record field peoplecode

    how to find the last update date time record field peoplecode?
    Thank you.

    One can check the last update date time using the following query
    SELECT LASTUPDDTTM FROM PSPCMPROG WHERE OBJECTVALUE1 LIKE 'RECNAME' AND OBJECTVALUE2 LIKE 'FIELDNAME'

  • How to find the difference between 2 time values in Java

    hi all,
    i have 2 time values
    String time1="6:20";
    String time2="21:30"
    How to find the difference between 2 times in Java?
    pls help
    thanx in advance....

    Calculating Java dates: Take the time to learn how to create and use dates
    Working in Java time: Learn the basics of calculating elapsed time in Java
    Formatting a Date Using a Custom Format
    Parsing a Date Using a Custom Format

  • How to find out the last date & time on which a program has been run

    Hi Experts,
    Can anybody tell how to find out the last date on which a purticular program has been run.
    Valuable answers will be rewarded.
    Thanks & Regards,
    Satish.

    Hi!
    Try STAD transaction. Unfortunately it contains a huge amount of data, so it is available only for a few days backwards... Maybe some weeks, but you can't make yearly reports from its data... So it's not useful to see, which program is in use or not...
    I planned once to download it weekly, but it was not so important...
    Regards
    Tamá

  • How to find out when the last time a tcode was run by someone

    Hi Team,
    I am just trying to find out if there is a way to find out when the last time a tcode was run by someone.I mean i need to know when was a certain  tcode was last run.
    Thanks,
    Priyanka

    HI Priyanka
    Another way would be using transaction STAT,enter the t-code you like to monitor.This will provide all details,like user, time etc...
    Hope this will help
    Thanks
    Santosh Kumar

  • How to find the last executed date ,time and user of the quaery

    Hi,
    How to find the following information of the Query
    1. Where all the place these queries/web template used.
    2. When was it last executed.
    3. Who executed last.
    Regards,
    Hari

    hi Hari,
    you can try table /BI0/APERS_BOD00
    for query, first go to table RSRREPDIR, give field COMPID
    with query technical name and get GENUNIID, then go to table /BI0/APERS_BOD00, field TCTOBJNM = RSRREPDIR-GENUNIID, TCTUSERNM and TCTTIMSTMP -> user name and last executed.
    for web template, give field TCTOBJNM in table /BI0/APERS_BOD00 with web template name.
    hope this helps.

  • How to find an error at the time of inserting at particular column.

    Hi,
    I'm loading the data into a table by using procedure . At the time of inserting data i got a precision error or value too large error. Is there any way to find out at which column the error has occured.
    Thanks a lot your help in advance.
    Thanks & Regards,
    Ramana.

    Hi
    Do you know how the data to be inserted is queried in the pocedure? Is there a cursor or an 'insert..select..' statement?
    Ott Karesz
    http://www.trendo-kft.hu

  • How to find table size in run time ?

    Hi all
    I am using JTable problem is. �table data is being changed frequently� I waana method or any idea by which I could find the preferred size of table at run time�
    Thanks & Regards

    but my problem is I have written one renderer for increase the row height at run time behalf of data.. And we are supposed to guess what you are doing from your original question?
    I changed the code in my actionPerformed() method as follows:
    table.setRowHeight(0, table.getRowHeight(0) + 10);
    System.out.println(table.getPreferredSize());
    The preferred size still changes.
    I have no idea what your problem is or why you even care what the table preferred size is. You just add the table to a scroll pane and scroll bars will appear when required.

  • How to find working workingDirectory on run time

    How can I see my working Direcftory at run time.

    Are you trying to get the working directory on the server side or the client side?
    As Fabrizio mentioned, you can use WebUtil, but this would return the client side information. To obtain the server side details, you can use imported java. Fortunately, because the server side jvm already has everything you need to do this, there is no need to know how to code in java. Refer to the Forms Java Importer documentation for details:
    http://www.oracle.com/webapps/online-help/forms/10g/topics/java_importer/c_javaimporter.html
    All you need to do is import the following java packages into your form:
    java.lang.System
    java.lang.Exception
    Then add some pl/sql similar to this to your form:
    PROCEDURE java_call IS
         jo     ora_java.jobject;     
         rv     ora_java.jobject;
         ex     ora_java.jobject;     
    Begin
    -- Get server side working directory.
    -- This is the same value which is set in formsweb.cfg
         MESSAGE (SYSTEM.getProperty('user.dir'));     
    EXCEPTION
    WHEN ORA_JAVA.JAVA_ERROR then
              message('Unable to call out to Java, ' || ORA_JAVA.LAST_ERROR);
    WHEN ORA_JAVA.EXCEPTION_THROWN then
              ex := ORA_JAVA.LAST_EXCEPTION;
              message (Exception_.toString(ex));
    END;Once imported, you will have easy access to a variety of server side (Java) properties which can return valuable information. Refer to the following:
    Link: [http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html#getProperties()]

  • How to find the detailes of what information exatcly is extracted?

    I would like to know in detail what information is being extracted (and hence migrated) by iSetup.
    I was able to find the list of objects used in the Selection set. For example, I can choose to migrate profile options, but It does not migrate every single profile, so is there a place were I can see the list of all profiles being collected? (and similar for the other templates/objects ?
    Thanks

    1) Use Offline Transformation capability of Setup Manager which provides spread sheet view of extract data.
    2) Create standard reports on extracted data. The output format can be chosen to pdf, rtf or excel.

  • How to find out WAS last restart time?

    Hi Friends,
    I have an EJB in which I am creating a log file,
    where I need to log, what was the Date-time(TimeStamp) when my Web application server was last restarted.
    I mean every time my WAS gets bounced, and when I run my application(EJB), I need to make an entry in my custom log file for the last restart.
    Please tell me if you any idea about this.
    Regards
    Deepak

    Hi!
    Try STAD transaction. Unfortunately it contains a huge amount of data, so it is available only for a few days backwards... Maybe some weeks, but you can't make yearly reports from its data... So it's not useful to see, which program is in use or not...
    I planned once to download it weekly, but it was not so important...
    Regards
    Tamá

  • How to find backup on Lion Server time machine backup?

    I have a MacBook laptop running Lion that has gotten automated Time Machine network backups by my Mac Mini running Lion Server. Had to do a reformat of the laptop and when I used Recovery HD from the laptop to find the laptop backup files on the server, I can't find them.  I can find the server backup file, and the network version of time machine may bundle the laptop backup and mini backup in that file, but Recovery HD claims there are no valid backups.
    Am I doing this the wrong way?  Any help?

    Just found it here:
    https://discussions.apple.com/message/19152432#19152432
    And it worked.
    zeke

  • How to find the customer master creation time?

    Hi All,
    I want to know the time when created the CUSTOMER MASTER RECORD.
    Is there any SAP TABLE for this purpose?
    Thanks in advance.
    Nanan

    Hi,
    Go to XD03 --> Enter your Customer number
    Then go to Enviroment-->Multiple display
    You will display all changes of this customer.
    Execute --> You can see date and time of creation
    Or Use OV51 is the same
    Rgds

  • How to find a duplicate file and Time stamp in an app. server

    Hi all,
               My program need to access a file from application server. If there exists DUPLICATES in the same folder I need to pick the one with latest TIMESTAMP.
    Could u please help me in this regard?

    Hi Dude,
    I suppose ,file names are unique in the same folder.
    So proceed normally,specifying the exact file path.
    Regards,
    Lakshmanan

Maybe you are looking for

  • Total Settlement Value field  not getting populated in IW38  Transaction

    Dear all PMCS group Members, I have a list of  Maintenance Orders on which  Actual Costs are posted and also periodic settlements done before TECO.  When i list these Maintenance Orders in IW38 transaction the system is bringing in the values in  Tot

  • ASR & multiple accounts --- Can I do this?

    I've been trying to clone my MacMini that has several user accounts set up. I can use ASR successfully, but the clone doesn't have the accounts in the login menu. The acct folders are on the hard drive, but not on the login page. How can I use ASR to

  • How to install ubuntu along with windows 7

    I have  HP 15-r062TU. In that i  am install windows 7 64bit os. Now i would like to install ubuntu 12.04 or 14.04  LTS os along side windows 7. For first booting from usb/cd-rom it shows along side with windows after hitting continue button it reboot

  • Spry accordion widget not playing nicely with IE7

    Good day. The answer to this issue may be on this forum somewhere already, but I cannot take the time to scour the several hundreds of posts. I've build and customized my first spry accordion, which can be viewed at http://www.brianfisherart.com/Bio/

  • Java.io.Reader to String conversion

    I am working on a SOAP project with Jaxm and I retreive the result as a Reader, but I need to convert it into a String. I did the following code but it is incredibely slow with a big reply (280kb) as I retrieve each character one after each other. Do