TADDR is "Address of transaction state object" and with this column you can use to join V$TRANSACTION ADDR Column.
To find out all locked objects of Database you can use following SQL
select a.oracle_username, a.object_id, b.object_name
from v$locked_object a, dba_objects b
where a.object_id = b.object_id




Reply With Quote