Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7092649
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T08:20:26+00:00 2026-05-28T08:20:26+00:00

Suppose we have a trigger, named Foo. Foo depends on the T table and

  • 0

Suppose we have a trigger, named Foo.

Foo depends on the T table and depends on the a, b, c columns.

If the T table is dropped, the T trigger is also dropped?

If c is deleted, is the T trigger dropped?

If an alteration happens for the T table, but it doesn’t affect the a, b, c columns, is the T trigger dropped?

Thank you in advance for your answers,

Best regards,
Lajos Arpad.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T08:20:27+00:00Added an answer on May 28, 2026 at 8:20 am

    The only scenario where a trigger is dropped without an explicit

    DROP TRIGGER <trigger_name>;
    

    Is when the table is also dropped.

    DROP <TABLE_NAME>;  
    

    In cases where the source code of the trigger references schema that is no longer present, the trigger becomes invalid. You can query your database for invalid objects with:

       select * from user_objects where status != 'VALID'  
       -- invalid objects associated with the user you are logged in as
       select * from all_objects where status != 'VALID' 
       -- all invalid objects  in the database
    

    There is a case where a drop ‘cascades’ when you specify a cascade. But this is focused on dropping child tables.

    drop table <table_name> cascade constraints;
    

    Oracle 10g documentation on DROP TABLE DDL command.

    All that said triggers are often misused and introduce bugs. I would encourage you to avoid placing your application logic in them.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have a table called Companies that has a DepartmentID column. There's also
Suppose you have 2 different ASP.NET applications in IIS. Also, you have some ASCX
Suppose we have a table A: itemid mark 1 5 2 3 and table
Suppose we have: interface Foo { bool Func(int x); } class Bar: Foo {
Am very new to Oracle triggers. Suppose I have a trigger on an insert
Suppose I have an AFTER ALTER trigger on my Oracle database and I rename
Suppose I have a database table that has a timedate column of the last
Suppose you have a trigger on MY_CUSTOMER_TABLE and that it has a variable declared
Lets suppose I have a scenario with the following model: An Animal table which
I need help writing a MySQL trigger. Suppose you have a student database with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.