Practice Exam

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

1/103

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.

104 Terms

1
New cards

Enterprise resource planning (ERP)

A business management system that integrates all functions of the enterprise, such as manufacturing, sales, finance, marketing, inventory, accounting, and human resources. ERP systems are software applications that provide the data necessary for the enterprise to examine and manage its activities.

2
New cards

Data warehouse

An integrated decision support database whose content is derived from the various operational databases.

3
New cards

Database application

An application program (or set of related programs) that is used to perform a series of database activities (create, read, update, and delete) on behalf of database users.

4
New cards

Data independence

The separation of data descriptions from the application programs that use the data.

5
New cards

Data modeling and design tools

Software tools that provide automated support for creating data models.

6
New cards

Repository

A centralized knowledge base of all data definitions, data relationships, screen and report formats, and other system components.

7
New cards

Enterprise data modeling

The first step in database development, in which the scope and general contents of organizational databases are specified.

8
New cards

Conceptual schema

A detailed, technology-independent specification of the overall structure of organizational data.

9
New cards

Physical schema

Specifications for how data from a logical schema are stored in a computer's secondary memory by a database management system.

10
New cards

Prototyping

An iterative process of systems development in which requirements are converted to a working system that is continually revised through close work between analysts and users.

11
New cards

Project

A planned undertaking of related activities to reach an objective that has a beginning and an end.

12
New cards

Database

An organized collection of logically related data.

13
New cards

structured data

Stored representations of meaningful objects and event: numbers, text, dates

14
New cards

unstructured data

Stored Representation of meaningful objects and events: images, video, documents.

15
New cards

Data

Stored representations of objects and events that have meaning and importance in the user's environment.

16
New cards

Information

Data that have been processed in such a way as to increase the knowledge of the person who uses the data.

17
New cards

Metadata

Data that describe the properties or characteristics of end-user data and the context of those data.

18
New cards

Data models

Graphical systems used to capture the nature and relationships among data.

19
New cards

Entity

A person, a place, an object, an event, or a concept in the user environment about which the organization wishes to maintain data.

20
New cards

Relational database

A database that represents data as a collection of tables in which all data relationships are represented by common values in related tables.

21
New cards

Database management system (DBMS)

A software system that is used to create, maintain, and provide controlled access to user databases.

22
New cards

User View

A logical description of some portion of the database that is required by a user to perform some task.

23
New cards

Constraint

A rule that cannot be violated by database users.

24
New cards

Systems development life cycle (SDLC)

The traditional methodology used to develop, maintain, and replace information systems.

25
New cards

Logical schema

The representation of a database for a particular data management technology.

26
New cards

Agile software development

An approach to database and software development that emphasizes "individuals and interactions over processes and tools, working software over comprehensive documentation, customer collaboration over contract negotiation, and response to change over following a plan."

27
New cards

Data lake

A large integrated repository for internal and external data that does not follow a predefined schema.

28
New cards

Relation

A named, two-dimensional table of data.

29
New cards

Primary key

An attribute or a combination of attributes that uniquely identifies each row in a relation.

30
New cards

Composite key

A primary key that consists of more than one attribute.

31
New cards

Foreign key

An attribute in a relation that serves as the primary key of another relation in the same database.

32
New cards

Null

A value that may be assigned to an attribute when no other value applies or when the applicable value is unknown.

33
New cards

Entity integrity rule

A rule that states that no primary key attribute (or component of a primary key attribute) may be null.

34
New cards

Referential integrity constraint

A rule that states that either each foreign key value must match a primary key value in another relation or the foreign key value must be null.

35
New cards

Well-structured relation

A relation that contains minimal redundancy and allows users to insert, modify, and delete the rows in a table without errors or inconsistencies.

36
New cards

Anomaly

An error or inconsistency that may result when a user attempts to update a table that contains redundant data. The three types of anomalies are insertion, deletion, and modification anomalies.

37
New cards

Recursive foreign key

A foreign key in a relation that references the primary key values of the same relation.

38
New cards

Normalization

The process of decomposing relations with anomalies to produce smaller, well-structured relations.

39
New cards

Normal form

A state of a relation that requires that certain rules regarding relationships between attributes (or functional dependencies) are satisfied.

40
New cards

Functional dependency

A constraint between two attributes in which the value of one attribute is determined by the value of another attribute.

41
New cards

Determinant

The attribute on the left side of the arrow in a functional dependency.

42
New cards

Candidate key

An attribute, or combination of attributes, that uniquely identifies a row in a relation.

43
New cards

First normal form (1NF)

A relation that has a primary key and in which there are no repeating groups.

44
New cards

Second normal form (2NF)

A relation in first normal form in which every nonkey attribute is fully functionally dependent on the primary key.

45
New cards

Partial functional dependency

A functional dependency in which one or more nonkey attributes are functionally dependent on part (but not all) of the primary key.

46
New cards

Third normal form (3NF)

A relation that is in second normal form and has no transitive dependencies.

