MCITP

MCITP

Tuesday, September 11, 2012

How to generate a list of extended stored procedure in SQL SERVER.

Run the below command to get a list of all extended stored procedure.

SELECT * FROM sys.all_objects WHERE  [type] = 'X' ORDER BY [name]

No comments:

Post a Comment

Followers