Edit D:\app\Administrator\product\11.2.0\dbhome_1\oc4j\j2ee\oc4j_applications\applications\em\em\online_help\tdddg\tdddg_triggers004.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <script src="./callback.js" type="text/javascript"></script> <noscript>Your browser does not support JavaScript. This help page requires JavaScript to render correctly.</noscript> </head> <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta name="generator" content="Oracle DARB XHTML Converter (Mode = ohj/ohw) - Version 5.1.1 Build 005" /> <meta name="date" content="2009-04-21T9:46:25Z" /> <meta name="robots" content="noarchive" /> <meta name="doctitle" content="Tutorial: Creating a Trigger that Logs Table Changes" /> <meta name="relnum" content="11g Release 2 (11.2)" /> <meta name="partnum" content="E10766-01" /> <link rel="copyright" href="./dcommon/html/cpyr.htm" title="Copyright" type="text/html" /> <link rel="stylesheet" href="./dcommon/css/blafdoc.css" title="Oracle BLAFDoc" type="text/css" /> <link rel="contents" href="toc.htm" title="Contents" type="text/html" /> <link rel="prev" href="tdddg_triggers003.htm" title="Previous" type="text/html" /> <link rel="next" href="tdddg_triggers005.htm" title="Next" type="text/html" /> <title>Tutorial: Creating a Trigger that Logs Table Changes</title> </head> <body> <div class="zz-skip-header"><a href="#BEGIN">Skip Headers</a></div> <table class="simple oac_no_warn" summary="" cellspacing="0" cellpadding="0" width="100%"> <col width="86%" /> <col width="*" /> <tr valign="bottom"> <td align="left"></td> <td align="center"><a href="tdddg_triggers003.htm"><img width="24" height="24" src="./dcommon/gifs/leftnav.gif" alt="Previous" /><br /> <span class="icon">Previous</span></a> </td> <td align="center"><a href="tdddg_triggers005.htm"><img width="24" height="24" src="./dcommon/gifs/rightnav.gif" alt="Next" /><br /> <span class="icon">Next</span></a></td> </tr> </table> <p><a id="BABGEAIA" name="BABGEAIA"></a><a id="TDDDG52100" name="TDDDG52100"></a></p> <div class="sect2"><!-- infolevel="all" infotype="General" --> <h1>Tutorial: Creating a Trigger that Logs Table Changes</h1> <a name="BEGIN" id="BEGIN"></a> <p>This tutorial shows how to use the <code>CREATE</code> <code>TRIGGER</code> statement to create a trigger, <code>EVAL_CHANGE_TRIGGER</code>, which adds a row to the table <code>EVALUATIONS_LOG</code> whenever an <code>INSERT</code>, <code>UPDATE</code>, or <code>DELETE</code> statement changes the <code>EVALUATIONS</code> table.</p> <p>The trigger adds the row <span class="italic">after</span> the triggering statement executes, and uses the <a id="sthref566" name="sthref566"></a><span class="bold">conditional predicates</span> <a id="sthref567" name="sthref567"></a><code>INSERTING</code>, <a id="sthref568" name="sthref568"></a><code>UPDATING</code>, and <a id="sthref569" name="sthref569"></a><code>DELETING</code> to determine which of the three possible DML statements fired the trigger.</p> <p><code>EVAL_CHANGE_TRIGGER</code> is a <a id="sthref570" name="sthref570"></a><a id="sthref571" name="sthref571"></a><span class="bold">statement-level trigger</span> and an <a id="sthref572" name="sthref572"></a><a id="sthref573" name="sthref573"></a><span class="bold">AFTER trigger</span>.</p> <p>This trigger is part of the <a id="sthref574" name="sthref574"></a>sample application that the tutorials and examples in this document show how to develop and deploy.</p> <a id="TDDDG249" name="TDDDG249"></a> <p class="subhead2">To create EVALUATIONS_LOG and EVAL_CHANGE_TRIGGER:</p> <ol> <li> <p>Create the <code>EVALUATIONS_LOG</code> table:</p> <pre xml:space="preserve" class="oac_no_warn"> CREATE TABLE EVALUATIONS_LOG ( log_date DATE , action VARCHAR2(50)); </pre></li> <li> <p>Create <code>EVAL_CHANGE_TRIGGER</code>:</p> <pre xml:space="preserve" class="oac_no_warn"> CREATE OR REPLACE TRIGGER EVAL_CHANGE_TRIGGER <span class="bold">AFTER</span> INSERT OR UPDATE OR DELETE ON EVALUATIONS DECLARE log_action EVALUATIONS_LOG.action%TYPE; BEGIN IF <span class="bold">INSERTING</span> THEN log_action := 'Insert'; ELSIF <span class="bold">UPDATING</span> THEN log_action := 'Update'; ELSIF <span class="bold">DELETING</span> THEN log_action := 'Delete'; ELSE DBMS_OUTPUT.PUT_LINE('This code is not reachable.'); END IF; INSERT INTO EVALUATIONS_LOG (log_date, action) VALUES (SYSDATE, log_action); END; </pre></li> </ol> <div class="helpinfonotealso"> <h2>Related Topics</h2> <p><a href="tdddg_triggers002.htm#BABDAGJJ">Creating Triggers</a></p> </div> </div> <!-- class="sect2" --> <!-- Start Footer --> <div class="footer"> <table class="simple oac_no_warn" summary="" cellspacing="0" cellpadding="0" width="100%"> <col width="86%" /> <col width="*" /> <tr> <td align="left"><span class="copyrightlogo">Copyright © 1996, 2009, Oracle and/or its affiliates. All rights reserved.</span><br /> <a href="./dcommon/html/cpyr.htm"><span class="copyrightlogo">Legal Notices</span></a></td> <td align="center"><a href="tdddg_triggers003.htm"><img width="24" height="24" src="./dcommon/gifs/leftnav.gif" alt="Previous" /><br /> <span class="icon">Previous</span></a> </td> <td align="center"><a href="tdddg_triggers005.htm"><img width="24" height="24" src="./dcommon/gifs/rightnav.gif" alt="Next" /><br /> <span class="icon">Next</span></a></td> </tr> </table> </div> <!-- class="footer" --> </body> </html>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de