Home
Options

Linqpad not listing all the stored procedures

Just confirmed that even though the sprocs are all in the same schema, linqpad is not listing some of them. All of them are being properly listed in SSMS though.

I also tried listing the sprocs using this query and it shows that the missing ones and the shown ones both have the same schema.

SELECT specific_schema, routine_schema, specific_name FROM information_schema.routines
WHERE routine_type = 'PROCEDURE'
ORDER BY specific_name
Sign In or Register to comment.