CH6 Flashcards

1
Q

an organized collection of data.

A

database

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

is a group of programs that manipulate the database, and provides an interface between the database and its users and other application programs.

A

Database management system (DBMS)

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

T/F: Even without data and the ability to process it, an organization could successfully complete most business activities.

A

false, could not.

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

data consists of raw ____.

A

facts

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

data must be ______________ to transform it into useful information

A

organized in a meaningful way

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

a ____ represents a citcuit that is either on or off.

A

bit (binary digit)

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

T/F: a byte is made up of four bits.

A

false, eight bits.

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

each byte represents a _____.

A

character

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

a name, number or combination of characters that describes an aspect of a business object or activity.

A

field

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

a collection of related data fields.

A

record

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

a collection of related records.

A

file

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

a collection of integrated and related files.

A

database

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

bits, characters, fields, records, files, and databases.

A

hierarchy of data

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

What is the hierarchy of data? (database/files/records/fields/byte)

A

database > files > records > fields > byte

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

a person, place, or thing for which data is collected, stored and maintained.

A

entity

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

a characteristic of an entity.

A

attribute

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

the specific value of an attribute.

A

data item

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

a field or set of fields that uniquely identifies the record.

A

primary key

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

In a (traditional/database) approach to data management, information systems share a pool of related data.

A

database

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

In a (traditional/database) approach to data management, each distinct operational system used data files dedicated to that system.

A

traditional

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

In a database approach to data management, the ability to _____ data and information resources is offered.

A

share

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

In a database approach to data management, a ________ is required.

A

database management system (DBMS)

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

Summarize in 3 point the Database approach to data management.

A
  • Information systems share a pool of related data
  • Offers the ability to share data and information resources
  • A database management system (DBMS) is required
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

What are considerations when building a database (name 6 points)

A

access, security, archiving, content, logical structure, physical organization.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
a diagram of data entities and their relationships.
data model.
26
data modeling done at the level of the entire enterprise.
enterprise data modeling
27
data models that use basic graphical symbols to show the organization of and relationships between data.
entity-relationship (ER) diagrams.
28
a simple but highly useful way to organize data into collections of two-dimensional tables called relations.
relational model
29
In a relational model, each row in the table represents an _____. And each column represents an _____________.
entity, attribute of that entity.
30
a range of allowable values for a data attribute.
domain
31
eliminating rows according to certain criteria.
selecting
32
eliminating columns in a table.
projecting.
33
combining two or more tables.
joining
34
combining two or more tables through common data attributes to form a new table with only the unique data attributes.
linking.
35
also called data cleaning or data scrubbing
data cleansing
36
the process of detecting and then correcting or deleting incomplete, incorrect, inaccurate, irrelevant records that reside in a database.
data cleansing
37
T/F: the cost of performing data cleansing is inexpensive.
false, it can be quite high.
38
T/F: data cleaning is much like data validation.
false, it is different from data validation.
39
involves the identification of "bad data" and its rejection at the time of data entry.
data validation.
40
T/F: creating and implementing the right database system ensures that the database will support both business activites and goals.
T
41
T/F: capabilities and types of database systems are restricted.
false, they vary considerably
42
a special purpose programming language for accessing and manipulating data stored in a relational database.
SQL
43
SQL databases conform to ________ properties.
ACID
44
ACID properties include:
atomicity, consistency, isolation, and durability.
45
1986: ______ was adopted by ANSI as the standard query language for relational databases.
SQL
46
the standard query language for relational databases.
SQL
47
Database activites (List 4 points):
- providing a user view of the database - adding and modifying data - storing and retrieving data - manipulating the data and generating reports
48
a description of the entire database
schema
49
T/F: a schema can be part of the database or a separate schema file.
true
50
the DBMS can reference a _______ to find where to access the requested data in relation to another piece of data.
schema
51
DDL
Data definition language
52
a collection of instructions and commands used to define and describe data and realtionships in a specific database.
data definition language (DDL)
53
_____ allows the database's creator to describe data and relationships that are to be contained in the schema.
DDL
54
a detailed description of all the data used in the database.
data dictionary
55
can also include a description of data flows, information about the way records are organized, and the data-processing requirements.
data dictionary
56
when an application needs data, it requests the data through the _______.
DBMS
57
______________ deals with the situation in which two or more users or applications need to access the same record at the same time.
concurrency controls
58
DML
Data manipulation language
59
a specific lanuage provided with a DBMS, which allows users to access and modify the data, to make queries, and to generate reports.
Data manipulation language (DML)
60
A ______ can produce a wide variety of documents, reports, and other output that can help organizations achieve their goals.
DBMS
61
skilled and trained IS professionals who applies database progrmaming languages to craft a set of databases to meet those needs.
Database administrators (DBAs)
62
T/F: the data administrator can be a high-level position reporting to top-level managers.
true
63
a nontechnical position responsible for defining and implementing consistent principles for a variety of data issues.
data administrator
64
List 3 things a database administrator (DBA) does.
- test and evaluates databases. - works with users to define their data needs. - assures that data is secure from unauthorized access.
65
DBA
Database Adminstrator
66
database adminstrators implement changes to improve their ________ performance.
databases'
67
T/F: Some of the data issues that a DBA is responsible for implementing consistent principles for is setting data standards and data definitions that apply across ALL the databases in an organization.
true
68
DaaS
Database as a Service
69
a database which is stored on a service provider's servers.
Database as a service (DaaS)
70
DaaS is accessed by the client over a ________.
network, typically the internet
71
T/F: The database adminstration is handed by the user in a DaaS.
false, it is handled by the service provider.
72
List 3 popular database management systems:
- DaaS
73
Amazon relational database service (Amazon RDS) is an example of __________.
DaaS
74
extremely large and complex data collections that traditional data management software, hardware, analysis processes are incapable of dealing with them.
big data
75
the three characteristics of big data are: _________, _______, and ______.
volume, velocity, and variety.
76
adverstising and marketing agencies track comments on social media is an example of _______.
big data uses
77
hospitals analyze medical data and patient records is an example of _______.
big data uses
78
a large database that collects business information from many sources in the enterprise in support of management decision making.
data warehouse
79
provides a means to store and retrieve data that is modeled using some means other than the simple two-dimensional tabular relations used in relational databases.
NoSQL database
80
T/F: NoSQL databases require a predefined schema.
false, they do not require a predefined schema
81
In NoSQL databases, data structures are more ______ and can provide improved access _____ and _______.
flexible, speed and redundancy
82
The ability to spread data over multiple servers so that each server contains only a subset of the total data is an advantage of:
NoSQL databases
83
Name 3 advantages of NoSQL databases.
- they do not require a predefined schema - their data structures are more flexible - they have the ability to spread data over mulitple servers.
84
an open-source software framework that includes several software modules that provide a means for storing and processing extremely large data sets.
Hadoop
85
The two primary components of Hadoop include: A ___________ component (MapReduce), and a ______________ (Hadoop distributed File System, HDFS)
data processing, distributed file system.
86
T/F: Data modeling is a key aspect of organizing data and information.
true
87
T/F:the database approach to data management has become broadly accepted
true