• Mitesh,

    This is the only result I received, and then only against the msdb database:

    IF EXISTS(SELECT TOP 1 NULL FROM sys.systypes where Name = 'syspolicy_target_filters_type')

    DROP TYPE syspolicy_target_filters_type;

    CREATE TYPE syspolicy_target_filters_type AS TABLE

    (target_filter_id int

    ,policy_id int

    ,type sysname

    ,filter nvarchar (-1)

    ,type_skeleton sysname

    )

    Did I miss something or did you omit a more complete discussion on how to setup and run this script?