REM $Header: wfinstall.sql 26.0 2003/12/16 13:40:45 vshanmug noship $ REM +======================================================================+ REM | Copyright (c) 2003 Oracle Corporation Redwood Shores, California, USA| REM | All rights reserved. | REM +======================================================================+ REM NAME REM wfinstall.sql - Check if WF Install was successful REM Use wf_resources table existance for the REM same REM DESCRIPTION REM Returns an error if the table does not exist REM USAGE REM sqlplus owf_mgr/owf_mgr @wfinstall.sql REM +======================================================================+ SET VERIFY OFF WHENEVER SQLERROR EXIT FAILURE ROLLBACK; WHENEVER OSERROR EXIT FAILURE ROLLBACK; select text from wf_resources where rownum < 2; exit;