Question

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?

Was it helpful?

Solution

You could try:

select trigger_defn from sys.systrigger 
    where trigger_defn like '%adjusted_amount%'
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top