Lesson 2 Flashcards

(26 cards)

1
Q

A class of software that allows large numbers of database transactions in real-time, typically over the internet

A

Online transactional processing (OLTP)

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

Any change to data in a system, whether it’s an insertion, deletion, or query

A

database transaction

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

A class of software that allows complex analysis to be conducted on large databases without negatively affecting transactional systems

A

Online transactional processing (OLAP)

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

The system of record for any given element or piece of information

A

Source system

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

Technology that is dedicated to the storage of company data from a wide range of sources for reporting and decision-making purposes

A

Data warehouse

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

A subset of the data warehouse that is dedicated to a specific department or group

A

Data mart

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

Holds the “facts” about a particular business process or event and contains keys to relate to the other tables

A

Fact table

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

Holds attributes or the categorical information that supports the fact tables

A

Dimension table

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

The relational model of fact and dimension tables that looks like a star, in which all dimension tables are joined to a single fact table

A

Star schema

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

The relational model of fact and dimension tables that looks like a snowflake, in which dimension tables are joined to a single fact table and also other dimension tables

A

Snowflake schema

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

A technology for storing large amounts of structured and unstructured types of information in their original format

A

data lake

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

A data management system that combines the best of both data warehousing and data lakes

A

data lakehouse

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

A way of updating dimension data

A

Slowly changing dimensions

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

Overwrites the existing value in a field of data with a new value and does not retain the history of that field

A

Slowly Changing Dimension Type 1

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

Adds a new row for the new value and also maintains the historical record

A

Slowly Changing Dimension Type 2

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

Adds a new column for the current value but also retains the original column with the original value

A

Slowly Changing Dimension Type 3

17
Q

Which subset of a data warehouse holds data that is relevant to a specific department?

18
Q

What is the most flexible storage system for holding large amounts of both structured and unstructured data?

19
Q

In an organization, which technology holds a system of record, or is a software system dedicated to a specific task?

A

Source system

20
Q

What choices do organizations have when they want to combine data from different source systems into one unified data management system?

A

Data warehouses, data lakes, and data lakehouses

21
Q

What type of table stores information that is categorical for the use of reporting?

A

Dimension tables

22
Q

What are two common schemas that are used to relate data in a data warehouse?

A

Star schema and snowflake schema

23
Q

What process does slowly changing dimensions describe?

A

Three ways to change dimension data in a system. There are three types: Type 1, Type 2, and Type 3

24
Q

Which type of slowly changing dimension is in use when a new record is added to account for a change to dimension data?

25
If the name of a product changes using Type 1 slowly changing dimensions, what impact would this method have on reporting prior to the change?
This method will only show the most current name of the product in reports dated prior to the name change, even if the product name was originally something different
26
Which slowly changing dimension type provides the most complete history of dimension data, and why?
Type 2; every record of the change is maintained, with time stamps, in the table dedicated to that dimension