DBAsupport.com Forums - Powered by vBulletin
Results 1 to 4 of 4

Thread: coding behind a trigger

  1. #1
    Join Date
    May 2002
    Posts
    193
    Dear Sir,

    Can anyone tell me how to find out the contents(text) of a trigger... I have a trigger by name say trig and I would like to know the coding behind this trigger..

    Regards,

    K.Diwakar

  2. #2
    Join Date
    Sep 2001
    Location
    Düsseldorf, Germany.
    Posts
    588
    USER_TRIGGERS

    columns -


    trigger_name
    trigger_body - Coding behind trigger..

    Sameer

  3. #3
    Join Date
    Jun 2001
    Location
    Helsinki. Finland
    Posts
    3,938
    Code:
    set long 1000
    select trigger_body from dba_triggers where trigger_name = 'TRIG'
    Oracle Certified Master
    Oracle Certified Professional 6i,8i,9i,10g,11g,12c
    email: ocp_9i@yahoo.com

  4. #4
    Join Date
    May 2002
    Posts
    193
    Thanks for your suggestions...

    Regards,

    K.Diwakar

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width