-- -- Copyright (c) 1998, 2010, Oracle and/or its affiliates. -- All rights reserved. -- -- NAME -- helpdrop.sql -- -- DESCRIPTION -- Drops the SQL*Plus HELP table -- -- USAGE -- Connect as SYSTEM to run this script e.g. -- sqlplus system/ @helpdrop.sql SET TERMOUT OFF DROP TABLE SYSTEM.HELP; DROP VIEW SYSTEM.HELP_TEMP_VIEW; EXIT