List of tables on which a trigger is used

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • yoghee
    New Member
    • May 2007
    • 4

    List of tables on which a trigger is used

    Hi friends,

    I need to know is there is any way to know the
    list of tables on which a trigger is used
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    First of a trigger can be made to fire on a single table.
    U can write a trigger only on a single base table .

    EXCEPTION---INSTEAD OF TRIGGERS


    try

    Code:
    select table_name from user_triggers Where trigger_name='TRIGNAME'

    Comment

    • yoghee
      New Member
      • May 2007
      • 4

      #3
      Originally posted by debasisdas
      First of a trigger can be made to fire on a single table.
      U can write a trigger only on a single base table .

      EXCEPTION---INSTEAD OF TRIGGERS


      try

      Code:
      select table_name from user_triggers Where trigger_name='TRIGNAME'
      By using this query , the status is "Enabled" or "Disabled" , but i need it in a format in which the status should be "valid" or "invalid"

      Comment

      Working...