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, the following statement:

sp_table_privileges titles

returns information about all permissions granted on the titles table. For more information about the output of sp_table_privileges see the Reference Manual.