Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I need help with SQL Server Error 8144

Status
Not open for further replies.

jcmercure

Programmer
Oct 22, 2003
20
US
Hello -

I am not a SQL Server programmer and Microsoft's site was not helpful.

I am working on a VB project that is using SQL Server 2000 as the backend. The database is accessed via Business and Database COM+ objects.

I have a class with a method that executes a Stored Procedure. When I attempted execute the stored procedure a SQL Server error is returned. The error is '8144' and the message reads "Procedure or function oms_ext_con_auto_create has too many arguments specified". When I compare the values being passed to the procedure with the procedure requirements, everything appears in order. The number of parameters passed matches the definition.

Does this error indicate a problem on the SQL Server side or a problem with the call to SQL Server?

Thank you in advance for any help I receive.

- John Mercure
 
That error definitely occurs when you are passing more parameters than the sp expects, so the error could be either side.

Can you post the part of the sp up to AS and the calling code.





 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top