Reputation: 1
I need a query to find all the objects tables,stored procedure,trigger,indexes,function in sql server?
Upvotes: 0
Views: 32
Reputation: 300579
USE MyDB GO select * from sys.objects GO
Upvotes: 1