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

Thread: trigger

  1. #1
    Join Date
    Jan 2001
    Posts
    8
    I'm to move a trigger from dev to prod. The problem is if I create the trigger, it will automatically fire because new data is coming into prod. How do I go about creating the trigger but in a disable form?

  2. #2
    Join Date
    Dec 2000
    Location
    Washington DC
    Posts
    42

    Disable Trigger

    Build your trigger and then immediatley disable it...
    CREATE or REPLACE TRIGGER <trigger>
    ...
    ...
    ...;

    ALTER TRIGGER <trigger> DISABLE;
    Ken Hinerman
    Data Interaction
    DBASupport@datainteraction.com

  3. #3
    Join Date
    Jan 2001
    Posts
    8
    Thanks for the information.
    That's what I ended up doing.

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