TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Formulation of sys.all_objects
Lajapathy Arun
Jul 03, 2012
2.5
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
We are going to see the Formula of sys.all_objects.
Formulation of sys.all_objects
sys.objects + sys.system_objects == sys.all_objects
You can verify by its count.
select count(*) from sys.objects
select count(*) from sys.all_objects
select count(*) from sys.system_objects
Thanks :)
Next Recommended Reading
Getting SQL Script of database object using sys.syscomments in SQL Server