Edit D:\app\Administrator\product\11.2.0\dbhome_1\oc4j\j2ee\oc4j_applications\applications\em\em\online_help\tdddg\tdddg_triggers005.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 Generates a Primary Key for a Row Before It Is Inserted" /> <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_triggers004.htm" title="Previous" type="text/html" /> <link rel="next" href="tdddg_triggers006.htm" title="Next" type="text/html" /> <title>Tutorial: Creating a Trigger that Generates a Primary Key for a Row Before It Is Inserted</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_triggers004.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_triggers006.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="BABCGBBD" name="BABCGBBD"></a><a id="TDDDG52700" name="TDDDG52700"></a></p> <div class="sect2"><!-- infolevel="all" infotype="General" --> <h1>Tutorial: Creating a Trigger that Generates a Primary Key for a Row Before It Is Inserted</h1> <a name="BEGIN" id="BEGIN"></a> <p>The sequence <code>EVALUATIONS_SEQ</code>, created in <a href="tdddg_objects025.htm#BABJICJI">"Creating and Managing Sequences"</a>, generates primary keys for the <code>EVALUATIONS</code> table. However, these primary keys are not inserted into the table automatically.</p> <p>This tutorial shows how to use the SQL Developer Create Trigger tool to create a trigger named <code>NEW_EVALUATION_TRIGGER</code>, which fires <span class="italic">before</span> a row is inserted into the <code>EVALUATIONS</code> table, and generates the unique number for the primary key of that row, using <a id="sthref575" name="sthref575"></a><code>evaluations_seq</code>. The trigger fires once <span class="italic">for each row</span> affected by the triggering <code>INSERT</code> statement.</p> <p><code>NEW_EVALUATION_TRIGGER</code> is a <a id="sthref576" name="sthref576"></a><a id="sthref577" name="sthref577"></a><span class="bold">row-level trigger</span> and a <a id="sthref578" name="sthref578"></a><a id="sthref579" name="sthref579"></a><span class="bold">BEFORE trigger</span>.</p> <p>This trigger is part of the <a id="sthref580" name="sthref580"></a>sample application that the tutorials and examples in this document show how to develop and deploy.</p> <a id="TDDDG250" name="TDDDG250"></a> <p class="subhead2">To create the NEW_EVALUATION trigger:</p> <ol> <li> <p>On the Connections tab, expand <span class="bold">hr_conn</span>.</p> <p>Under the <code>hr_conn</code> icon, a list of schema object types appears.</p> </li> <li> <p>Right-click <span class="bold">Triggers</span>.</p> <p>A list of choices appears.</p> </li> <li> <p>Click <span class="bold">New Trigger</span>.</p> <p>The Create Trigger window opens. The field Schema has the value <code>HR</code> and the field Name has the default value <code>TRIGGER1</code>.</p> </li> <li> <p>In the Name field, type <code>NEW_EVALUATION_TRIGGER</code> over the default value.</p> </li> <li> <p>Click the tab <span class="bold">Trigger</span>.</p> <p>The Trigger pane appears. By default, the field Trigger Type has the value <code>TABLE</code>, the check box Enabled is selected, the field Table Owner has the value <code>HR</code>, the field Table Name has the value <code>COUNTRIES</code>, the options Before and Statement Level are selected, the options After and Row Level are deselected, and the check boxes Insert, Update, and Delete are deselected.</p> </li> <li> <p>In the field Table Name, from the drop-down menu, select <code><span class="codeinlinebold">EVALUATIONS</span></code>.</p> </li> <li> <p>Select the option <span class="bold">Row Level</span>.</p> <p>The option Statement Level is now deselected.</p> </li> <li> <p>Select the check box <span class="bold">Insert</span>.</p> </li> <li> <p>Click <span class="bold">OK</span>.</p> <p>The <code>NEW_EVALUATION_TRIGGER</code> pane opens, showing the <code>CREATE</code> <code>TRIGGER</code> statement that created the trigger.</p> </li> <li> <p>In the <code>CREATE</code> <code>TRIGGER</code> statement, replace <code>NULL</code> with this:</p> <pre xml:space="preserve" class="oac_no_warn"> :NEW.evaluation_id := evaluations_seq.NEXTVAL </pre> <p>The title of the <code>NEW_EVALUATION_TRIGGER</code> pane is in italic font, indicating that the trigger is not yet saved in the database.</p> </li> <li> <p>From the File menu, select <span class="bold">Save</span>.</p> <p>Oracle Database compiles the procedure and saves it. The title of the <code>NEW_EVALUATION_TRIGGER</code> pane is no longer in italic font.</p> </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_triggers004.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_triggers006.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