Hi I have a stored procedure, which has a SELECT Query (on a table)
then it updates the same table's modified timestamp so that the same records
will not be picked up again.
When two application nodes try to execute this stored procedure simultaneously
,is it possible that both nodes will get the same records (due to the fact that 1st update was not executed before 2nd read ) ?
Any help would be much appreciated.