File Chap 6 Flashcards

1
Q

hybrid databases that have a relational database framework but data is stored in forms other than a table (classes) – works for both structured and unstructured data.

A

Object Oriented Database

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

data is broken into multiple tables of related fields which are connected to one another. Best for structured data

A

Relational Database

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

(not only SQL) each item is stored individually rather than in rows and columns and because it uses more than just SQL it works well with other languages and websites. Best for unstructured data

A

NoSQL Database

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

establish a broad view of what should be included. The entities. Foundation for logical data models. Relationship among entities .

Used by Business Analyst

A

Conceptual ERD

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

Brings in the field names

Used by Business Analyst

A

Logical ERD

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

design blueprint The physical data model is the most granular level of entity-relationship diagrams, and represents the process of adding information to the database. Physical ER models show all table structures, including column name, column data type, column constraints, primary key, foreign key, and relationships between tables.

Used by Database Engineer

A

Physical ERD

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

A: Tables

B: Records

C: Fields

A

Components of a Database

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

occurs when the same piece of data is stored in multiple places.

A

Data Redundancy

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

The unique IDs that identify the records in the database

A

Keys

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

Managing data accuracy and consistency, including data redundancy risks

A

Data Integrity

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

states that an FK can’t be entered into a table unless it exists as a PK in the base table. For example, you cannot enter the customer ID into the Orders table if the customer ID does not exist in the Customers table.

A

Referential Integrity

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

The primary key cannot be null, which means empty.

A

Entity Integrity

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