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.

I was wondering if there was a way (relatively simple I hope) to get information about the table and its attributes and realtionships?

Clarification: I want to grab all tables in the database and get the meta-model for the whole database, tables, column data, indicies, unique constraints, relationships between tables etc.

share|improve this question

4 Answers

The system has a data dictionary in sys.tables, sys.columns, sys.indexes and various other tables. You can query these tables to get metadata about the database structure. This posting has a script I wrote a few years ago to reverse engineer a database schema. If you take a look at it you can see some examples of how to use the system data dictionary tables.

share|improve this answer

there are a whole bunch of system views in the information_schema schema in sql server 2005+. is there anything in particular you're wanting?

some of those views include: check_contraints, columns, tables, views

share|improve this answer

Try sp_help <tablename>. This will show you foreign key refrences and data about the columns, etc - that is, if you are interested in a specific table, as your question seemed to indicate.

share|improve this answer
For all tables you could also do EXEC sp_msforeachtable 'sp_help ?' – JNK Apr 6 '11 at 15:57
@JNK - love your Gravatar - if any questions come up on SO about diagnosing faults with AE-35 units I would also recommend your expertise there. :) – Quantum Elf Apr 6 '11 at 19:41

If using .NET code is an option SMO is the best way to do it.

It abstracts away all these system views and tables hiding them behind nice and easy to use classes and collections. http://msdn.microsoft.com/en-us/library/ms162169.aspx

This is the same infrastructure SQL Server Management Studio uses itself. It even supports scripting.

Abstraction comes at a cost though so you need maximum performance you'd still have to use system views and custom SQL.

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.