I have a stored procedure (sproc A) which is syntactically correct. So when I hit "run" on its create or alter statement, it is saved into the database.

However, sproc A has a call to another stored procedure (sproc B). It does not provide enough parameters for sproc B, so I don't see how it's a valid stored procedure.

I want to detect any stored procedures in my database which aren't passing enough parameters to their own stored procedures.

Thankyou, Fidel

link|improve this question

69% accept rate
I believe "deferred name resolution" is the name for this sinful concept – Fidel Jan 25 at 9:40
feedback

1 Answer

up vote 3 down vote accepted

Unfortunately, there is no mechanism in SQL Server to test dependencies, parameters etc

You have to search+check, or provide defaults for parameters. You'll only pick it up by testing otherwise.

A good auto complete tool like Red Gate SQL prompt can list parameters + types for you

Note:

It's a long standing problem and there is even a request to MS including this. SP parameter checking is one of the OPTION STRICT suggestions

link|improve this answer
thanks for the quick response gbn – Fidel Jun 15 '11 at 13:48
thanks for the info on OPTION STRICT, it's a shame that it was requested 4 years ago... – Fidel Jun 16 '11 at 0:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.