Generate metadata from SQL Server databases for use with DocFX to generate reference documentation.
You can use this tool to generate meta data files (.yml
files) for a given SQL Server database.
Then use docfx
to generate reference documentation like you would do for other languages (e.g. C#).
Warning: Albeit usable, this tool is not complete. Still lacking are unit tests and code coverage and integration style tests. YMMV.
DocDB can document the following SQL Server objects:
- Tables (including indexes, checks, keys, triggers)
- Stored Procedures
- Functions (scalar, table valued, aggregates)
- Types (data types, table types, CLR types)
- Assemblies (incl. decompiled C# code)
- DDL Triggers
- XML Schema collections
- Parition information (functions, schemes)
- Sequences
- Rules
- Defaults
- Roles (database and application roles)
- Users
- Synonyms
- Schemas
- Database itself (files, filegroups, settings, etc.)
All documents and objects are cross references (for example, foreign keys to target table). For every applicable object, the relevant SQL CREATE script is included.
Additionally, a table of contents is generated that structures the objects as they are in the Object Explorer of SSMS.
- Install docfx as a global tool:
dotnet tool install -g docfx
- Install DocDB as a global tool:
dotnet tool install -g docdb.console
TODO: Document rest of procedure (or see AdventureWorks2022 sample).
The following pictures are based on the AdventureWorks Sample Database. To generate those yourself see AdventureWorks2022 sample.