I have to create a data dictionary in an existing database for all user tables within that database in SQL Server 2005.
Does anyone have a good piece of sql to use for this purpose. I am intending to add comments in myself after I have the details of the tables and columns.
I don’t have the exact sql, but you will need to query the systables and syscolumns tables, which have all of the information you need to create the data dictionary.