Oracle how to get an object Id from the rowid
=================================
select dbms_rowid.rowid_object('<RowID>') from dual;
select data_object_id, object_name, object_type from dba_objects where data_object_id in ('<OBJECT_ID>');
The content includes guides, troubleshooting tips, and best practices for managing database environments, with an emphasis on Oracle and PostgreSQL systems. You can read the full analysis at Anuroop Challa's DBA Blog.
Oracle how to get an object Id from the rowid
=================================
select dbms_rowid.rowid_object('<RowID>') from dual;
select data_object_id, object_name, object_type from dba_objects where data_object_id in ('<OBJECT_ID>');
View running queries in postgreSQL: SELECT * FROM pg_stat_activity;