Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: design question - stored procedures - best practice
Guys,
I have a stored procedure that loads data and writes to an error log a = specific field/message when there are issues.
I know that a better design would be to modularize this code as I have = repetition/redundancy - yuck.
I don't return anything when I write to the log so I am thinking I = should have the parent procedure do the integrity check then a child = procedure (versus a function) write to the log.
Help - can someone provide advice on this????
here is a snippet. I check values in a field then write to a log table:
/***Test 1***/
IF=20 @AC_VENT_IMMED =3D 'T' AND (@AC_VENT_30MIN =3D 'T' OR @AC_VENT_MORE_6HR =3D 'T') BEGIN insert into acclaris_logPlease see the official ORACLE-L FAQ: http://www.orafaq.com
(state_file_number,field_name,
reason,create_date) values
(@STATE_FILE_NUMBER,'AC VENT','UNIQUE',getdate())
print 'FAILED TEST ON AC CHECK' END /***Test 2***/ IF=20 @AC_VENT_30MIN =3D 'T' AND (@AC_VENT_IMMED =3D 'T' OR @AC_VENT_MORE_6HR =3D 'T') BEGIN insert into acclaris_log
(state_file_number,field_name,
reason,create_date) values
(@STATE_FILE_NUMBER,'AC VENT','UNIQUE',getdate())
print 'FAILED TEST ON AC CHECK' END ----------------------------------------------------------------
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Fri Aug 27 2004 - 16:11:59 CDT
![]() |
![]() |