CIS Chapter 1-4

0.0(0)
studied byStudied by 14 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/68

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

69 Terms

1
New cards

Operational Data

Data related to current operations, such as daily revenue.

2
New cards

Informational Data

Data that can include historical information and context.

3
New cards

DB

Abbreviation for Database, an organized collection of related data.

4
New cards

Data

Stored representations of meaningful objects and events, like names or birthdays.

5
New cards

Structured Data

Data that is organized in a defined format, such as numbers and text.

6
New cards

Unstructured Data

Data that does not have a predefined format, such as images and videos.

7
New cards

DBA

Database Administrator, responsible for managing databases.

8
New cards

DBMS

Database Management System, software for managing databases.

9
New cards

Data Management

The process of handling data for personal or organizational use.

10
New cards

Multi-tiered

A database architecture suitable for small companies.

11
New cards

Enterprise

A larger scale of data management, often involving complex systems.

12
New cards

Information

Data that has been processed to enhance knowledge.

13
New cards

Processed Data

Data that has been transformed into meaningful information.

14
New cards

Metadata

Data that describes the properties and context of user data.

15
New cards

Data Models

Abstract models that organize data descriptions and constraints.

16
New cards

Conceptual Data Model

Defines what the system contains, created by stakeholders.

17
New cards

Logical Data Model

Defines how the system should be implemented, regardless of DBMS.

18
New cards

Physical Data Model

Describes how the system will be implemented using a specific DBMS.

19
New cards

Entities

Descriptions of people, places, objects, events, or concepts.

20
New cards

Attributes

Characteristics or properties of an entity.

21
New cards

Primary Key

Unique attributes that identify an entity instance.

22
New cards

Foreign Key

An attribute that creates a link between two entities.

23
New cards

Relationships

Connections between entities, such as parent-child relationships.

24
New cards

One-to-Many Relationship

A relationship where one entity can relate to many instances of another.

25
New cards

Many-to-Many Relationship

A relationship requiring a bridge entity to connect multiple instances.

26
New cards

ERD

Entity-Relationship Diagram, a visual representation of entities and relationships.

27
New cards

Required Attribute

An attribute that must be present in each entity instance.

28
New cards

Optional Attribute

An attribute that may not have a value.

29
New cards

Composite Attribute

An attribute that consists of meaningful parts.

30
New cards

Simple Attribute

An attribute that cannot be broken down further.

31
New cards

Multivalued Attribute

An attribute that can have multiple values for a single entity instance.

32
New cards

Derived Attribute

An attribute whose value can be calculated from other attributes.

33
New cards

Identifier

An attribute that distinguishes individual instances of an entity.

34
New cards

Relationship Type

A meaningful association between entity types.

35
New cards

Cardinality Constraint

Rules specifying the number of instances in a relationship.

36
New cards

Time Stamp

A time value associated with a data value indicating when an event occurred.

37
New cards

Enhanced Entity Relationship (EER)

A model extending the original E-R model with new constructs.

38
New cards

Subtype

A subgroup of entities within a larger entity type.

39
New cards

Supertype

A generic entity type that has relationships with one or more subtypes.

40
New cards

Attribute Inheritance

Subtypes inherit attributes from their supertype.

41
New cards

Generalization

Defining a more general entity type from specialized types.

42
New cards

Specialization

The process of defining one or more subtypes of the supertype and forming supertype/subtype relationships

43
New cards

Completeness Constraint

A type of constraint that addresses whether an instance of a supertype must also be a member of at least one subtype

44
New cards

Total Specialization Rule

Each supertype instance must belong to at least one subtype.

45
New cards

Partial Specialization Rule

A supertype instance may not belong to any subtype.

46
New cards

Disjointness Constraint

Specifies if a supertype instance can belong to multiple subtypes.

47
New cards

Subtype Discriminator

An attribute determining the target subtype for an instance.

48
New cards

Data Structure

Organization of data in tables, rows, and columns.

49
New cards

Relation

A two-dimensional table of data.

50
New cards

Composite Key

A primary key consisting of more than one attribute.

51
New cards

Null

A value assigned when no other value applies.

52
New cards

Entity Integrity Rule

No primary key attribute may be null.

53
New cards

Referential Integrity Constraint

Foreign key values must match primary key values or be null.

54
New cards

Well-Structured Relation

A relation with minimal redundancy and no anomalies.

55
New cards

Anomaly

An inconsistency that arises from redundant data.

56
New cards

Regular Entity

An entity with independent existence, representing real-world objects.

57
New cards

Weak Entity

An entity dependent on a regular entity for its existence.

58
New cards

Associative Entity

An entity formed from a many-to-many relationship.

59
New cards

Surrogate Primary Key

A system-assigned primary key for a relation.

60
New cards

Normalization

The process of organizing data to minimize redundancy and anomalies.

61
New cards

Normal Form

A state of relation that requires that certain rules regarding relationships between attributes are satisfied

62
New cards

First Normal Form

Any multivalued attributes that have been removed so that there is a single value 

63
New cards

Second normal Form

Any partial functional dependencies have been removed, Entity whose non primary key attributes are dependent of the full primary key

64
New cards

Third Normal Form

Any transitive dependencies have been removed Entity whose primary key attributes are not dependent on any other non primary key attribute

65
New cards

Goals of normalization

Minimize data redundancy, this avoids anomalies and conserves storage space, Simplify the enforcement of referential integrity constraints, Make it easier to maintain data (insert, update, and delete), Provide a better design that is an improved representation of the real world and a stronger basis for future growth

66
New cards

Insertion

adding new rows forces user to create duplicate data

67
New cards

Deletion

deleting rows may cause a loss of data that would be needed for other future rows

68
New cards

Modification

changing data in a row forces changes to other rows because of duplication

69
New cards

Overlap Rule

A rule that specifies that an instance of a supertype may simultaneously be a member of two or more subtype