Thread: Report error
View Single Post
  #2 (permalink)  
Old 05-08-2007, 02:21 PM
pwiesner pwiesner is offline
Senior Member
 
Join Date: Mar 2007
Posts: 201
Default

The error message “Procedure or function XXXX has too many arguments specified” occurs when two or more instances of the same object are created in a database. Generally this occurs if the create sql scripts are run multiple times under different credentials.

You can confirm that this is the issue by scrolling through the list of stored procedures in SQL Server Management Studio, you should see at least two instances of ckbx_Image_InsertImage. Stored procedures are listed alphabetically, with the owner name being the first part of the name as a result the stored procedures will not be next to each other.

If this is your issue you will need to delete all of the stored procedures except the ones that Checkbox uses access the database. You can confirm which credentials Checkbox uses to access the database with the connection string located in the web.config file.
Reply With Quote