Last active
September 13, 2021 09:00
-
-
Save timabell/f5580f04ea9cc0ac5746 to your computer and use it in GitHub Desktop.
templates for addings sql server schema documentation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- templates: | |
-- table description: | |
exec sys.sp_addextendedproperty @name=N'MS_Description', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', | |
@level1name=N'TableNameHere', @value=N'Table description here' | |
-- column description: | |
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level2type=N'COLUMN', | |
@level1name=N'TableNameHere', @level2name=N'ColumnNameHere', @value=N'Column description here' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment