views:

20

answers:

1

If I write

SELECT * FROM sys.all_objects
WHERE ([type] = 'P');

I will get all the SQL Stored Procedure. But how to obtain only the Undocumented ones?

Thanks

A: 

There isn't any way to query this list, but here it is

List of Undocumented Stored Procedures in SQL Server

hgulyan