Where can we find information on date and time for rollback on Oracle 11g ?

Like to find out which log Oracle writes to in order storing information about rollback that is performed. I have an issue wherein, I believe a rollback has occurred after external reports have been generated... hence, the report no longer has the correct information on the state of the system. However, I need to confirm that this is what happened, as I couldn't explain why transactions that were performed prior to the reports were not on the system, yet it was reported in the transaction report. Thank you.

You should be able to find some rollback information in redo logs with LogMiner: http://download.oracle.com/docs/cd/E11882_01/server.112/e17110/dynviews_2035.htm#i1408263.

Similar Messages

  • Re: internal battery for eMac. Where can I buy one? (Date and time are becoming garbled).

    I have an eMac which shows the date and time as random figures, suggesting that the internal battery is dead. Where can I buy a replacement? My local Apple reseller does not stock them.
    evan239

    "It is in Western Australia, in a suburb of Perth."
    That helps! Considering adding that to your profile. It can get you help faster for future "where to get" questions. We have a lot of active helpers here who are your countrymen (and women).
    You may be able to find a battery seller locally, The PRAM battery is not limited to computer use. That model is also used in alarm systems. Look for a "1/2 AA 3.6V lithium" battery--that's about as generic description as one can give.
    I found a seller that has a chart of battery number equivalents:
    http://www.medicbatteries.com/battery-cross-reference-guide
    Look at the last line. There is a long list of manufacturers' battery numbers that are 1/2AA 3.6V. As long as you find one that's lithium (haven't seen any that aren't) you should be good to go.
    Regards from America's "Outback!"
    Allan

  • Where can I find information about creative/artistic software for my Mac?

    I write (mostly children's plays) so I need to find out exactly what kinds of software are available to me for scripts, film, published material, etc. I am planning to rewrite a script which has been produced on stage several times into an animated film if I can learn how.  I need some software to help me with this project.
    I also want software with various capabilities for needlework, quilting, crochet, sewing, pattern design, etc.
    For years I have seen artists and craftspersons on tv demonstrating work they have designed on their own computers and then transferred to an art medium and though I have looked, I am evidently not checking in the right places to find said software.
    Any help, suggestions or websites you give will certainly be appreciated.
    Thanks
    Carole

    itzamirakul wrote:
    I write (mostly children's plays) so I need to find out exactly what kinds of software are available to me for scripts, film, published material, etc. I am planning to rewrite a script...
    For writing you can use anything, but for the most bang for no money, I suggest the free LibreOffice suit.
    It has word processing, spreadsheet, drawing and much more, all free. It's cross platform so anyone who downloads the free software can read it your files. Mac, PC or Linux, doesn't matter.
    http://www.libreoffice.org/
    itzamirakul wrote:
    ...into an animated film if I can learn how.  I need some software to help me with this project.
    Well depends upon what sort of animation, 3D animation is very complex and requires a powerful machine and even racks of machines to do the final rendering.
    2D simple animation I don't know of anything off hand, I'm guessing you need something that you can make changes in the frames and play it over and over until you get the desired result, moving things around and creating your story line. etc.
    You'll need music and sound creation tools to create your clips, iMovie/GarageBand can likely help bring those two together, but doesn't do the animation, you need something else for that.
    itzamirakul wrote:
     I also want software with various capabilities for needlework, quilting, crochet, sewing, pattern design, etc.
    Ok your likely looking at the Adobe Creative Suite, with Photoshop, Illustrator and perhaps even InDesign for laying out any printed material like manuals and booklets.
    Illustrator has exteremly fine controls of detailed artwork, create patterns that you can duplicate and so forth.
    itzamirakul wrote:
     For years I have seen artists and craftspersons on tv demonstrating work they have designed on their own computers and then transferred to an art medium and though I have looked, I am evidently not checking in the right places to find said software.
    Well like any artist they use the computer to assist them to get their artwork done, but then need to use various manual techniques and sometimes very expensive machines you never see to transfer that medium to their end product.
    Computers can't do everything, they are tools that can perform certain functions, it takes the human and training to transfer that to a finished piece.
    A education in the graphics art field may assist you there, reading how to go about achieving your goals and see how a computer can help or not help.
    You can check over at Cnet.com or MacUpdate.com for creative Mac software, lots ot choose from.

  • Where can I find information about exceptions and errors?

    I'm new to Java and sometimes run into errors that I don't understand. Is there a list of common errors somewhere that I could look at to at least get a general idea of what's causing my problem?
    for instance:
    I'm writing a little program where the user inputs a number and depending on their input a message is displayed. I'm using java.awt.*, java.awt.event.*, & javax.swing.* for my events, buttons, and other goodies. My program compiles & I can execute my main but when I click on the button that grabs the input I get the following errors.
    java.lang.NullPointerException
         at Horoscope$ButtonHandler.actionPerformed(Horoscope.java:44)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    I'm not asking for anyone to solve this for me. It's critical that I learn how to troubleshoot and figure out a solution. I was just wondering if there was a site or link on the web that generally discusses what these (and other) errors mean. Or if anybody could tell me what they mean?

    The Java API documentation is the first place to look. Each exception or error is a class. For instance, information on java.lang.NullPointerException is in the API for the java.lang package, toward the bottom.
    For more than that, just search the internet for the name of the exception/error.

  • HT4946 Once I backup my iPhone, where can I find the SMS data on my mac? The link Library/Application Support/MobileSync/Backup/ doesn't seem to exist on my computer. I have OS X, version 10.6.8. Thanks.

    Once I backup my iPhone, where can I find the SMS data on my mac?
    The link Library/Application Support/MobileSync/Backup/ doesn't seem to exist on my computer.
    My mac has OS X, version 10.6.8.
    Thanks.

    Here, let me explain the way you use the word "crap" in a sentence like this, especially when I'm asking for help from a total stranger such as yourself. It's rude, obviously I know now not to do something like download something like that to my computer. It's not the difficult to figure out, and obviously I'm suffering the consequences for it now. So are you planning on helping me? Or should I not reply to your next reply if it has the word "crap" in it? I'm sure this whole discussion board was created to be used in a professional way, which is how I would like to keep my responses.

  • Where can I find my proxy address and the printer code on the HP officejet 8500A Plus

    where can I find my proxy address and the printer code on the HP officejet 8500A Plus

    Hi TanaS,
    I understand that you're trying to setup ePrint.  Most users when setting up ePrint do not require entering a proxy address. 
    Are you having trouble setting up ePrint?
    Are you getting an error message when you try to setup ePrint?

  • HT5766 Where can I find the size of a download for a software update now?

    Hello,
    Where can I find the size of a download for a software update now?
    Since I upgraded to Mountain Lion (Mac OSX 10.8.3) this information is no longer available in software updates listing you get if you click on the Software Update menu item from the Apple menu.
    I found the download size (often hundreds of megabytes for an individual update and sometimes a set of updates might amount to a few gigabytes) to be very helpful, and now that it seems no longer available (I can't even see it on the web page I came to for more information, thinking the download size would surely be specified there), it is frustrating. My current example is iTunes 11.0.3
    I would greatly appreicate having this information back in the software updates listing, but since it is no longer available there, and I don't know where else to find it, if anybody can enlighten me to its whereabouts, I'd be grateful.
    Thanks and cheers!

    stewedapples wrote:
    I would greatly appreicate having this information back in the software updates listing, ...
    You can leave Feedback for Apple here...
    http://www.apple.com/feedback/
    stewedapples wrote:
    ... I don't know where else to find it...
    http://support.apple.com/downloads/#

  • Where can we find Business content Cubes,DSo,Reports for CS,PM,Treasury Man

    Hi
       Where can we find Business content Cubes,DSO,Reports for CS,PM,Treasury Management modules in help.sap.com. I searched in help.sap.com.But i haven't get exact link in the site. I haven't have access for the BI system.Can any list out the cubes ,DSO's,report that are in Business content for the above modules or give me the help.sap.com links, so that i can go through on it. It is for BI 7.O.
    Does is there any differences in Business content objects for SAP BW 3.5 and SAP BI 7.0.
    Thanks&regards
    Revathi

    You can find the businee contect in SAP Network Libraray
    http://help.sap.com/saphelp_nw70/helpdata/en/3d/5fb13cd0500255e10000000a114084/frameset.htm
    where you will find all the information.
    Business content is no differnce between in 3,5 or 7.0..may add few more

  • I purchased extra Icloud storage on my IPhone for £14 but have been charged an additional £1.58p where can I find out what this charge was for?

    I purchased extra Icloud storage on my IPhone for £14 but have been charged an additional £1.58p where can I find out what this charge was for?

    Sign in, activation, or connection errors | CS5.5 and later
    For your payment issues you will have to contact ales support.
    Mylenium

  • Find record insert date and time in a table

    Hi All,
    I want to get record insert date and time in a table. There is no datetime column in my table. Are there any possibility to get date and time for each record?
    Thank You

    Thats not easy. If your transaction info still resides on active portion of the log you can use fn_dblog to read out the time at which the transactions occurs. This is useful only if you try it shortly after transaction.
    the code would look like this
    SELECT *
    FROM fn_dblog(null,null)
    WHERE [Transaction Name] LIKE 'INSERT%'
    OR [Transaction Name] LIKE 'UPDATE%'
    Also see
    http://www.mssqltips.com/sqlservertip/3076/how-to-read-the-sql-server-database-transaction-log/
    http://solutioncenter.apexsql.com/read-a-sql-server-transaction-log/
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • To find the latest date and time

    HI all,
    I have a Ztable which contains execution date and exe time.
    1) I need to find the latest date and time How  can we do this?
    2) In my program,I need to insert some values to date,time and status field in Ztable. How can I insert it directly into the table?
    for eg ZTAB-DATE = 010122006
            ZTAB-TIME = 12.20.20
          just INSERT ZTAB is enough or NOT????????????
    POINTS WILL BE REWARDED
    THANKS IN ADVANCE

    1) You can do a number of things, one you can get all of the relevant records and sort the internal table by date and time in decending order, then simply read the first record of the internal table.
    2) It depends on the key of the table. Say for example, you have a table like so.
    MANDT
    KEYFIELD
    DATE
    TIME
    If the key alreays exists, you can use the modify statement to update the record, if it dosn't exists, you need to use the INSERT statement to insert the records.
    data: xtab type ztable.
    xtab-keyfield = 'ABC'.
    xtab-date = '20070207'.  " or sy-datum
    xtab-time = '221600'.    " or sy-uzeit.
    insert ztable from xtab.
    Make sure to use internal fomat for DATE and TIME.
    Regards,
    Rich Heilman

  • Where can I find the backup files in iTunes for my iPhone, I want a copy

    Where can I find the backup files in iTunes for my iPhone, I want to copy the backup files for all app's and phone numbers, I'm using Windows XP
    I just need to know where its hiding, a link that shows an address where would sure help

    First you'll need to make sure your XP is set up to view hidden files and folders.
    1. Open My Computer from the desktop or Start menu.
    2. In the Tools menu, click Folder Options.
    3. Click the View tab.
    4. In the "Advanced settings" pane under "Hidden files and folders" make sure that the "Show hidden files and folders" option is selected.
    5. Click OK.
    Now you should be able to track down your backup file at the location in the following document:
    [iTunes: "Backup could not be saved on the computer" alert message|http://support.apple.com/kb/TS2529]

  • Why can't I set month,date and time on my imessage?

    Why can't I set month, date and time on my imessage?

    The way the date/time was displayed was changed in iOS7. There had been numerous complaints about not having a date/time stamp on all posts, so it was changed to display the time for all by sliding the post to the left. They left the date stamp to show differently. I couldn't tell you what it does for posts more than a week old, as I never save my messages that long.
    Meg's post provides for software where you could move the SMS to the computer and it should contain a full date/time stamp on it.

  • My mac can't find the volume" Data" on Time Capsule. Also Ican't find with the disk utility program the hard disk in the Time Capule; so I can't format the disk again. What can I do?

    My Mac can't find the volume " Data" on Time Capsule, Also I can't find with the disk-utility program the hard disk in the Time Capusule.
    So I can't format the disk in the Time Capsule
    Deconnevt and then connecting the power tp the Time Capsule gives also no solution.
    What can I do?
    Joe

    I listed the commands.. that is how you manually mount the disk.. follow exactly the commands I gave you.
    In finder use top menu, go, connect to server.
    Type in the following.
    AFP://TCname or AFP://TCIpaddress (obviously you replace with the actual name or the actual IP address).
    If that fails..
    try
    SMB://TCname
    Here is the screenshot.
    tardis4 being the name of my TC.
    It should then ask you for your credentials.
    And it should remember them in the keychain and be able to then get TM to connect.

  • Where can i find or download a driver software for my iphone, my pc did not recognized it

    where can i find or download a driver software for my iphone? My pc did not recognized it!

    Download iTunes and install iTunes and that will install the drivers.

Maybe you are looking for

  • Modification of a field in an IDOC

    Hi, I want to modify a field in a standard IDOC. For eg., I want to change a vendor starting with "A" to one starting with "B" like A001 to B001. I would like to know how should I use conversion rules for the same. Where are they defined? And what is

  • How to change delivery date (LFDAT) in  me57 item data

    hi , While  Creating purchase order  (me57)  . on the basis  of info rec   . i want to change  delivery date  by passing  info rec to table eine and get field aplfz  . then adding  aplfz to sysdate    and pass it to  Delivery date   . i have done thi

  • How can resources be emebedded in pdf file?

    in the Acro3DJS.pdf, exist 2 information 1) "Resource Objects Some objects, such as Image, are driven by content that is streamed from a file or over a network. To create an Image, load a .png, jpg, or .gif file as a Resource, which you may subsequen

  • Use of JCo destinations with SAP Logon Ticket

    I would have got a precision about the use of a connection pool in a JCo destination using the SAP Logon Ticket connectivity: do i have got the same functionality around the pool connection if i use the SAP logon ticket instead of a user/password ins

  • SAP Business Objects Performance Tuning Guides

    Hello everyone, I'm currently looking for Performance Tuning guides for the hardware/software. In particular, parameters for the hardware. I'm having a hard time finding any kind of guides on the server side of Business Objects. So I'm wondering if a