DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: Why no entry in V$TRANSACTION?

  1. #1
    Join Date
    Aug 2000
    Posts
    194
    I am running a large update and then querying the v$transaction while the update is going on. But the V$transaction table has no entries. where do I get the transaction information from?

    I am running Oracle SE Ver 8.1.6 on RedHat Linux.

  2. #2
    Join Date
    May 2000
    Location
    ATLANTA, GA, USA
    Posts
    3,135
    If there is no entry in V$TRANSACTION, that means no transaction takes place at the time of your query executed.
    V$TRANSACTION has info only when active transactions are running.

  3. #3
    Join Date
    Jul 2000
    Posts
    243
    Hi

    This query will return results if there are transactions in your session:
    select t.*,s.*
    from v$transaction t, v$session s
    where t.addr=s.taddr
    and audsid= (select userenv('sessionid') from dual)

    if you get no result after this query, then you are not running any transactions at the moment the statment was issued.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width