Reporting permissions on specific tables

Use sp_table_privileges to return permissions information about a specified table. The syntax is:

sp_table_privileges table_name [, table_owner 
     [, table_qualifier]]

where:

Use null for parameters that you want to skip.

For example, this statement returns information about all permissions granted on the titles table:

sp_table_privileges titles

For more information about the output of sp_table_privileges, see the Reference Manual: Procedures.