Chapter 5 - Intro to Databases Flashcards

1
Q

What is transactional information and what kind of database is it stored in?

A

Transactional information is data generated by business processes (ie. date, time, customer ID, location of an ATM withdrawal) .

It is kept in an operational database.

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

What is analytical information and what kind of database is it stored in?

A

It is data that can be used to help the company strategically.

It is stored in a data warehouse so their analysis of it doesn’t affect the functionality of the operational database.

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

What is information granularity?

A

The scale or level of detail in a set of data.

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

What does it mean if data has a fine granularity?

A

The data is in its raw form

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

What does it mean if data has summary granularity?

A

It is the second level of granularity, it summarizes transactional information and turns it analytical.

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

What does it mean if data has course granularity?

A

The data has been aggregated super duper far. (IE the entire company’s weekly sales)

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

What are the five elements of high-quality information?

A

TUCAC (to remember)

timeliness
uniqueness
completeness
accuracy
consistency

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

Tell me about timeliness. What is it? What does it help measure?

A

It helps measure data quality.

It refers to how “fresh” and “relevant” the data is.

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

Tell me about accuracy. What is it? What does it help measure?

A

It helps measure data quality.

Is the information correct? Is it the right information? Is it misspelled?

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

Tell me about completeness. What is it? What does it help measure?

A

It helps measure data quality.

Checking whether all or part of a value is missing. Are all the digits there? Is there a blank field?

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

Tell me about uniqueness. What is it? What does it help measure?

A

It helps measure data quality.

Is each piece of data unique? Or are there duplicates?

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

Tell me about consistency. What is it? What does it help measure?

A

It helps measure data quality.

Caused by techincal bugs. Do the numbers add up? Was the algorithm written correctly?

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

Should we strive for perfect information all the time?

A

No! Satisficing is the practice of making decisions without perfect information because the cost may exceed the value of perfect information.

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

Is it more important to know the quality of your information or have perfect information?

A

Know the quality of your information so you can make informed decisions

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

What is database normalization?

A

Separating data into a set of related tables

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

What is primary key?

A

In a normalized relational database, it is the unique identifier of every record in the database.

17
Q

What is a semantic key?

A

A primary key that is simply data we already had to record (Ie. social security number. it is completely unique, therefore it can be used as a primary key)

18
Q

What is an artificial key?

A

A field that we had to create for the sole purpose of creating a primary key

19
Q

What is a database field?

A

A column

20
Q

What is a record in a database?

A

Row

21
Q

What is the job of a foreign key?

A

To match up to a “key” (like on a map. that’s called the primary key)