odbc - How to find the cause for the error: Provider error '8000ffff' Catastrophic failure DB2 V10 -



odbc - How to find the cause for the error: Provider error '8000ffff' Catastrophic failure DB2 V10 -

somebody can help me find cause error: provider error '8000ffff' catastrophic failure in db2 server version 10.1.0.2? the asp code showed below works fine db2 connect version 9.7.2:

connectstr = "driver={ibm db2 odbc driver};database=dbxx;uid=myuser;pwd=pypass;hostname=localhost;port=50000;protocol=tcpip;" set con0 = createobject( "adodb.connection" ) con0.open connectstr set rs = createobject( "adodb.recordset" ) rs.activeconnection = con0 rs.open "select * sysibm.sysdummy1", con0 response.write(now & " --->>>" & rs(0)) con0.close() set rs = nil set con0 = nil

after installing new driver of db2connect 10.1.0.2 server error starts happen.

our environment is: - windows server 2003 r2 32 bits running in vmware - mdac 2.8 sp2 - oledb32.dll 2.82.3959.0 any suggestion apreciated.

after removing info connection string, started work perfectly, surprise. connection string looks this: connectstr = "driver={ibm db2 odbc driver};database=dbxx;uid=myuser;pwd=pypass;"

odbc iis-6 db2 oledb adodb

Comments

Popular posts from this blog

javascript - mongodb won't find my schema method in nested container -

Hibernate criteria by a list of natural ids -

ios - Lagging ScrollView with UIWebview inside -