मैं कहूंगा कि आप शायद इसे sp_addextendedproperty संग्रहित खरीद।
Microsoft के पास इस पर कुछ अच्छे दस्तावेज़ हैं।
इसे आजमाएं:
EXEC sp_addextendedproperty
@name = N'MS_Description', @value = 'Hey, here is my description!',
@level0type = N'Schema', @level0name = 'yourschema',
@level1type = N'Table', @level1name = 'YourTable',
@level2type = N'Column', @level2name = 'yourColumn';
GO