If I try to remove the data brunch from the table. let's say
DELETE FROM myTable Where CreationDate < GetDate()
which takes time to delete, will this table be locked and a new insert cannot be performed?
This table does not self-define itself. I would suggest that I can still insert new data while deleting it. Will delete sql use an exclusive lock that denies all access to the table?
thanks
source share