Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQL Server 是否允许在扩展属性、表级别或列级别上触发?
如果没有,是否有类似触发器的东西可以检测扩展属性的“添加”或“更新”并自动执行存储过程?
谢谢!
您可以为此使用 DDL 触发器。
CREATE TRIGGER foo ON DATABASE FOR CREATE_EXTENDED_PROPERTY, ALTER_EXTENDED_PROPERTY AS BEGIN /*TODO: Something useful here*/ SELECT EVENTDATA() END