Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
221 vnguyen 1
CREATE PROCEDURE "RELEASE_MANAGER"."DELETE_AUTOBUILD_FAILURE_INFO" 
2
IS
3
/******************************************************************************
4
   NAME:       DELETE_AUTOBUILD_FAILURE_INFO
5
   PURPOSE:
6
 
7
   REVISIONS:
8
   Ver        Date        Author           Description
9
   ---------  ----------  ---------------  ------------------------------------
10
   1.0        2/06/2006    Rupesh Solanki      1. Created this procedure.
11
 
12
   NOTES:
13
 
14
   Automatically available Auto Replace Keywords:
15
      Object Name:     DELETE_AUTOBUILD_FAILURE_INFO
16
      Sysdate:         2/06/2006
17
      Date and Time:   2/06/2006, 8:44:25 AM, and 2/06/2006 8:44:25 AM
18
      Username:         (set in TOAD Options, Procedure Editor)
19
      Table Name:       (set in the "New PL/SQL Object" dialog)
20
 
21
******************************************************************************/
22
BEGIN
23
   DELETE FROM autobuild_failure
24
         WHERE group_email_id NOT IN (SELECT group_email_id
25
                                        FROM members_group);
26
END delete_autobuild_failure_info;
27
/