Operation of CLI2SCI - IBM IMS Interface for Teradata

IBM IMS Interface for Teradata® Reference

Product
IBM IMS Interface for Teradata
Release Number
17.00
Published
June 2020
Language
English (United States)
Last Update
2020-06-19
dita:mapPath
ptk1544831946949.ditamap
dita:ditavalPath
obe1474387269547.ditaval
dita:id
B035-2447
Product Category
Teradata Tools and Utilities

This program initiates the following set of requests in sequence.

Each request is a separate transaction.

  1. DROP TABLE T;
  2. CREATE TABLE T (I INT,I2 SMALLINT);
  3. USING V (INTEGER),V2(SMALLINT)INS INTO T VALUES(:V,:V2);
  4. UPDATE T SET I2 = I + 1;
  5. SEL SUM(I) FROM T;

Data values are generated by the program. The data generated for the INSERT statement are the integers 1,2,...MAXROWS for the fields I and I2 (equal values are inserted for the fields I and I2). MAXROWS can be adjusted to set the total number of rows inserted.