Created
July 9, 2015 17:14
-
-
Save jetstreamin/a9deb698443b8f5653c5 to your computer and use it in GitHub Desktop.
SQL - View Extended Properties
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
USE AdventureWorks2008R2; | |
GO | |
SELECT objtype, objname, name, value | |
FROM fn_listextendedproperty(default, default, default, default, default, default, default); | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment