CH 17: Data and Competitive Advantage

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

1/34

encourage image

There's no tags or description

Looks like no tags are added yet.

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

No analytics yet

Send a link to your students to track their progress

35 Terms

1
New cards

Data

Raw facts and figures.

2
New cards

transaction processing system

Systems that record a transaction or some form of business-related exchange, such as a cash register sale, ATM withdrawal or product return.

3
New cards

transaction


Any kind of business exchange.

4
New cards

data aggregators


Firms that collect and resell data.

5
New cards

legacy systems

Older information systems that are incompatible with other systems, technologies, and ways of conducting business

6
New cards

database

Single table or a collection of related tables.

7
New cards

database management systems (DBMS)

Software for creating, maintaining, and manipulating data (also known as database software).

8
New cards

structured query language (SQL)

A language used to create and manipulate databases.

9
New cards

database administrator (DBA)

Job title focused on directing, performing, or overseeing activities associated with a database or set of databases.

10
New cards

entity, table or file

List of data, arranged in columns or fields and rows or records.

11
New cards

column or field

A column in a database table. Columns represent each category of data contained in a record

12
New cards

row or record


A row in a database table. Records represent a single instance of whatever the table keeps track of.

13
New cards

relational database

Most common standard for expressing databases, whereby tables (files) are related based on common keys.

14
New cards

data warehouse

A set of databases to support decision-making in an organization.

15
New cards

data mart

Database or databases focused on addressing the concerns of a specific problem or business unit

16
New cards

online analytical processing (OLAP)

A method of querying and reporting that takes data from standard relational databases, calculates and summarizes data, and then stores the data in a special database called a data cube

17
New cards

big data

The collections, storage, and analysis of extremely large, complex, and often unstructured data sets that can be used by organizations to generate insights that would otherwise be impossible.

18
New cards

business intelligence (BI)

A term combining aspects of reporting, data exploration and ad hoc queries, and sophisticated data modeling and analysis

19
New cards

dashboards

Heads-up display of critical indicators that allows managers to get a graphical glance at key performance metrics

20
New cards

data visualization

The graphical representation of data and information.

21
New cards

What is entity-relationship (ER) modeling?

It is a database design process that database designers use

22
New cards

Primary key

To uniquely identify a single row. May be made up of one or more attributes. Ex: Email addresses, Student IDs, Social Security Number, etc

23
New cards

Secondary keys

Other field that have some identifying information but typically do not identify the file with complete accuracy. Ex: Last Name, Zip Code, Date of Birth, etc.

24
New cards

Foreign Key

a primary key from one table placed into another table

25
New cards

One and Only One

You MUST have exactly one. No skipping, no extras. Ex: Every employee must have exactly one Social Security Number — not zero, not two.

26
New cards

Zero or One

You can have none, or you can have one. It's optional but can't exceed one. Ex: A person may or may not have a middle name — but you can't have two middle names.

27
New cards

One or Many

You MUST have at least one, but can have as many as you want. Ex: A restaurant must have at least one menu item — it can't have zero or it's not a restaurant.

28
New cards

Many-to-many

A junction table is created which has a composite primary key consisting of the primary keys from each of the tables that formed it.

29
New cards

Zero Or Many

Completely open-ended. You can have none, one, or as many as you want. Ex: A person can have zero pets, one pet, or ten pets — totally up to them.

30
New cards
<p><span>Cardinality</span></p>

Cardinality

the total number of unique elements within a set or the measure of a set's size

31
New cards

One-to-One (1:1)

One record in Table A matches exactly one record in Table B. Ex: One person has one passport. One passport belongs to one person.

32
New cards

One-to-Many (1:M)

One record in Table A can match many records in Table B, but each record in Table B only points back to one in Table A.

33
New cards

One-to-Many (1:M) Example

Ex: One customer can place many orders, but each order belongs to only one customer.

34
New cards

Many-to-Many (M:M)

Many records in Table A can relate to many records in Table B.

35
New cards

Many-to-Many (M:M) Example

Ex: Students and courses — one student takes many courses, and one course has many students enrolled.