Am 16.10.20 um 17:08 schrieb
jon.f...@gmail.com:
>> #pasquale
> What you are saying frankly makes no sense. Perhaps if you posted the DDS definition of the table we could offer suggestions. Alsop be nice to know what platform you are trying to access the data from.
This is the DDL of the table KL11. KL11FLD is the column that contains
those other tables I need access to.
Create Table KL11 (
KL11SER CHAR(3)
,KL11TAB CHAR(8)
,KL11ELE CHAR(8)
,KL11ELS CHAR(4)
,KL11PRG NUMERIC(2)
,KL11DDS CHAR(8)
,KL11FLD VARCHAR(3807)
);
I do not know what kind of encoding it uses and which IBM i procedure is
used to get those other tables stored. My question: Depending on this
(IBM i) procedure, would an integration via IBM ESB automate
encoding/decoding if I integrate via REST instead and leave
serialization to the ESB?
>
> But simply put - any "file" on the IBM i (there hasn't been an AS/400 for about 20 years) is a table and can be accessed via SQL. There is within the capabilities of DDS nothing that I can think of that would equate to a "serialized table" which is why we need to see what you are talking about and also to know what you are trying to extract.
>
> Your task should be simple ...
>
Yes, I know and accessed via JDBC to a DDS organized DB2 earlier. It's
the first time I encounter such a serialization pattern. I was told this
yields from the 80ies, where DBMS was limited in I/O access.
Thanks
#pasquale