week 8: Databases (Part 2) Flashcards

1
Q

DATA INTEGRATION

ETL: extract, transform, load

A

extract data from source systems

transform them

and load them into a data mart or warehouse

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

how can one ETL?

A

performed by hand-written code (e.g., SQL queries)

by commercial data- integration software

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

“a single version of the truth”

A

central enterprise data warehouse without data marts

The most common architecture

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

Independent data marts

A

store data for a single or a few applications

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

Hub and spoke

A

stores data in a central data warehouse

maintains dependent data marts that obtain their data from the central repository

helps to maintain a single view of the data since it is centrally organized

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

metadata

A

Data about data

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

The quality of the data in the warehouse must be adequate to?

A

to satisfy users’ needs

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

what does data governance require?

A

requires that people, committees, and processes be in place to plan and control the development and use of the data warehouse

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

data users

A

IT developers

front-line workers

analysts

information workers

managers and executives

suppliers

customers

regulators

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

Knowledge management (KM)

A

a process that helps organizations manipulate important knowledge that is part of the organization’s memory

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

Knowledge

A

information that is contextual, relevant, and useful,

developed with the assistance of expertise

also known as Intellectual capital (or intellectual assets)

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

Explicit knowledge

A

objective, rational, technical knowledge that has been documented

Examples: policies, procedural guides, reports, products, strategies, goals, core competencies

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

Tacit knowledge

A

cumulative store of subjective or experiential learning

Examples: experiences, insights, expertise, know-how, trade secrets, understanding, skill sets, and learning

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

Knowledge management systems (KMSs)

A

systematize, enhance and expedite knowledge management

goal is to make the most productive use of knowledge

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

the KMS cycle

A
  1. create
  2. capture
  3. refine
  4. store
  5. manage
  6. disseminate
  7. turns into knowledge
  8. create
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Query Languages

A

search for information in databases or data warehouses

17
Q

Normalization

A

optimize the tables in a relational database

18
Q

Joins

A

link relational database tables with common attributes

19
Q

SQL

A

Structured Query Language

20
Q

Typical key words from SQL

A

SELECT (what to locate)

FROM (specify the source files)

WHERE (provides conditions for the search, like an “if” statemen)

21
Q

QBE

A

Query by Example

Uses a form (template) to provide a sample or description of the desired information

22
Q

entity-relationship (ER) modeling

A

the database design in a process

consists of entities, attributes and relationships organized using business rules

Entities are shown as rectangles, with relationships shown on the lines between them

23
Q

what do business rules in ER modeling describe?

A

describe how the organization uses its data to run its operations

24
Q

cardinality

A

the number of times a single record/instance of one entity can be associated with a single record/instance of another entity

25
Q

types of caridnalities

A

mandatory single

optional single

mandatory many

optional many

26
Q

optional single (cardinality)

A

ex: employee wage rate with pay cheque (employees may not be paid if they are on vacation or leave)

27
Q

mandatory many (cardinality)

A

ex: epartment details with employee details

28
Q

optional many (cardinality)

A

ex: ustomer details with customer sales details/invoices (not all customers purchase every month)

29
Q

mandatory single (cardinality)

A

ex: inventory quantity on hand with its sale price

30
Q

normalization

A

analyzing and reducing a relational database to its most streamlined form

provide minimum redundancy (minimize duplicated attributes)

reduce non-key attributes

Improve processing efficiency of the database