Concurrent access Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

ONE ISSUE - What is record lacking?

A

Record locking – with this technique, a record is locked when it is being accessed by a user with write access; this prevents additional users from editing and saving the record until the original user has completed their database transaction.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

ONE ISSUE - What is serialisation?

A

this technique only permits one transaction at a time to take place when multiple users are updating a database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

ONE ISSUE - What is Timestamp ordering?

A

this approach timestamps the start time of each database transaction that takes place based on system clock. The oldest timestamp transaction takes priority and is executed first where multiple transactions take place on the same record.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

ONE ISSUE - What is Commitment ordering?

A

in this case, the order of operation of concurrent transactions is based on the timestamp and the precedence of the particular command requested; for example, some commands take precedence and have priority, so they are, therefore, executed before older timestamp transactions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly