I've inherited a database with a surprisingly high number of unused sprocs. I've extracted the names of the used sprocs from the DLL that access it (all access is via that DLL), and from EXEC statements in those sprocs, and there are a couple hundred that are not called. Further, almost all have suspiciously verbose, uniform names: I suspect that they were generated by a tool.
The question I have is, what is the cost of keeping an unused sproc in the system? There's the additional maintenance, but I'm more interested in if there's any increase in memory consumption, processing time, etc.
I should say here that I'm not intending to remove the unused sprocs. This is simply something I want to know. The back story was just to get your interest and prompt an informed answer.
This is SQL Server 2008.