The primary key is “LocatorID” column. By matching this need to update only three columns “Client Poc” and “Lastupdated” and “status” column.
Hey @sathish_moorthy
Take Run Command activity and Use below query:
UPDATE YourTableName
SET
[Client Poc] = 'New Client Poc Value',
Lastupdated = GETDATE(),
status = 'New Status Value'
WHERE
LocatorID = '12345';
Screenshot for reference:
Execution of above query depends upon the datatype of the respective columns in database table. So, Modify values accordingly!
Regards,
Ajay Mishra
Use LookUp to find the data from data Table and then use Execute non query,
Update Set command with Where clause to update the record.
Thanks
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.
