SQL CLR DDL trigger written in C #

Is it possible to create a database / DDL trigger in C #? And if so, how?

[EDIT]

Basically, I decided to use the CLR for the database trigger, because I want to use C # SMO for script objects that change and insert the script object into a table that keeps track of the version of the database objects.

+3
source share
2 answers

Or See: CLR Triggers Continue down the bottom for an DDL example.

0
source

Source: https://habr.com/ru/post/1770787/


All Articles