Google News
logo
SQL Server - Interview Questions
What will be query used to get the list of triggers in a database?
Query to get the list of triggers in database :
 
Select * from sys.objects where type='tr'
Advertisement