Can't see the triggers that I created in SQL Server Management Studio 2008

前端 未结 4 1262
没有蜡笔的小新
没有蜡笔的小新 2021-01-01 08:08

I created a simple trigger on Albums table. But that trigger is not visible in object explorer in programmability in triggers folder. I refreshed that folder as well as rest

4条回答
  •  情歌与酒
    2021-01-01 08:59

    If you still can't find it, it is likely because you specified

    CREATE TRIGGER X
    ON SERVER ALL
    

    Specifying that it is deployed at the server level.

    Expand server objects > Triggers

提交回复
热议问题