1

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?

Danny Beckett
  • 20,529
  • 24
  • 107
  • 134
Adnan Bhatti
  • 3,410
  • 4
  • 25
  • 38

1 Answers1

0

You could try:

select trigger_defn from sys.systrigger 
    where trigger_defn like '%adjusted_amount%'
Graeme Perrow
  • 56,086
  • 21
  • 82
  • 121