sys.securable_classes
compatibility #compatibility#catalog-view
Description
Analytics Platform System (PDW) SQL database in Microsoft Fabric Returns a list of securable classes Numerical designation of the class. The visibility of the metadata in catalog views is limited to securables that a user either owns, or on which the user was granted some permission. For more information, see The following example returns the securable classes supported by this instance of SQL Server.
Syntax
SELECT
*
FROM sys.securable_classes
ORDER
BY class
;
Examples
Example 1
SELECT
*
FROM sys.securable_classes
ORDER
BY class
;