SQL Guide : solidDB® SQL statements : CREATE TRIGGER : table_name
  
table_name
The table_name is the name of the table on which the trigger is created. solidDB® server allows you to drop a table that has dependent triggers defined on it. When you drop a table all dependent objects including triggers are dropped. However, you might still get runtime errors. For example, assume you create two tables A and B. If a procedure SP-B inserts data into table A, and table A is then dropped, a user will receive a run-time error if table B has a trigger which invokes SP-B.
See also
CREATE TRIGGER