I know SQL Server has locks and latch to protect read and write.
If there are very very many users reading the same object(table, page or evern row) at the same time, would performance be gotten down?
In Oracle, it will protect the datapage when reading. So far as I know, a select statement will create S lock on the object (row,page,table...)when reading, but others can also add S lock on it. I guess it is the same for latch. So if there are many users acceesing the same object, certiainly it will be load to memory for reading, but how is the performance going then?
Expecting for the answers!