DBA Data[Home] [Help]

FUNCTION: SYS.GETTVOID

Source


1 Function GetTvoid(type_oid IN RAW, vsn IN PLS_INTEGER) return
2                     RAW AS
3  tv_oid RAW(16);
4 begin
5  select tvoid into tv_oid from type$ where toid = type_oid and
6    version# = vsn;
7  return (tv_oid);
8 end;