Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Interesting Exploit in PL/SQL

RE: Interesting Exploit in PL/SQL

From: Laimutis Nedzinskas <Laimutis.Nedzinskas_at_landsbanki.is>
Date: Thu, 30 Nov 2006 10:32:14 -0000
Message-ID: <5A8896FB2AFC5445A7DCFC5903CCA6B06FEB9F@W03856.li01r1d.lais.net>


It´s somewhat funny how people tend to get tangled in formal rules set by no else but themselves.  

The simple truth is that there are no universal recipes. The answer to each such best practices question is ''it depends"  

It depends if "'when others null", goto, 101 columns table, letting developer into production db are appropriate things to do or not.    

Brgds, Laimis N.  


From: oracle-l-bounce_at_freelists.org [mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Stefan Knecht Sent: 30. nóvember 2006 10:18
To: Jacques.Kilchoer_at_quest.com
Cc: oracle-l
Subject: Re: Interesting Exploit in PL/SQL

There are situations where you can use when others then null; - and it even makes sense.

For example, we've had a procedure to enable / disable auditing on all objects in a database. To avoid having to filter out all possible errors due to the huge number of different objects (and especially the sys objects) we used a construct like

begin
noaudit all on x.y;
exception
when others then null;
end;

If the noaudit fails for whatever reason (we just don't care why here), we simply go on to the next object. That was perfectly fine for this case.

Stefan

Fyrirvari/Disclaimer
http://www.landsbanki.is/disclaimer

--
http://www.freelists.org/webpage/oracle-l
Received on Thu Nov 30 2006 - 04:32:14 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US