Husband, Father, Reader, Software Developer...
Following SQL query gives you names of all the stored procedures in the active database:
SELECT SystemObjects.NameFROM SYS.OBJECTS SystemObjects WHERE SystemObjects.type = 'p' ORDER BY SystemObjects.Name;
Post a Comment
No comments:
Post a Comment