Page 1 of 1

Difference

Posted: Mon Jun 07, 2010 11:58 am
by pavan_test
Can someone please tell me how datastage interprets the following.

link.col1 = 5
link.col1 = '5'
link.col1 = "5"

Thanks
Mark

Posted: Mon Jun 07, 2010 12:11 pm
by anbu
link.col1 = 5 -- Integer comparison
link.col1 = '5' or link.col1 = "5" -- String comparison

Posted: Mon Jun 07, 2010 2:42 pm
by ray.wurlod
Depends on the data type of link.col1