0 1 | I am using trigger to trace DDL changes but when I change column name from the SQL Server Management Studio the trigger is not working?
| ||||||||||
|
You won't get events specifically for column changes. Instead you'll receive an ALTER_TABLE event to indicate the table has changed.When you say SQL Server console do you mean Management Studio? If so, have a look at the SQL it is generating to alter your table. It might be creating a new table, copying the data to it, dropping the old table and renaming the new table so you will see a number of events like CREATE_TABLE and thenDROP_TABLE . | |||||||||||||||||
|