SQL1159 Initialization error with DB2 .NET Data Provider, reason code 2

后端 未结 4 1385
遇见更好的自我
遇见更好的自我 2021-02-20 01:09

I am trying to connect to DB2 from .NET 2.0 application in my development machine running windows 7 64 bit.

I am getting this error in open method. Could not find a sol

相关标签:
4条回答
  • 2021-02-20 01:48

    Learnt this from a colleauge of mine. Issue was because db2app.dll was missing in bin directory of application folder.

    Copied db2app.dll and db2app64.dll from C:\Program Files\IBM\SQLLIB\BIN to bib folder of application and it worked fine.

    0 讨论(0)
  • 2021-02-20 01:50

    See the "user response" at the bottom of the IBM doc for SQL1159N, which also lists the various reasons you might receive this error code:

    There was a problem with your DB2 installation. If this is the first time DB2 was installed on this computer, review the install logs for any possible errors and run a repair of DB2 from the Add/Remove Programs control panel applet. The default location of the installation logs is the My Documents/DB2LOG folder of the user that performed the installation. If this does not resolve the issue please contact IBM Support and provide the reason code associated with this message along with any installation logs.

    0 讨论(0)
  • 2021-02-20 02:01

    I had a 32 bit DB2 Client and I was accessing it from a Web Application hosted on IIS, using Application pool (with 'Enable 32-bit Application' set to false). In this case a 64 -bit client (db2app64.dll) is expected while db2app.dll will throw above error.

    Just FYI.. It is hard to debug this error in Visual studio as by default IIS express uses 32-bit application pool. To change it to 64-bit, one has to make changes in registry (set Use64BitIISExpress to 1) There is no inetmgr for IIS Express.

    0 讨论(0)
  • 2021-02-20 02:03

    After speaking to IBM, they recommend strongly against putting IBM dlls inside the bin folder. We let IBM remotely configure our server and now all works well and we must not put the ibm*.dll into our bin folders or it will not work.

    0 讨论(0)
提交回复
热议问题