Tagged Questions

3
votes
1answer
3k views

Query SQL Server data dictionary to find all databases containing table 'x'

I'm not overly familiar with the SQL Server data dictionary, but I've assumed what I'm trying to do is possible. We have a number of replicated databases, under different names say: Client1 Client2 ...
1
vote
0answers
37 views

What is the best tool for building and maintaining Data Dictionaries in SQL Server?

What is the best practice around building and maintaining Data Dictionaries for SQL Server? I have been doing some research and I have found a couple tools which assist in the generation of Data ...
1
vote
1answer
86 views

Legacy databases from Hell [closed]

I'm a VFP developer that has just come of retirement to face a bunch of legacy apps from hell so any help/input would be much appreciated. It's a total of 14 different business apps running a mix of ...
1
vote
1answer
248 views

Generating data dictionary for SQL Server database

I am trying to generate a data dictionary for a table in my database. Ideally I would like to export the column names, data type, restrictions and extended property descriptions. How can this be ...
0
votes
1answer
1k views

Does index_id=0 in sys.indexes refer to the table itself?

Unfortunately the BOL is a little vague on this, but index_id = 0 on sys.indexes or sys.partitions appears to refer to the table itself where there is no clustered index on the table. True - or am I ...