/*=======================================================================+ | Copyright (c) 1998 Oracle Corporation Redwood Shores, California, USA| | All rights reserved. | +=======================================================================+ | $Header: wfdemoul.sql 26.3 2005/02/02 23:51:59 dlam ship $ | FILENAME | wfdemoul.sql | | DESCRIPTION | Unlock Workflow Demonstration users | NOTE: must be run from system account so as to create users | USAGE sqlplus system/system_pw @wfdemoul =======================================================================*/ WHENEVER SQLERROR CONTINUE connect system/&1 alter user SPIERSON account UNLOCK identified by SPIERSON; alter user BLEWIS account UNLOCK identified by BLEWIS; alter user KWALKER account UNLOCK identified by KWALKER; alter user CDOUGLAS account UNLOCK identified by CDOUGLAS; alter user WFADMIN account UNLOCK identified by WFADMIN; alter user SYSADMIN account UNLOCK identified by SYSADMIN; commit; exit;