Week 1&2 Flashcards
(31 cards)
What is Big Data?
Larger, more complex data sets, especially from new data sources.
What do flat files do?
A flat file, also known as a text database, stores data in a plain text format?
What does ASCII stand for?
American Standard Code for Information Interchange.
Row synonyms:
Record, tuple.
Column synonyms:
Field, attribute, property, element.
A table can also be called?
A relation or a file.
What is a specific example of an entity called?
Instances.
What is a database?
A database is an organized collection of related information stored in a file.
What is a DBMS?
A DBMS, or Relational Database Management System, is software designed to store, retrieve, define, and manage data in a database.
What is a relational database?
A database that stores data in a structured format, using columns and rows.
What is a RDBMS?
A RDBMS, or Relational Database Management System, is a subset DBMS designed specifically for relational databases.
What is a primary key?
A unique identifier.
What is a foreign key?
An attribute that refers to another entities primary key.
What is a composite key?
Composite keys are comprised of at least two columns that, combined, make one primary key.
What is an ERD?
An ERD, or Entity-Relationship Diagram, is a type of flowchart that illustrates how entities relate to each other.
What is normalization?
The process of organizing data in a database.
What is a schema?
A database structure.
What is an index?
A data structure used for organizing and retrieving vast amounts of data.
What is ACID?
ACID are four properties that can be used to test whether a DBMS can handle transactions.
Atomicity, Consistency, Isolation, and Durability.
What is a transaction?
Any change in a DB.
What is a dataset?
A collection of data.
What is durability?
Durability states that, once committed, the results of a transaction are permanent and survive future system and media failures.
What is consistency?
Consistency states that transactions must obey user-defined integrity constraints or be rolled back.
What is atomicity?
Atomicity states that the results of a transaction must either be fully committed or rolled back.