6. Data Flashcards
____ is the act of analyzing and converting data into information that can be used in decision-making.
Database research
A typical database application has two major layers: a(n) ____ layer and a(n) ____ layer.
application, database management
After the application software receives a request from a user, it uses the ____ as a tool to obtain the results.
database management system (DBMS)
A database ____, also known as a ____, is composed of records and fields that hold data.
table, datasheet
A database ____ contains a single piece of data about the subject of a record.
field
A database ____ is represented as rows in a table with related information.
record
A(n) ____ is a thousand gigabytes (GB). A(n) ____ is a thousand of these. A(n) ____is one thousand of these. And a(n) ____ is one thousand of these.
terabyte (TB), petabyte (PB), exabyte (EB), zettabyte (ZB)
A(n) ____ database stores data in a plain text file. Each line of the text holds one record. Fields are separated by delimiters like spaces or commas. Because this kind of database uses a simple structure, it cannot contain multiple tables.
flat-file
The ____ database is one of the oldest database models. Data is organized in a tree structure, much like an organizational chart.
hierarchical
In a hierarchical database, there is one parent for each record, with optional nodes, forming sub-trees called ____.
segments
____ databases contain database tables that can be joined together in logical ways. Each record has a unique identifier called a primary key.
Relational
In a relational database, a field may be marked as the primary key on one table but also be found on another table. When this happens, a relationship called a ____ key is created.
foreign
Another word for requests sent to a database is ____.
queries
____ is the code used to retrieve information from a relational database.
Structured Query Language (SQL)
The ____ operation takes rows from one table and creates a new table.
selection