Understanding Data, Information, and Databases

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 55

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

56 Terms

1

Data

Data consists of raw facts.

New cards
2

Raw Data

The word raw indicates that the facts have not yet been processed to reveal their meaning.

New cards
3

Information

Information is the result of processing raw data to reveal its meaning.

New cards
4

Information

Information can be used as the foundation for decision making.

New cards
5

FILE

A collection of related records.

New cards
6

Data Processing

Data processing can be as simple as organizing data to reveal patterns or as complex as making forecasts or drawing inferences using statistical modeling.

New cards
7

Context

To reveal meaning, information requires context.

New cards
8

Knowledge

Knowledge implies familiarity, awareness, and understanding of information as it applies to an environment.

New cards
9

Database

A database is a shared, integrated computer structure that stores a collection of data and metadata.

New cards
10

End-user Data

End-user data or data—that is, raw facts of interest to the end user.

New cards
11

Metadata

The metadata describes the data characteristics and the set of relationships that links the data found within the database.

New cards
12

Database Design

It refers to the activities that focus on the design of the database structure that will be used to store and manage end-user data.

New cards
13

DATA

Raw facts, such as a telephone number, a birth date, a customer name, and a year-to-date (ytd) sales value.

New cards
14

FIELD

A character or group of characters (alphabetic or numeric) that has a specific meaning.

New cards
15

RECORD

A logically connected set of one or more fields that describes a person, place, or thing.

New cards
16

Business Rules

A business rule is a brief, precise, and unambiguous description of a policy, procedure, or principle within a specific organization.

New cards
17

Business Rules

Business rules set the stage for the proper identification of entities, attributes, relationships, and constraints.

New cards
18

Relational Database

A table is perceived as a two-dimensional structure composed of rows and columns.

New cards
19

Relational Database

Each table row (tuple) represents a single entity occurrence within the entity set.

New cards
20

Relational Database

Each table column represents an attribute, and each column has a distinct name.

New cards
21

Relational Database

Each intersection of a row and column represents a single data value.

New cards
22

Relational Database

All values in a column must conform to the same data format.

New cards
23

Relational Database

Each column has a specific range of values known as the attribute domain.

New cards
24

Relational Database

The order of the rows and columns is immaterial to the DBMS.

New cards
25

Relational Database

Each table must have an attribute or combination of attributes that uniquely identifies each row.

New cards
26

Keys or Superkeys

In the relational model, keys are important because they are used to ensure that each row in a table is uniquely identifiable.

New cards
27

Key

A key consists of one or more attributes that determine other attributes.

New cards
28

Composite Key

A composite key is a key that is composed of more than one attribute.

New cards
29

Candidate Key

A candidate key is a minimal superkey—that is, a superkey without any unnecessary attributes.

New cards
30

Primary Key (PK)

The primary key (PK) is the candidate key chosen to be the primary means by which the rows of the table are uniquely identified.

New cards
31

Entity integrity

is the condition in which each row (entity instance) in the table has its own unique identity.

New cards
32

Foreign key (fK)

is the primary key of one table that has been placed into another table to create a common attribute.

New cards
33

Entity

is an object of interest to the end user.

New cards
34

Attributes

are characteristics of entities.

New cards
35

Required attribute

is an attribute that must have a value; in other words, it cannot be left empty.

New cards
36

Optional attribute

is an attribute that does not require a value; therefore, it can be left empty.

New cards
37

Composite attribute

is an attribute that can be further subdivided to yield additional attributes.

New cards
38

Simple attribute

is an attribute that cannot be subdivided.

New cards
39

Single-Valued Attributes

is an attribute that can have only a single value.

New cards
40

Multivalued Attributes

are attributes that can have many values.

New cards
41

Derived Attributes

need not be physically stored within the database; instead, it can be derived by using an algorithm.

New cards
42

Cardinality

expresses the minimum and maximum number of entity occurrences associated with one occurrence of the related entity.

New cards
43

SQL

is a database language that allows you to create database and table structures, perform basic data management chores (add, delete, and modify), and perform complex queries designed to transform the raw data into useful information.

New cards
44

Data Manipulation Language (DML)

includes commands to insert, update, delete, and retrieve data within the database tables.

New cards
45

Data Definition Language (DDL)

includes commands to create database objects such as tables, indexes, and views, as well as commands to define access rights to those database objects.

New cards
46

Transaction Control Language (TCL)

is a logical unit of work composed of one or more SQL statements, as defined by business rules.

New cards
47

Data Control Language (DCL)

is used to control access to data objects, such as giving a user permission to only view the PRODUCT table, and giving another user permission to change the data in the PRODUCT table.

New cards
48

Character data

is composed of any printable characters such as alphabetic values, digits, punctuation, and special characters.

New cards
49

Numeric data

is composed of digits, such that the data has a specific numeric value.

New cards
50

Date data

is composed of date and, occasionally, time values.

New cards
51

SELECT

specifies the attributes to be returned by the query.

New cards
52

FROM

specifies the table(s) from which the data will be retrieved.

New cards
53

WHERE

filters the rows of data based on provided criteria.

New cards
54

GROUP BY

groups the rows of data into collections based on sharing the same values in one or more attributes.

New cards
55

HAVING

filters the groups formed in the GROUP BY clause based on provided criteria.

New cards
56

ORDER BY

sorts the final query result rows in ascending or descending order based on the values of one or more attributes.

New cards
robot