47
New cards

Transitive dependency

A functional dependency between the primary key and one or more nonkey attributes that are dependent on the primary key via another nonkey attribute.

48
New cards

Synonyms

Two (or more) attributes that have different names but the same meaning.

49
New cards

Alias

An alternative name used for an attribute.

50
New cards

Homonym

An attribute that may have more than one meaning.

51
New cards

Enterprise key

A primary key whose value is unique across all relations.

52
New cards

Data integrity

Mechanisms for implementing business rules that maintain integrity of manipulated data

53
New cards

Domain Constraints

Allowable values for an attribute (includes data types and restrictions on values)

54
New cards

Insertion Anomaly

adding new rows forces user to create duplicate data

55
New cards

Deletion Anomaly

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

56
New cards

Modification Anomaly

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

57
New cards

Surrogate Primary Key

A serial number or other system-assigned primary key for a relation.

58
New cards

Enhanced entity-relationship (EER) model

A model that has resulted from extending the original E-R model with new modeling constructs.

59
New cards

Subtype

A subgrouping of the entities in an entity type that is meaningful to the organization and that shares common attributes or relationships distinct from other subgroupings.

60
New cards

Supertype

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

61
New cards

Attribute inheritance

A property by which subtype entities inherit values of all attributes and instances of all relationships of their supertype.

62
New cards

Generalization

The process of defining a more general entity type from a set of more specialized entity types.

63
New cards

Specialization

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

64
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.

65
New cards

Total specialization rule

A rule that specifies that each entity instance of a supertype must be a member of some subtype in the relationship.

66
New cards

Partial specialization rule

A rule that specifies that an entity instance of a supertype is allowed not to belong to any subtype.

67
New cards

Disjointness constraint

A constraint that addresses whether an instance of a supertype may simultaneously be a member of two (or more) subtypes.

68
New cards

Disjoint rule

A rule that specifies that an instance of a supertype may not simultaneously be a member of two (or more) subtypes.

69
New cards

Overlap rule

A rule that specifies that an instance of a supertype may simultaneously be a member of two (or more) subtypes.

70
New cards

Subtype discriminator

An attribute of a supertype whose values determine the target subtype or subtypes.

71
New cards

Supertype/subtype hierarchy

A hierarchical arrangement of supertypes and subtypes in which each subtype has only one supertype.

72
New cards

Entity cluster

A set of one or more entity types and associated relationships grouped into a single abstract entity type.

73
New cards

Universal data model

A generic or template data model that can be reused as a starting point for a data modeling project.

74
New cards

business rule

A statement that defines or constrains some aspect of the business. It is intended to assert business structure or to control or influence the behavior of the business.

75
New cards

Term

A word or phrase that has a specific meaning for the business.

76
New cards

Fact

An association between two or more terms.

77
New cards

Entity type

A collection of entities that share common properties or characteristics.

78
New cards

Entity instance

A single occurrence of an entity type.

79
New cards

Strong entity type

An entity that exists independently of other entity types.

80
New cards

Weak entity type

An entity type whose existence depends on some other entity type.

81
New cards

Identifying owner

The entity type on which the weak entity type depends.

82
New cards

Identifying relationship

The relationship between a weak entity type and its owner.

83
New cards

Attribute

A property or characteristic of an entity or relationship type that is of interest to the organization.

84
New cards

Required attribute

An attribute that must have a value for every entity (or relationship) instance with which it is associated.

85
New cards

Optional attribute

An attribute that may not have a value for every entity (or relationship) instance with which it is associated.

86
New cards

Composite attribute

An attribute that has meaningful component parts (attributes).

87
New cards

Simple (or atomic) attribute

An attribute that cannot be broken down into smaller components that are meaningful to the organization.

88
New cards

Multivalued attribute

An attribute that may take on more than one value for a given entity (or relationship) instance.

89
New cards

Derived attribute

An attribute whose values can be calculated from related attribute values.

90
New cards

Identifier

An attribute (or combination of attributes) whose value distinguishes instances of an entity type.

91
New cards

Composite identifier

An identifier that consists of a composite attribute.

92
New cards

Relationship type

A meaningful association between (or among) entity types.

93
New cards

Relationship instance

An association between (or among) entity instances where each relationship instance associates exactly one entity instance from each participating entity type.

94
New cards

Associative entity

An entity type that associates the instances of one or more entity types and contains attributes that are peculiar to the relationship between those entity instances.

95
New cards

Degree

The number of entity types that participate in a relationship.

96
New cards

Unary relationship

A relationship between instances of a single entity type.

97
New cards

Binary relationship

A relationship between the instances of two entity types.

98
New cards

Ternary relationship

A simultaneous relationship among the instances of three entity types.

99
New cards

Cardinality constraint

A rule that specifies the number of instances of one entity that can (or must) be associated with each instance of another entity.

100
New cards

Minimum cardinality

The minimum number of instances of one entity that may be associated with each instance of another entity.