rem {{ -----------------------------------------------------------------------+ rem File: jrphutil.sql rem Author: rem Date: rem Version: rem Project: The Oracle Common Repository rem Description: repos utilities - from the template schema rem Notes: rem RealAuth: Karl McHorton rem IncepDate: 12th March 1998 rem Copyright: (c) Oracle Corporation 1998. All Rights Reserved. rem Tagline: -- Oracle Repository: Managing *all* your data -- rem --------------------------------------------------------------------------+ rem Log of Changes rem --------------------------------------------------------------------------+ prompt Package Header: jr_util rem TODO: move this to somewhere better REM create sequence sdd_irid_seq start with 101; create or replace package jr_util is -- CW 6-Jul-98 -- sdd_object_versions not created before this (by jrinstall) --subtype irid is sdd_object_versions.irid%type; subtype irid is number; -- Generate IRIDs function get_new_irid return irid; pragma restrict_references(get_new_irid, WNDS); --Gets the current IRID for the session function get_current_irid return irid; pragma restrict_references(get_current_irid, WNDS); end jr_util; / rem rem ---------------------------------------------------------------------------+ rem }} end of file rem ---------------------------------------------------------------------------+