MIS Ch. 5 Flashcards

0
Q

Database

A

A self-describing COLLECTION of integrated RECORDS

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

What is the Purpose of a Database?

A

To KEEP TRACK of things

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

Columns

A

Fields

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

Rows

A

Records

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

Table

A

File

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

Key/ Primary Key

A

A column or group of columns that identifies a unique row in a table

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

Metadata

A

Data that describes data

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

Foreign Keys

A

Keys of a different table than the one in which they reside

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

Relational Databases

A

Databases that carry their data in the form of tables and represent relationships using foreign keys

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

Database Management System (DBMS)

A

A PROGRAM used to create, process, & administer a database

• Ex: DB2, Access, SQL Server, & Oracle Database

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

Structured Query Language (SQL)

A

And international standard language for processing a database

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

Database Administration

A

Used to set up a SECURITY system involving user accounts, passwords, permissions, and limits for processing the database

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

Database Application

A

A COLLECTION of forms, reports, queries, & application programs that serves as an INTERMEDIARY between users & database data

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

Graphical Queries

A

CRITERIA are created when the user clicks on a graphic.

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

Multi-User Processing

A

Multiple users processing the same database

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

Lost-Update Problem

A

Two users update the same data item, but only one of those changes is recorded in the data.

16
Q

Entity-Relationship (E-R) Data Model

A

A TOOL for CONSTRUCTING data models by defining the entities that will be stored in the database and the relationships among those entities

17
Q

Entity

A

Something that USERS want to TRACK

• Ex: Order, Customer, Salesperson, Item

18
Q

Attributes

A

Describe characteristics of the entity

• Ex (for Order entity): OrderNumber, OrderDate, SubTotal, Tax, Total

19
Q

Identifier

A

An ATTRIBUTE or group of attributes whose value is associated with only ONE ENTITY instance

20
Q

Relationships

A

Associations among entities or entity instances in an E-R model, or an association among rows of a table in a relational database

21
Q

Crow’s Feet

A

LINES on an entity-relationship diagram that indicate a 1:N relationship between two entities

22
Q

Crow’s-Foot Diagram

A

A type of entity-relationship diagram that uses a crow’s foot symbol to designate a 1:N relationship

23
Q

Entity-Relationship (E-R) Diagram

A

A type of diagram used by database DESIGNERS to DOCUMENT entities and their relationships to each other

24
Q

1:N

A

One-to-many relationship

25
Q

N:M

A

Many-to-many relationship

26
Q

Normalization

A

The process of converting a poorly structured table into two or more well-structured tables

27
Q

Maximum Cardinality

A

The maximum number of entities that can be involved in a relationship

28
Q

Minimum Cardinality

A

The minimum number of entities required in a relationship

29
Q

Data Integrity Problem

A

When data items DISAGREE with one another

• Ex: two different names for the same customer

30
Q

Normal Forms

A

Forms of tables that remove duplicated data and other problems

31
Q

MongoDB

A

And open-source, document-oriented, non-relational DBMS

32
Q

NoSQL Databases

A

NON-RELATIONAL databases that support very high TRANSACTION RATES processing SIMPLE data structures, replicated on many servers in the cloud

33
Q

Data Model

A

Describes the data & relationships that will be stored in the database