Question

I need to import data from a Progress server to a SQL Server. As an intermediate step, I need to figure out the corresponding datatypes of the fields in the Progress server. I'm not having much luck finding this online. Does anyone have a table of the equivalent datatypes?

Was it helpful?

Solution

You can find the progress docs here: http://communities.progress.com/pcom/docs/DOC-16074 the "SQL Development" doc has the following ABL/SQL data type mapping:

ABL Type    SQL Type

ARRAY       ARRAY, VARARRAY
BLOB        LVARBINARY, BLOB
CHARACTER   VARCHAR, CHAR
CLOB        CLOB, LVARCHAR
DATE        DATE
DATETIME    TIMESTAMP
DATETIME-TZ TIMESTAMP WITH TIME ZONE
DECIMAL     DECIMAL or NUMERIC
INTEGER     INTEGER
LOGICAL     BIT
RAW         VARBINARY
RECID       INTEGER
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top