Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Recent Posts
Recent Posts
Popular Topics
Popular Topics
Home
Search
Members
Calendar
Who's On
Home
»
SQL Server 2005
»
Administering
»
Dictionary Table
Dictionary Table
Rate Topic
Display Mode
Topic Options
Author
Message
ArjunaReddy
ArjunaReddy
Posted Monday, October 05, 2009 6:25 AM
SSC Rookie
Group: General Forum Members
Last Login: Tuesday, May 07, 2013 10:08 PM
Points: 39,
Visits: 388
Hi -- Is there any table which stores inturn all the names/metadata of the dictionary tables (ex:sys.objects)? I know there is a table in Oracle called DICTIONARY for this purpose.
The purpose of this DICTIONARY table in Oracle is to maintain the information of all the dictionary tables. Lets say if you want to look at the dictionary table names which has USER as a part of the name, then we can use the following query to view.
SELECT TABLE_NAME FROM DICTIONARY WHERE TABLE_NAME LIKE '%USERS%'; -- The result of this query would be the name of all the dictionary tables which has USER as a part of its name.
This way i can query the dictionary table in Oracle to view information of any dictionary related table.
Thanks,
Nagarjun.
Post #797813
Steve Jones - SSC Editor
Steve Jones - SSC Editor
Posted Monday, October 05, 2009 6:55 AM
SSC-Dedicated
Group: Administrators
Last Login: Today @ 12:01 PM
Points: 31,436,
Visits: 13,750
sys.objects can help you. It has all objects in the system in it (http://msdn.microsoft.com/en-us/library/ms190324%28SQL.90%29.aspx)
Follow me on Twitter:
@way0utwest
Forum Etiquette: How to post data/code on a forum to get the best help
Post #797841
Jeff Moden
Jeff Moden
Posted Monday, October 05, 2009 7:27 AM
SSC-Dedicated
Group: General Forum Members
Last Login: Today @ 12:38 PM
Points: 32,910,
Visits: 26,805
I don't believe that you'll find anything about indexes or columns or a couple of other things in SysObjects. Even the sys.All_Objects in Master doesn't contain everything.
--Jeff Moden
"
RBAR
is pronounced "ree-bar" and is a "Modenism" for "
R
ow-
B
y-
A
gonizing-
R
ow".
First step towards the paradigm shift of writing Set Based code:
Stop thinking about what you want to do to a row... think, instead, of what you want to do to a column."
For better, quicker answers on T-SQL questions, click on the following...
http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following...
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
Post #797867
Steve Jones - SSC Editor
Steve Jones - SSC Editor
Posted Monday, October 05, 2009 7:34 AM
SSC-Dedicated
Group: Administrators
Last Login: Today @ 12:01 PM
Points: 31,436,
Visits: 13,750
sys.objects will contain the name of the index or table, but not the details. If you want more information about those, sys.indexes, or sys.columns will help. There are lots of system tables and views in SQL Server that contain metadata about the objects used by the platform.
Follow me on Twitter:
@way0utwest
Forum Etiquette: How to post data/code on a forum to get the best help
Post #797876
ArjunaReddy
ArjunaReddy
Posted Monday, October 05, 2009 11:41 PM
SSC Rookie
Group: General Forum Members
Last Login: Tuesday, May 07, 2013 10:08 PM
Points: 39,
Visits: 388
Thanks for all replies!
My question was like is there any other table which has all information about the sys.xxx table names (Metadata) stored? This would be helpful if i forget any of the sys related tables which i can query from the table.
Thanks,
Nagarjun.
Post #798326
Steve Jones - SSC Editor
Steve Jones - SSC Editor
Posted Tuesday, October 06, 2009 7:37 AM
SSC-Dedicated
Group: Administrators
Last Login: Today @ 12:01 PM
Points: 31,436,
Visits: 13,750
I believe that sys.objects has all objects, but your best bet might be to bookmark the page on MSDN that lists all tables.
Follow me on Twitter:
@way0utwest
Forum Etiquette: How to post data/code on a forum to get the best help
Post #798506
« Prev Topic
|
Next Topic »
Permissions
You
cannot
post new topics.
You
cannot
post topic replies.
You
cannot
post new polls.
You
cannot
post replies to polls.
You
cannot
edit your own topics.
You
cannot
delete your own topics.
You
cannot
edit other topics.
You
cannot
delete other topics.
You
cannot
edit your own posts.
You
cannot
edit other posts.
You
cannot
delete your own posts.
You
cannot
delete other posts.
You
cannot
post events.
You
cannot
edit your own events.
You
cannot
edit other events.
You
cannot
delete your own events.
You
cannot
delete other events.
You
cannot
send private messages.
You
cannot
send emails.
You
may
read topics.
You
cannot
rate topics.
You
cannot
vote within polls.
You
cannot
upload attachments.
You
may
download attachments.
You
cannot
post HTML code.
You
cannot
edit HTML code.
You
cannot
post IFCode.
You
cannot
post JavaScript.
You
cannot
post EmotIcons.
You
cannot
post or upload images.
Copyright © 2002-2013 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.