Data Warehousing Vocabulary Practice

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/31

flashcard set

Earn XP

Description and Tags

Comprehensive vocabulary flashcards covering Data Warehousing definitions, features, processing types, architectural approaches (Inmon vs. Kimball), and schema designs (Star vs. Snowflake).

Last updated 3:53 PM on 5/14/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

32 Terms

1
New cards

Data Warehousing

A collection of data that helps an analyst to make informed decisions in an organisation.

2
New cards

OLAP

OnLine Analytical Processing tools that allow us to analyse data in a multi-dimensional space, resulting in data generalisation and data mining.

3
New cards

Subject-oriented

A feature of a data warehouse focusing on modelling and analysis of data around a specific subject rather than ongoing operations.

4
New cards

Integrated

A feature of data warehouses constructed by combining data from many different sources such as relational databases or flat files.

5
New cards

Time-variant

A feature where the data collected in a warehouse is identified with a particular time period.

6
New cards

Non-volatile

A feature where previous data is not erased when new data is added to the data warehouse.

7
New cards

Information Processing

A type of warehouse processing that deals with querying, basic statistical analysis, and reporting using crosstabs, tables, charts, or graphs.

8
New cards

Analytical Processing

Processing of information using OLAP operations such as slice and dice, drill down, drill up, and pivoting.

9
New cards

Data Mining

Knowledge discovery by finding hidden patterns and associations, constructing analytical models, and performing classification and predictions.

10
New cards

Enterprise Data Warehouse (EDW)

A data warehouse environment that services an entire enterprise. May have a operational data store and physical and virtual data marts

11
New cards

Data Marts

Subsets of data used by individual departments or groups, often building on a dimensional data model.

12
New cards

Operational data store

A hybrid form of data warehouse containing integrated information from many different databases.

13
New cards

Update Driven Approach

An alternative approach where information from multiple heterogeneous sources is integrated in advance and available for direct query. Have high performance and data is copied, processed, integrated, annotated, summarised and restructured in semantic data stores in advance

14
New cards

Data extraction

The warehouse tool function of gathering data from many different sources.

15
New cards

Data cleaning

The warehouse tool function of finding and correcting data errors.

16
New cards

Data transformation

The warehouse tool function of converting source data into the specific data warehouse format.

17
New cards

Metadata

Known as 'data about data', it defines warehouse objects and acts as a directory to help locate the contents of a data warehouse.

18
New cards

Normalisation

A process for converting complex data structures into simple and stable data structures with minimal redundancy, often categorized as 3NF or 4NF.

19
New cards

Inmon Approach

A Top-Down approach to data warehouse design that utilizes entity relationship modelling and normalisation. Time, cost and maintenance are high

20
New cards

Kimball Approach

A Bottom-Up approach to data warehouse design that focuses on dimensional modelling to allow for different individual models of interest. Time, cost and maintenance are low

21
New cards

Denormalisation

A data structure using fewer tables to group data; it offers better performance when reading data for analytical purposes by reducing query complexity.

22
New cards

Fact Tables

Tables that contain the measurements of a business, such as sales, purchase orders, or shipment information.

23
New cards

Dimension Tables

Tables that store descriptions of the dimensions of the business, such as products, customers, vendors, or stores.

24
New cards

Transaction Fact Tables

A type of fact table used to record information related to specific events, such as individual product sales.

25
New cards

Snapshot Fact Tables

A type of fact table that records information applying to specific moments in time, such as year-end accounts.

26
New cards

Surrogate primary keys

A single column integer related to a natural primary key used to map fact tables to specific rows in dimension tables.

27
New cards

Star Schema

A schema where the fact table connects all information sources by pulling data from dimension tables and duplicating it to simplify queries.

<p>A schema where the fact table connects all information sources by pulling data from dimension tables and duplicating it to simplify queries. </p>
28
New cards

Snowflake Schema

A multi-dimensional structure that normalises data within a star schema, splitting dimension tables into a series of normalised tables. Has more complex queries as they need to dig deeper

<p>A multi-dimensional structure that normalises data within a star schema, splitting dimension tables into a series of normalised tables. Has more complex queries as they need to dig deeper</p>
29
New cards

Process flow

  • Extract and load data

  • Clean and transform data

  • Backup and archive data

  • Manage queries and direct them to appropriate data source

30
New cards

Benefits of star schema

Is denormalised, thus queries are simpler as data connects though fact tables. Removes the bottleneck of normalised schema, used OLAP cubes.

31
New cards

Challenges of star schema

Decreased data integrity due to denormalisation, can’t handle complex queries and no many to many relationships as schema is too simple

32
New cards

Accumulating snapshot tables

Records information running tally of data - year to year sales figure