DATA BASE BACKUP AND RECOVERY Flashcards

1
Q

a mechanism that determines whether a user is who he or she claims to be

A

AUTHENTICATION

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

the granting of a right or privilege, which enables a subject to legitimately have access to a system or a legitimately have access to a system or a system’s objects.

A

AUTHORIZATION

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

a security mechanism (of a DBMS) for restricting access to a system’s objects (the database) as a whole

A

ACCESS CONTROL

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

Is the process of periodically taking a copy of the database and log file (and possibly programs) onto offline storage media.

A

DATABASE BACKUP

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

Mechanisms for restoring a database quickly and accurately after loss or damage.

A

DATABASE RECOVERY

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

Recovery in general refers to the various operations involved in restoring, rolling forward, and rolling back a backup.

A

DATABASE RECOVERY

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

Provide back-up copies of portions of or entire database.

A

BACKUP FACILITIES

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

BACKUP MODES

A

COLD BACK-UP
HOT BACK-UP

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

Full Back-ups of a database.

A

COLD BACK-UP

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

Only a selected portion of the database is shut down from use.

A

HOT BACK-UP

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

Maintain an audit trail of transactions and database changes.

A

JOURNALIZING FACILITIES

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

By which DBMS periodically suspends all processing and synchronizes its files and journals to establish recovery point.

A

CHECKPOINT FACILITY

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

Basic Facilities for Database Backup and Recovery

A

BACKUP FACILITIES
JOURNALIZING FACILITIES
CHECKPOINT FACILITY

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

RECOVERY AND RESTART PROCEDURES

A

DISK MIRRORING
RESTORE/RERUN
MAINTAINING TRANSACTION INTEGRITY

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

At least two copies of the database must be kept and updated simultaneously. When a media failure occurs, processing is switched to the duplicate copy of the database.

A

DISK MIRRORING

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

A technique that involves re-processing the day’s transaction (up to the point of failure) against the backup copy of the database.

A

RESTORE/RERUN

17
Q

Commit or abort all transaction changes.
A transaction is the DBMS’s abstract view of user programs.

A

MAINTAINING TRANSACTION INTEGRITY

18
Q

_____________ is the general process of assuring that transactions preserve consistency when executing simultaneously

A

CONCURRENCY CONTROL

19
Q

The back out, or undo, of unwanted changes to the database.

A

BACKWARD RECOVERY/ROLLBACK

20
Q

An atomic transaction is one in which all of the database changes are committed as a unit; either all are done or none is.

A

ATOMICITY

21
Q

A consistent transaction is one in which all actions are taken against rows in the same logical state.

A

ATOMICITY

22
Q

This property means that once the transaction is executed, it must either put the database in a consistent state or abort.

A

CONSISTENCY

23
Q

If the final state of transaction is not stable, it must bring back the system in to its initial state.

A

CONSISTENCY

24
Q

PROPERTIES OF TRANSACTION

A

ATOMICITY
CONSISTENCY
ISOLATION
DURABILITY

25
Q

Means that the behavior of a transaction is not affected by other concurrent transactions executing.

A

ISOLATION

26
Q

An isolated transaction is one that is protected from changes by other users. In a highly concurrent environment, highly isolated transactions may lead to deadlocks.

A

ISOLATION

27
Q

This property means that the effects of transaction will persist after its validation. A durable transaction is one in which all committed changes are permanent.

A

DURABILITY