UNDO_SQL in FLASHBACK_TRANSACTION_QUERY is null

Hello

does anyone know why FLASHBACK_TRANSACTION_QUERY give me null values in UNDO_SQL and the OPERATION has the value "UNKNOWN"? I read in Oracle Database 11g Administration Expert that: "If you see the UNKNOWN value in the column of the OPERATION, it means that there is not enough information to cancel your undo tablespace to correctly identify the exact type of operation of the transaction.» The transaction is still cease at the time of executing the query on FLASHBACK_TRANSACTION_QUERY, so it should available all the necessary CANCELLATION.

The database is a 2 node RAC on AIX 11.2.0.1.

Any ideas?

Thanks in advance,
Swear

No, it's not that it wasn't enough to undo, but it was not connected because of additional logging off. It is a change that is starting from 11 g. To ensure that completel information are saved in the FLASHBACK_TRANSACTION_QUERY view, you must activate it. You can do this by,

alter database add supplemental log data;

HTH
Aman...

Tags: Database

Similar Questions

  • error format of the year in the instructions at FLASHBACK_TRANSACTION_QUERY. UNDO_SQL

    I run Remove 20 on table tab1 and validate them.

    flashback is enabled: in the field of table FLASHBACK_TRANSACTION_QUERY UNDO_SQL I can find all the instructions to cancel: in this case, I found exactly 20 insert 20 rows that I deleted.

    the problem is in the date format: insert all have such a timestamp field:

    INSERT IN THE SCHEMA. Tab1 (< fields >) VALUES (TO_TIMESTAMP (February 1, 90 00:00:00 '), < other values >)



    This IS NOT GOOD, insert: I want 4-digit year, so I try to change sessions:

    ALTER SESSION SET nls_timestamp_format = 'DD-MON-YYYY HH24:MI:SS ";


    then I re - run 20 e delete replay flashback table... now insert all have such a timestamp field:

    INSERT IN THE SCHEMA. Tab1 (< fields >) VALUES (TO_TIMESTAMP (February 1, 90 00:00:00 '), < other values >)


    This insert IS ALSO NOT GOOD... good year 1990 is NO 0090! so I try another format:

    ALTER SESSION SET nls_timestamp_format = 'DD-MON-RRRR HH24:MI:SS ";

    and then I also try:

    ALTER SESSION SET nls_timestamp_format = 'DD-MON-RR HH24:MI:SS. "


    nothing... I always have year 0090 in the Insert (instead of 1990)


    P.S. In practice I want something like this: http://www.oracle-developer.net/display.php?id=320

    half page, where it says XID 040028008 A 010000 there is the format I need

    I made just a test:

    SQL> select undo_sql from FLASHBACK_TRANSACTION_QUERY  where table_owner = 'A'
      2  /
    
    UNDO_SQL
    -------------------------------------------------------------------------------------------------------------------------
    insert into "A"."T12"("C1") values (TO_TIMESTAMP('21-JUN-90 06.57.35.000000 PM'));
    insert into "A"."T12"("C1") values (TO_TIMESTAMP('16-JUN-09 06.54.35.656000 PM'));
    
    13 rows selected.
    
    SQL> alter session set nls_timestamp_format = 'DD-MON-RRRR HH.MI.SSXFF AM'
      2  /
    
    Session altered.
    
    SQL> select undo_sql from FLASHBACK_TRANSACTION_QUERY  where table_owner = 'A'
      2  /
    
    UNDO_SQL
    -------------------------------------------------------------------------------------------------------------------------
    insert into "A"."T12"("C1") values (TO_TIMESTAMP('21-JUN-1990 06.57.35.000000 PM'));
    insert into "A"."T12"("C1") values (TO_TIMESTAMP('16-JUN-2009 06.54.35.656000 PM'));
    

    You are quite sure that your original data were in 1990?

    With greetings
    Krystian Zieja

  • How to obtain the details of the last dml performed on a table

    Oracle 9i: database

    Hai All

    I made an update on a table yesterday. So how to get these details (the last DML operations performed).

    Any help is highly appricatable


    Thanks and greetings

    Srikkanth.M

    If the flame is enabled in your database, you can query FLASHBACK_TRANSACTION_QUERY for your TABLE_NAME and filter by START_TIMESTAMP AND COMMI_TIMESTAMP.

    SQL>  desc flashback_transaction_query;
     Name                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     XID                                                RAW(8)
     START_SCN                                          NUMBER
     START_TIMESTAMP                                    DATE
     COMMIT_SCN                                         NUMBER
     COMMIT_TIMESTAMP                                   DATE
     LOGON_USER                                         VARCHAR2(30)
     UNDO_CHANGE#                                       NUMBER
     OPERATION                                          VARCHAR2(32)
     TABLE_NAME                                         VARCHAR2(256)
     TABLE_OWNER                                        VARCHAR2(32)
     ROW_ID                                             VARCHAR2(19)
     UNDO_SQL                                           VARCHAR2(4000)
    
  • SQL undo

    Hello
    in 10g R2:
    user SCOTT has updated EMP table:
    update emp set sal=2000 where ENAME='JAMES';
    And SYS DBA question table FLASHBACK_TRANSACTION_QUERY:
    SQL> select operation, undo_sql from FLASHBACK_TRANSACTION_QUERY where logon_user='SCOTT';
    
    OPERATION
    --------------------------------
    UNDO_SQL
    --------------------------------------------------------------------------------
    BEGIN
    
    
    UPDATE
    update "SCOTT"."EMP" set "SAL" = '950' where ROWID = 'AAAMfPAAEAAAAAgAAL';
    And try to CANCEL it:
    SQL> update "SCOTT"."EMP" set "SAL" = '950' where ROWID = 'AAAMfPAAEAAAAAgAAL';
    But the sql session hangs on it.
    Do you have an explanation?
    Thank you.

    Have you committed the previous refresh?

    concerning

  • FLASHBACK_TRANSACTION_QUERY does not

    I try the following and it still fails.
    Can someone tell me why?
    SQL> select * from v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    
    SQL> show parameter undo_tablespace
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    undo_tablespace                      string      UNDOTBS1
    SQL> show parameter undo_retention
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    undo_retention                       integer     900
    SQL> select retention
      2  from dba_tablespaces
      3  where tablespace_name='UNDOTBS1';
    
    RETENTION
    -----------
    GUARANTEE
    
    SQL> connect test/test
    Connected.
    SQL> create table tx(x int);
    
    Table created.
    
    SQL> insert into tx values(0);
    
    1 row created.
    
    SQL> commit;
    
    Commit complete.
    
    SQL> select * from tx;
    
             X
    ----------
             0
    
    SQL> update tx set x=5 where x=0;
    
    1 row updated.
    
    SQL> commit;
    
    Commit complete.
    
    SQL> connect admin/admin
    Connected.
    SQL> select versions_xid XID, versions_startscn START_SCN,
      2    versions_endscn END_SCN, versions_operation OPERATION,
      3    x
      4  from test.tx
      5  versions between scn minvalue and maxvalue;
    
    XID               START_SCN    END_SCN O          X
    ---------------- ---------- ---------- - ----------
                                                      5
    
    SQL> --
    SQL> select     xid, start_scn, commit_scn, operation, logon_user, undo_sql
      2  from flashback_transaction_query
      3  where  table_owner='TEST'
      4  and table_name='TX';
    
    no rows selected
    
    SQL>
    I see that I have the TABLE_OWNER value NULL column:
    SQL> select     xid, table_owner, table_name, operation, logon_user, undo_sql
      2  from flashback_transaction_query
      3  where table_name='TX'
      4  order by start_scn;
    
    XID              TABLE_OWNER TABLE_NAME OPERATION                        LOGON_USER UNDO_SQL
    ---------------- ----------- ---------- -------------------------------- ---------- ---------------
    02000D001E030000             TX         UNKNOWN                          TEST
    03001A001C030000             TX         UNKNOWN                          TEST
    
    SQL>
    Edited by: P. Forstmann on May 28, 2013 21:18

    Edited by: P. Forstmann on May 28, 2013 21:20

    you have enabled the additional logging

  • Auto unblocking "null" Apple Watch

    My Apple Watch connects my rMBP and everything with macOS Sierra very well, but when my watch sends me a notification says "null" unlocked by this Apple Watch. How to replace the text "null"?

    Solved it for me by signing in and out of the iCloud on mac + iphone then restart all 3.

  • Siri in him sending text with the value 'NULL '.

    When I say, "Siri, text my wife, 'X', ' Siri responds correctly,"here is your message to Jill: 'X'. "" "  "Ready to send it?"  I say 'Yes' and sends the message.  As soon as I get a text from my carrier saying the recipient of the message was invalid.  100% of the time, I see that Siri has sent a text with the value NULL.

    I tried to restart my phone.  I tried to remove and re-add my contacts.  Anyone else having this problem?  Someone knows how to solve?

    If it's by the carrier, you should contact them and see what they receive in return for their side. Ive had Siri send messages for me and I have never seen this one IOS.

  • Talk to the text sent by 'null '.

    When I try and talk to the text of my husband, it continues to send "null" while Siri said she looks and she is sending.  It works with my two other friends who have iPhones.  Suggestions?  I already turned my phone market.

    I guess "speak text" means:

    • You use Siri to send a message.
    • You send it to an iPhone.
    • The message is sent using iMessage (which may or may not be true, even if your husband has an iPhone).
    • The message is not part of a thread existing, but is actually starting a new message thread.

    So presumably, you call Siri to send a message to your husband's iPhone and dictate the content of the message to Siri.

    Assuming that it actually sent via iMessage (blue bubble), check the settings > Messages > Send and receive > start new Conversations on and see it is set correctly.

  • Siri sends texts to null

    Siri frequently sends texts to a "null" contact no listing in contacts, ineffective reboot.

    To help us help you, can you give us some information?  Siri just done this voluntarily at random?  Did you Siri (somehow) when this happens?  You dictate a text message when this happens?  You have a "null" contact in your contacts list?  Anything you think would be useful.  Without any further information, is the general solution of these kinds of problems:

    1. restart,
    2. reset,
    3. restore from a backup, and
    4. Restore as new.

    In that order.

    Restart your iPhone, iPad or iPod touch - Apple Support

    Restore your iPhone, iPad or iPod touch from a backup - Apple Support

    How to clear your iOS device and then set up as a new device or restore from backups - Apple Support

  • Null message dated 31/12/1969

    Periodically a message null - no object of /, content - with a date of 12/31/1969, appears in a folder randomly. View source shows nothing. I can delete the message.

    I renamed the original records which gave me bad, created new ones with the right names, copied the contents of the old files to the new and deleted msf etc. as described. So far so good.
    We will close and we will see if it reappears.
    Thank you for your excellent advice.

  • Backup problem: iMacG5.sparsebundle could not be accessed error null

    Hello

    I have an iMac G5, 27 "; Processor - 3.4 GHz Intel Core 17; Memory - 4 GB 1333 MHz DDR3; Software - OS X 10.9.5 (13F1808)

    Since yesterday, it was not able to Time Machine backup.

    The initial error was "iMac that G5.sparsebundle could not be found (error-1).

    I found a few tips here and there followed:-unplug TC; go to network/SystemPreferences, renew the DHCP lease

    Still did not work.

    Is passed to the next stage of advice:-open the TM preferences panel, remove the TC list of backup destinations, add in

    Still did not work.

    Error message has now changed to "iMac that G5.sparsebundle could not be found (error (null)).

    Is this a defective Time Capsule?  (This is the conclusion, in other similar post, I found that my error message ('null') is different from that of this post).

    Thanks for any advice,

    Lori

    I would ask here if I were you iMac (PPC)

  • How can I delete a data: / / (null) we Marshals.gov of the browser Chrome on an iPad?

    I have an iPad Air and my browser Chrome was completely blocked from use with a likely virus. The description of ' Data: / / (null) we Marshals.gov ' to block the iPhone or iPad. Virus blocking US Marshals.gov data: / / (null) on iPhone or iPad is in fact one of these fake Scam FBI site called FBI moneypak virus, virus from the FBI, U.S. Department of Justice virus or malware security NSA. Popup of crime Marshals.gov US focuses on the mobile device user US iPhone or iPad.

    I would like to get a resolution from a source other than Yoo security for this issue as they declare that "it is ONLY $56 USD 69.95 $ 20% to only once with complete fix guaranteed. You can pay here:https://safecart.com/yoosecurity/yoocare/specialoffer and once you have finished the payment, then we can move forward. »

    Yoo Security Web site: Similarly, this malware blocker disguises US Marshals. Gov to send a $ 500 fine online through the use of the fake warning message to accuse people of doing illegal activities and to require those inexperienced prepaid card, but in reality most of the cases, mobile users did nothing illegal things online. Once we Marshals.gov data: / / (null) virus is downloaded in Apple defrost as the iPhone or iPad, it will show soon fake message warning U.S. Marshals crime to take over the entire screen for iPhone or iPad, saying your Apple ID and your mobile device has been blocked for security reasons. On top of this long US Marshals gov article message warning screen, it shows you real country, city, location details, and then he accuses you of listening * things, pirated, video music download and use or dissemination of protected, content that violates '' law of copyright and related rights. '' For these reasons, your mobile iPhone or iPad is locked as a punishment and it should also send a 500 dollar fine within 24 to 72 hours.

    When inexperienced users, iPhone or iPad are this data: / / (null) we Marshals.gov popping up on their mobile device, they will be freaked out at death and worried if police or FBI police Provost is going to catch him. They don't not think about this issue and note that U.S. Marshals fine warning is one thing to scam. Inexperienced users will soon buy a prepaid card and send money as the rogue application. Disguise the Government Department legitimate as this U.S. Marshals Gov or Department of Justice, police as the police FBI or authentic police is their tactic perfect incentive for cyber con man scamming people for money. A lot of people feel scared and guilty when they see such a policy solemn right WARNING notification showing on their device even if they have nothing wrong to commit a crime and violating the articles of the law. Because it looks very real and legitimate, and can also alert us Marshals.gov data: / / (null)' t be closed or output, these null warning message data to manage successfully to extort big money recently. US Marshals.gov data: / / (null) malware is categorized as a kind of Trojan horse malware, it also provides the ability to access personal information like bank account online, credit card, passwords or data trades etc. It is very dangerous for the security of the information. To remove this Marshals.gov we blocker earlier is a good idea to help protect the security of personal information.

    If we Marshals.gov warning message is displayed on your iPhone or iPad and you had an alert javascript fined, your device is infected withUS Marshals.gov scam malware, it will be difficult for you to remove it completely with antivirus, because there is no antivirus perfect for killing threats on iPhone or iPad and also this malware US Marshals scam is very delicate and can escape from security applications. In this case, manually remove with sufficient expertise online is the best way for users of iphone or compressed completely eliminate it.

    Main symptoms of US Marshals.gov data: / / (null) on iPhone or iPad

    1. it is designed to lock the iPhone or iPad and ask you to pay a fine of $ 500 to unlock your device. In fact, it's just a big scam.

    2. it locks your Apple device, claiming that you have violated the law of the local office by visiting illegal information online.

    3. as soon as this data: / / (null) we Marshals.gov target your Apple device, it totally blocks your access to the Internet and prevents you from doing anything here.

    4. it allows cybercriminals remote access to your iphone/ipad device from Apple to steal your personal information and other sensitive information.

    If you find all of the symptoms listed above showing on your iPhone, or your iPad, your device must be suffered with a malware infection (which can be this warning crime U.S. Marshals, Mandiant USA Cyber Security virus, Department of Justice Virus, Ukash Paysafecard Virus, virus notice of warning from the FBI, the virus of the Australian Federal Police and RCMP Ukash virus etc.) that blocks your access to your device. Welcome to contact Experts Online YooSecurity for manual removal guide. Also, we will provide a short removal guide below for reading and writing device.

    Please tell us how to eliminate viruses and get unlocked Chrome. Thank you!

    Start by looking at this trick:

    Phony 'technical support' / 'ransomware' popups and web pages

  • TypeError: Error #1009: cannot access a property or method of a null object reference?

    Mr President.
    I updated firefox and always this type of problem
    every time I tried to open the flash game site iam getting this question. sometimes IE browser cannot open it too much.
    "".... TypeError: Error #1009: cannot access a property or method of a null object reference.
    to ASGames / fun_Menu)
    to ASGames / frame2)
    at flash.display::MovieClip/gotoAndStop()
    to WeddingTianaDressup_fla::Timeline_102 / playGames ()... » »

    but the same site can be opened in other browsers in the same pc... but the same site a user goes to another computer on the browser firefox itself. How do not know where is the problem... ?
    so please, some can help hu?

    Dear Sir.
    Thanks for your answer...! I did what you said but it doesn't work. new iam having the same problem...!

  • Verizon email... can't answer the null status said e-mails: 404

    Since Firefox, update 31, I can't respond to incoming emails. When I try to send an email or respond to that I get this message: unable to State Null charge: 404. I use the webmail to Verizon and they say it's a Firefox problem. With the help of Mac Mini Mac OS X 10.6.8


  • Time machine is unable to perform a backup. Not able to access the sparsebundle. Problem occurred first on snow leopard OS. Followed Dragon upgrade to El Capitan. Only difference has error code of 109 changed to null. What about someone?

    Time machine is unable to perform a backup. Not able to access the sparsebundle. First of all, there is problem with the Snow Leopard operating system. Dragon followed in the upgrade to El Capitan. Only difference was error code 109 changed to 'null '. What about someone?

    We need some info.

    You can access from the finder Time Capsule? If this isn't the case, then Time Machine will not work.

    You upgrade the computer snow to El Capo and keep the same name?

    If you want to backup, it is best to start again... clean the new backup any attempt to add a previous backup failed.

    I recommend that you actually erase the TC... do a complete factory reset and start again.

    The previous backup if necessary can be archived on a USB drive connected to the TC assuming that Airport utility can still access it. Airport utility accesses the TC?

    With update installs all sorts of things can go wrong... so tell me more if you can not get anywhere.

Maybe you are looking for

  • Open google in new tabs

    I want to be able to open google whenever I click on a new tab. I use a score 10.1 Galaxy tab 2 with Firefox as my browser. The other thing I want to be able to do is have my bookmarks across the top line, as I have on my laptop. Is this possible. I

  • How can I disable the window reopening?

    It opens all the time when I try to play. It's always the same after reboot or reinstallation.

  • get error 14 for 2 days. Unable to open mail, but works on internet explore

    When I try to open my email, a 14 mistake appears and says that there is a temporary problem and can last from minutes to hours to correct. It's two days, and it's still there. I can go to internet explore and set up my email.

  • By default not listed as alternative external protocol handler

    In Windows, I recorded my own Manager for an external Protocol in the registry. When I click on the link in Firefox or Thunderbird, I show the dialog box "launch the Application' in which I should choose an application for the management of the Proto

  • stand workstation Z1

    my workstation z1 stand lays flat monitor for maintenance, or extends a bit for the display of the monitor, but while until it does'nt seem to block in an upright position. It will quickly return to the level of the table because the wight of the mon