Exception while retrieving schema from Informix database using Db2Client DB2Connection.GetSchema("Tables")

StackOverflow https://stackoverflow.com/questions/20694174

  •  19-09-2022
  •  | 
  •  

Question

I am getting this error when entity framework trying to get schema from Informix database:

IBM.Data.DB2.DB2Exception (0x80004005): ERROR [IX000] [IBM][IDS/UNIX64] SQL0969N There is no message text corresponding to SQL error "-23103" in the message fi le on this workstation. The error was returned from module "IFX11500" with orig inal tokens "". SQLSTATE=IX000

Please help.

Was it helpful?

Solution 2

This problem temporarily solved by recycle the database service. Still trying to find root cause of the problem as this may not be solution for every time.

Thanks Phani

The above problem got solves after installing a patch. The problem is not exist in newer versions of Informix.

OTHER TIPS

Probably you have some LOCALE misconfiguration between the client and server or some problem with the client installation.
Try confirm the locale used at the database and set the CLIENT_LOCALE with compatible value.

-23103 Code-set conversion function failed due to an illegal sequence or invalid value.

Illegal or invalid characters occur in the character string. The program could not execute the code-set conversion on the characters that this string contains. Reexamine the input string for illegal or invalid characters and reexecute the program.

If you have an alternative way to connect at the database , run this SQL :

select * from sysmaster:sysdbslocale

You will get a information like this..

dbs_dbsname  sysmaster
dbs_collate  en_US.819

dbs_dbsname  sysha
dbs_collate  en_US.819

dbs_dbsname  sysuser
dbs_collate  en_US.819

dbs_dbsname  onpload
dbs_collate  en_US.819

This links maybe can help you : dbaccess info , database locale

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top