im exporting procedures from sybase to netezza and in some of the procedures there is query that keeps giving me the "Update canceled: attempt to update a target row with values from multiple join rows" Data and table structure on both databases is the same, and this query woks on Sybase but not on Netezza
UPDATE table1 t1 SET t1.column1=t2.column1
FROM table2 t2
WHERE t1.column2=t2.column2;
What could cause this error if data and query is the same ?