Microsoft OLE DB Provider for SQL Server error '80040e14' Could not find stored procedure

Posted by BBlake on Stack Overflow See other posts from Stack Overflow or by BBlake
Published on 2010-05-26T13:51:55Z Indexed on 2010/05/26 14:11 UTC
Read the original article Hit count: 355

I am migrating a classic ASP web app to new servers. The database back end is migrating from SQL Server 2000 to SQL Server 2008, and the app is moving from Win2000 x86 to Win2003R2 x64. I am getting the above error on every single stored procedure call within the application.

I have verified:

  • Yes, the SQL user is set up, using correct username and password
  • Yes, the SQL user has execute permissions on the stored procedures in the database
  • Yes, I have updated the TypeLib references to the new UUID
  • Yes, I have logged into the database via SSMS with the SQL user id and it can see and execute the stored procedures just fine in SSMS, but not from the web app.
  • Yes, the SQL user has the database set as its default database.

The most frustrating thing is it works fine on the DEV server, but not on the production server. I have gone through every IIS setting 5 or 6 times and the web app is set up precisely the same in both environments. The only difference is the database server name in the connection string (DEV vs prod)

EDIT: I have also tried pointing the prod web box at the dev database server and get the same error so I'm fairly sure the issue isn't on the database side.

© Stack Overflow or respective owner

Related posts about sql-server

Related posts about error