MSCEWI2090

Conditions not found in update statement for transformation

Severity

Low

Description

The warning is show when conditions in update statement are not found

Example code

Input code

UPDATE my_table  
 SET     
  col1 = :col1,     
  col2 = :col2
INSERT INTO my_table (
col1, col2)  
VALUES (:col1, :col2);

.IMPORT INFILE C:\USER\user\my_tr_file_1.tr
  FORMAT UNFORMAT 
  LAYOUT my_layout APPLY upsert_into_my_table;

Output code

Recommendations

Last updated