AccessSQLUser
Programmer
I need to get a list of all triggers in my database that have extended properties. The following statement works great but only for a specific table
Select *
FROM ::fn_listextendedproperty(null, 'user','dbo', 'table','tablename','trigger',default)
Instead of the table name, I tried putting default or null and that doesn't seem to work. I really don't want to have to loop through all the tables to do this.
Select *
FROM ::fn_listextendedproperty(null, 'user','dbo', 'table','tablename','trigger',default)
Instead of the table name, I tried putting default or null and that doesn't seem to work. I really don't want to have to loop through all the tables to do this.