Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to find number of stored procedures, tables ,functions present in a Database?

Please help me finding the above.

share|improve this question
If we use sys.objects or sysobjects, does it includes only user created objects or it includes system objects also??? – Pearl Jun 29 '11 at 10:43
sysobjects only includes user defined onjects. – Ash Burlaczenko Jun 30 '11 at 6:33

5 Answers

select count(*) 
from DatabaseName.information_schema.routines 
where routine_type in ('PROCEDURE', 'FUNCTION', 'TABLE')
share|improve this answer

You can use sys.Tables for the tables, sys.procedures for stored procedures and this answer for functions.

share|improve this answer

Simply

SELECT COUNT(*) FROM sysobjects WHERE xtype IN ('u', 'p', 'fn')

Hope this helps.

share|improve this answer
SELECT * FROM user_objects  
WHERE object_name LIKE 'proc%' ....
share|improve this answer
SELECT     * FROM   sysobjects  WHERE     (xtype = 'p')

You can get all the information from sysobjects

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.