Ch 1 Flashcards

1
Q

Data vs information

A

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

Data are the foundation of information, which is the bedrock of knowledge, i.e., the body of information and facts about a specific object.

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

Data management

A

Data management is a discipline that focuses on the proper generation, storage and retrieval of data.

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

Database

A

A database is a shared, integrated computer structure that stores a collection of the following:

  1. End-user data, i.e. raw facts of interest to the end user.
  2. Metadata, or data about data, through which the end-user data are integrated and managed.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Database management system (DBMS)

A

A database management system (DBMS) is a collection of programs that manages the database structure and controls access to the data stored in the database.

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

Advantages of the DBMS

A

Improved data sharing, improved data security, better data integration, minimized data inconsistency, improved data access, improved decision making, increased end-user productivity

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

Data inconsistency

A

Data inconsistency exists when different versions of the same data appear in different places.

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

Query & ad hoc query

A

A query is a specific request issued to the DBMS for data manipulation, e.g. to read or update the data. Simply put, a query is a question.

An ad hoc query is a spur-of-the moment question

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

Data quality

A

Data quality is a comprehensive approach to promoting the accuracy, validity and timeliness of the data. While the DMS does not guarantee data quality, it provides a framework to facilitate data quality initiatives.

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

Single-user database

A

A single-user database supports only one user at a time.

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

Desktop database

A

A single-user database that runs on a personal computer is called a desktop database.

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

Multiuser database

A

A multiuser database supports multiple users at the same time.

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

Workgroup database

A

When a multiuser database supports a relatively small number of users (usually less than 50), or a specific department within an organization, it is called a workgroup database.

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

Enterprise database

A

When a multiuser database is used by the entire organization and supports many users (more than 50, usually hundreds) across many departments, the database is known as an enterprise database.

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

Centralized database

A

A database that supports data located at a single site is called a centralized database.

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

Distributed database

A

A database that supports data distributed across several different sites is called a distributed database.

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

Cloud database

A

A cloud database is a database that is created and maintained using cloud data services, such as Microsoft Azure or Amazon’s AWS.

17
Q

General-purpose databases

A

General-purpose databases contain a wide variety of data used in multiple disciplines, e.g. a census database that contains general demographic data.

18
Q

Operational database / Online Transaction Processing (OLTP) database

A

A database that is designed to primarily support a company’s day-to-day operations is classified as an operational database, also known as an online transaction processing (OLTP), transactional, or production database.

19
Q

Analytical database

A

An analytical database focuses primarily on storing historical data and business metrics used exclusively for tactical or strategic decision making. Typically, analytical databases comprise two main components: a data warehouse and an online analytical processing (OLAP) front end.

20
Q

Data warehouse

A

The data warehouse is a specialized database that stores data in a format optimized for decision support.

21
Q

Online analytical processing (OLAP)

A

Online analytical processing (OLAP) is a set of tools that work together to provide an advanced data analysis environment for retrieving, processing and modeling data from the data warehouse.

22
Q

Business intelligence

A

The term business intelligence describes a comprehensive approach to capture and process business data with the purpose of generating information to support business decision making.

23
Q

Unstructured data

A

Unstructured data are data that exist in their original (raw) state, i.e. in the format in which they were collected.

24
Q

Structured data

A

Structured data are the result of formatting unstructured data to facilitate storage, use and the generation of information.

25
Q

Semistructured data

A

Semistructured data have been processed to some extent.

26
Q

Extensible Markup Language (XML)

A

Extensible Markup Language (XML) is a special language used to represent and manipulate data elements in a textual format. An XML database supports the storage and management of semistructured XML data.

27
Q

NoSQL

A

The term NoSQL (Not only SQL) is generally used to describe a new generation of database management systems that is not based on the traditional relational database model. NoSQL databases are designed to handle the unprecedented volume of data, variety of data types and structures, and velocity of data operations that are characteristic of these new business requirements.

28
Q

Database design

A

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

29
Q

Problems with file system data processing

A

Lengthy development times, difficulty of getting quick answers, complex system administration, lack of security and limited data sharing, extensive programming

30
Q

Structural dependence

A

A file system exhibits structural dependence, which means that access to a file is dependent on its structure.

31
Q

Structural independence

A

Structural independence exists when you can change the file structure without affecting the application’s ability to access the data.

32
Q

Data redundancy

A

Data redundancy exists when the same data are stored unnecessarily at different places.

33
Q

Uncontrolled data redundancy set the stage for the following?

A

Poor data security, data inconsistency, data anomalies

34
Q

Data integrity

A

Data integrity is defined as the condition in which all of the data in the database are consistent with the real-world events and conditions. In other words, data integrity means that: data are accurate - there are no data inconsistencies and, data are verifiable - the data will always yield consistent results.

35
Q

Data anomaly

A

A data anomaly develops when not all of the required changes in the redundant data are made successfully.

36
Q

Database system

A

The term database system refers to an organization of components that define and regulate the collection, storage, management, and use of data within a database environment. The database system is composed of five major parts: hardware, software, people, procedures and data.

37
Q

Query language

A

A query language is a nonprocedural language - one that lets the user specify what must be done without having to specify how. Structured Query Language (SQL) is the de facto query language and data access standard supported by the majority of DBMS vendors.