We just moved our SQL 2000 databases to a new SQL 2008 box. After the move, we bound the IP address of the SQL 2000 box to the new SQL 2008 box. This works, except in a VB6 application running on a Windows 2000 SP4 box where we are getting the error:
"Query cannot be updated because the FROM clause is not a single simple table name"
View the actual error message screenshot below: http://screencast.com/t/MTViNDBh
Doing some searching, I find that this is an ODBC error-- not sure how to fix? This app has been working flawlessly until we moved all db's to SQL 2008 (which all work well, except this one app!).
Edit:
Looking into his code, it does not appear to be using ODBC:
sEncCn = "PROVIDER=" & strEncProvider & "Driver=" & strEncDriver & "Server=" & strEncServer & "UID=" & sUID & "PWD=" & sPWD & "Database=" & strEncDb
strEncProvider is "MSDASQL" Driver is "SQL Server"
Any help!?