Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: A RowId in Oracle 8i
Use
dbms_rowid.rowid_to_restrcted(rowid,0)
Example:
In 7.3.4
select rowid from table_name ;
In 8 and higher
select dbms_rowid.rowid_to_restricted(rowid,0) from table_name ;
Hope this helps
Regards
Willy
Received on Sat Feb 03 2001 - 23:29:51 CST
![]() |
![]() |