Focal Point
LIKE OPERATOR IN VERSION 7.7.03

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/1381057331/m/5347098016

October 10, 2011, 07:00 AM
Madhumitha
LIKE OPERATOR IN VERSION 7.7.03
Hi All,

I am Using IWAY Data Migrator 7.7.03

To join two tables using Like operator
WHERE T3.Employee_Name LIKE T1.Employee_Name

I am getting the following error
(FOC14069) SQL SYNTAX ERROR ON LINE 1 AT 'T1'
WHERE T3.Employee_Name LIKE T1.Employee_Name

In Iway DataMigrator 7.6.9, Like Operator is working but in Iway DataMigrator 7.7.03, Like operator is not working



T1 T2
AAA %%%
BBB %%%
CCC %%%
DDD %%%

Can any one help me, how to join the above two fields and how to use LIKE Operator in Join for the version 7.7.03

Thanks,
Madhu
October 10, 2011, 01:35 PM
Dan Satchell
Unless one of the Employee_Name values has a percent sign (%) or underscore character (_), you are effectively performing an equality comparison. In that case, just change the LIKE operator to an equality operator (=).


WebFOCUS 7.7.05
October 11, 2011, 05:50 AM
Madhumitha
Hi,

I want to compare two fields using LIKE operator but this is not working in IWay DataMigrator 7.7.03 but in IWay DataMigrator 7.6.10 the same join condition using LIKE operator is working fine.

Is there anyway to join two fields using like operator?