RE: Value changed from Integer to Double

From: "Wal, Jan Tjalling van der" <jan_tjalling(dot)vanderwal(at)wur(dot)nl>
To: Karl Aschbacher <krlschbchr(at)gmail(dot)com>, "pgsql-odbc(at)postgresql(dot)org" <pgsql-odbc(at)postgresql(dot)org>
Subject: RE: Value changed from Integer to Double
Date: 2024-03-12 08:24:22
Message-ID: AM0PR01MB56341BE6FB1AFBA080BDFC0FDD2B2@AM0PR01MB5634.eurprd01.prod.exchangelabs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

Hello Karl,

My hunch is that Oracle and Postgres (ODBC) are disagreeing about what is an integer.
At the range (length) of data that you are talking about, for postgres this is beyond ‘integer’ (4 bytes, 32 bits signed).
PostgreSQL: Documentation: 16: 8.1. Numeric Types<https://www.postgresql.org/docs/current/datatype-numeric.html>
At the postgres-side the data is then likely specified as a bigint (8 bytes, 64 bits signed).
Alternatively these could be serial and bigserial.

A similar link for Oracle on data types indicates that INTEGER/INT/SMALLINT are Oracle Data Type NUMBER(38).
Or an even higher value than 38 in this case.

So both systems are not in agreement on what data type this size of number is.

My suggestion would be to specify better as part of the query going into Oracle Analytics Server (OAS) what you are requesting.
For instance by adding a type hint (cast).
That should make clear to OAS that the question is for a -longer than usual- integer and hopefully have it not switch to a float.

Kind regards, Jan Tjalling van der Wal
Wageningen Marine Reseach (WMR) / formerly IMARES Institute for Marine Resources & Ecosystem Studies
Ankerpark 27, 1781 AG Den Helder Postbus 57, 1780 AB Den Helder
Tel. +31 (0)317-4 87147 # GSM. +31 (0)626120915 (privé) #
# Ma+Di Vr 09:00-18:00, Wo XX, Do+Vr 09:00-18:00
Jan_Tjalling(dot)vanderWal(at)wur(dot)nl<mailto:Jan_Tjalling(dot)vanderWal(at)wur(dot)nl>
From: Karl Aschbacher <krlschbchr(at)gmail(dot)com>
Sent: Monday, March 11, 2024 10:21 AM
To: pgsql-odbc(at)postgresql(dot)org
Subject: Value changed from Integer to Double

Dear all,

we are facing a problem that is maybe related to the postgres-odbc driver.
We use Oracle Analytics Server via ODBC to talk to a postgres Database (V15)
It appears that integers with more than 10 digits get converted to doubles when the statment is being sent to the database.
So for example: "where id = 32857641330" will be converted to "where did = 3285764133.0 "

So my question is - does the driver play any role when preparing the statement?
(Like providing the PG Type ?)
In case it does, would anyone have a suggestion where to look for the potential issue?

many thanks
best regards
Karl

In response to

Browse pgsql-odbc by date

  From Date Subject
Next Message Winner Lohas 2024-03-12 20:04:35 Does ODBC driver connection pooling have a bug?
Previous Message Karl Aschbacher 2024-03-11 09:21:15 Value changed from Integer to Double