Unit 5 - Administration Flashcards
ACID
An acronym for the four properties that ensure data validity: Atomicity, Consistency, Isolation, and Durability. Transactions are database operations that satisfy the ACID properties.
Atomicity
The quality of indivisibility. In SQL database terms, atomicity means the transaction cannot be partially executed: Either all statements are executed or none of them are.
Atomocity
The quality of being indivisible.
Availability
The assurance that data will be available when it is needed.
B-Tree Index
A type of index that uses an upside-down tree to create a hierarchical system of nodes that reference the data being searched.
BEGIN
A statement that marks the beginning of a transaction.
Backup Strategy
A plan that specifies what will be backed up and how often.
Balanced Structure
A B-tree index structure in which all leaf nodes are at the same level.
CIA Triad
The combination of confidentiality, integrity, and availability that ensures data and systems are fully protected from security threats.
COMMIT
A statement that marks the end of a transaction and makes the transaction’s results permanent.
CREATE INDEX
A statement that enables you to create a new index for a column in a table.
CREATE ROLE
A statement that creates a new role in a PostgreSQL database.
Child Node
A node that appears below another node (its parent node) in a B-tree.
Confidentiality
The assurance that private data is not accessible to unauthorized persons.
Consistency
The quality of something being done the same way in all cases.
Consistent State
A state in which all of the data integrity constraints on the database are satisfied.
DROP INDEX
A statement that enables you to drop (delete) an index.
Data Migration
The process of moving data from one database system or platform to another.
Differential Backup
A backup strategy that runs a full backup only on certain days and then backs up only the data that has changed since the last full backup.
Dumping
The process of extracting data or information from a system or application and storing it in a file or memory space for backup, analysis, or debugging.
Durability
The quality of continuing to exist without being undone or removed.
Full Backup
A backup strategy where every backup performed backs up all data.