REM dbdrv: none REM $Header: wfqs.pls 26.0 2004/12/08 02:19:02 kma noship $ REM /*======================================================================+ REM | Copyright @ 2004, Oracle. All rights reserved. REM +======================================================================+ REM | FILENAME REM | wfqs.pls REM | DESCRIPTION REM | Create queue package for array REM | USAGE REM | sqlplus wfusr/wfpwd @wfqs.pls REM | EXAMPLE REM | sqlplus owf_mgr/owf_mgr @wfqs.pls REM *======================================================================*/ SET VERIFY OFF WHENEVER SQLERROR EXIT FAILURE ROLLBACK; WHENEVER OSERROR EXIT FAILURE ROLLBACK; create or replace package Wf_Q as type ItemTypeTable is table of varchar2(8) index by binary_integer; type ItemKeyTable is table of varchar2(240) index by binary_integer; type ProcessActivityTable is table of number index by binary_integer; type BeginDateTable is table of date index by binary_integer; end Wf_Q; / commit; exit;