Send a link to your students to track their progress
28 Terms
1
New cards
creator of Napoelon's 1812 Infographic
Charles Minard
2
New cards
creator of the 1854 cholera outbreaks infographic
John Snow
3
New cards
Correlation does not equal causation
True
4
New cards
two-phase commit protocol
standardized way to make sure all data can be written without any inconsistencies. 1st phase: check if all processes can be completed. Second phase will commit all processes.
5
New cards
deadlock
when two transactions are trying to lock the same row and neither can continue until the other is complete.
6
New cards
keys
columns that hold unique values that distinguish each record from others
7
New cards
virtual table
temporary tables that help reduce redundant data
8
New cards
Structured Query Language (SQL)
Language used to manage, access, and manipulate relational databases
9
New cards
SELECT
10
New cards
DISTINCT
unique values
11
New cards
FROM
12
New cards
WHERE
only records of certain criteria
13
New cards
LIKE
used with wildcard underscore
14
New cards
ORDER
sort data
15
New cards
BY
sort data
16
New cards
ASC
ascending order
17
New cards
DESC
descending order
18
New cards
LIMIT
limit the results to a certain number of rows
19
New cards
JOIN
combine entries from two or more tables
20
New cards
fault-tolerance
ability of a system to continue to run properly even if pieces fail
21
New cards
big data
sets of data that are larger than a consumer software application can handle.
22
New cards
atomic transaction
transaction where all components must be carried out before the transaction is considered complete such that all occur or none occur
23
New cards
Consistency
the fact that information from one table does not contradict itself in any other table throughout a database
24
New cards
idempotency
when the operation results in same end result no matter how many times performed
25
New cards
relational database
database that has multiple tables that are connected by unique keys
26
New cards
rollback
returning back to database state before write-ahead log began
27
New cards
simpson's paradox
when multiple groups of data trend in one direction but when combined with other sets the trend disappears/reverses
28
New cards
write-ahead logging
method for avoiding inconsistencies in which all transactions are written and saved to a log