Hi expert
how I can lock a row in sql server that prevent CRUD operation even SELECT.
Is it Possible?
Serializable Isolation level does not prevent SELECT.
thanks
SQL Server already natively locks a record from dirty reads as it is being updated. This has the effect of blocking the select call until the update / insert call is complete.