Update statement in a procedure
586006Oct 22 2007 — edited Oct 22 2007update pol_notification a
set obj_id = v_presv_client_id
where a.obj_id=v_client_id and a.obj_type='client' ;
update pol_notification a
set obj_id = v_address_id
where a.obj_id=v_address_id and a.obj_type='address' ;
I am using these two update statements in one procedure but the tables are not being updated.
Any reason for that. Am i using the right statements?