I need to transfer some server event notifications objects from one SQL2K8 instance to another.
I wanted to use sys.server_event_notifications view but the event (e.g. DDL_TABLE_EVENTS, DDL_INDEX_EVENTS etc.) needed for the creation is not there.
I could not also find them in SSMS.
Any ideas?
Thanks a lot
Damien_The_Unbeliever thanks
You pointed me to the right direction, what I needed was
Joining only to
sys.server_eventsgives me all the child events, then I have to join again tosys.event_notification_event_typesto get the event group name that I used for initial creation.