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 .
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
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.