Register Login

Is It Possible To Get the Table Name for a Given ROWID ?

Updated May 18, 2018

Hi all,

Is it possible to get the table name for a given rowid ?
if it is possible then how ?

Please help .

Thanks in advance .


Comments

  • 26 Sep 2014 5:46 pm Shalesh Singh Visen Best Answer

    Yes, its possible. If you have the row id. Select DBMS_ROWID.rowid_object('give your row id here') from dual; it will give object id. Once you object id query dba_objects. Select object_name, object_type, owner from dba_objects where object_id = give the object I'd here from previous query.


×