Hi,
The following query works fine in SQL Server and I would like to achieve the same in Oracle 9i. It does not work in Oracle. Can any one help who knows the equivalent of this in Oracle ?
UPDATE WEB_FSP_DATA a, WEB_DA_CERTIFICATION b
SET a.address_qualified_date = SYSDATE,
a.da_completed_id = b.da_certified
WHERE a.wire_cntr_cd = b.wire_cntr_cd
AND a.da_cd = b.da_cd
AND b.da_certified = 'Y'
AND a.da_completed_ind IS NULL;
Thanks.
-Bheem
The following query works fine in SQL Server and I would like to achieve the same in Oracle 9i. It does not work in Oracle. Can any one help who knows the equivalent of this in Oracle ?
UPDATE WEB_FSP_DATA a, WEB_DA_CERTIFICATION b
SET a.address_qualified_date = SYSDATE,
a.da_completed_id = b.da_certified
WHERE a.wire_cntr_cd = b.wire_cntr_cd
AND a.da_cd = b.da_cd
AND b.da_certified = 'Y'
AND a.da_completed_ind IS NULL;
Thanks.
-Bheem