I loaded data from oracle to snowflake in table1 using informatica.
and the same data we have in snowflake table already table2.
i want to perform minus query for testing but it doesn't work as expected.
eg col1 field value is 1.21 in table1 and the datatype is same as snowflake table2. col1 fields value is 1.21 in table2
when i run
select col1 form table1 minus select col1 from table2
it gives two rows but when we check those records value is same.
What could be this issue ?
Any leads are appreciated.
Thanks .