Is there a table which lists invalid triggers?

78 Views Asked by At

I am trying to unload a schema of Sybase ASA 9 and it goes till 90% + but then it gives me an error when creating triggers:

adjusted_amount is not found

It doesn't tell me which trigger is referencing this column. Is there any way to find which trigger is referencing this column?

1

There are 1 best solutions below

0
On BEST ANSWER

You could try:

select trigger_defn from sys.systrigger 
    where trigger_defn like '%adjusted_amount%'