how to disable EXCEPTIONS in PL/SQL ?

From: Michael Stowe <Michael.Stowe_at_f573.fido.chi.il.us>
Date: Tue, 11 Oct 94 15:19:39 -0500
Message-ID: <781892379_at_f573.n115.z1.ftn>


You cannot disable exceptions, any more than you can disable begin or declare statements. Exceptions are raised, what you can do is trap them using normal PL/SQL syntax. A PL/SQL block consists of

DECLARE
BEGIN
EXCEPTION
END You are apparently neglecting to provide any exception handlers. The simple handler

exception when others then null;
end

Will cause the exception to be ignored. Received on Tue Oct 11 1994 - 21:19:39 CET

Original text of this message