Basic Definitions Flashcards

1
Q

Types of Databases (5)

A
  1. Numeric and Textual Databases
  2. Multimedia Databases
  3. Geographic Information Systems (GIS)
  4. Data Warehouses
  5. Real-time and Active Databases
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Database Definition

A

A collection of related data.

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

Data Definition

A

Known facts that can be recorded and have an implicit

meaning.

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

Mini-world Definition

A

Some part of the real world about which data is
stored in a database. For example, student grades and
transcripts at a university.

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

Database Management System (DBMS) Definition

A

A software package designed to create and manage computerized databases.

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

Database System Definition

A

The DBMS software together with the data itself. Sometimes, the applications are also included.

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

DBMS Functionality (6)

A
  1. Define a database: in terms of data types, structures and
    constraints
  2. Construct or Load the database on a secondary storage medium
  3. Manipulate the database: querying, generating reports,
    insertions, deletions and modifications to its content
  4. Concurrent Processing and Sharing by a set of users and
    programs – yet, keeping all data valid and consistent
  5. Protection or Security measures to prevent unauthorized access
  6. Visualization of data
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Self-Describing Nature of a Database System (Characteristic of a DB)

A

A DBMS catalog stores the description of the database. The description is called meta-data. This allows the DBMS software to work with different databases.

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

Insulation Between Programs and Data (Characteristic of a DB)

A

Called program-data independence. Allows changing data storage structures and operations without having to change the DBMS access programs.

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

Data Abstraction (Characteristic of a DB)

A

A data model is used to hide storage details and present the users with a conceptual view of the database.

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

Support of Multiple Views of the Data (Characteristic of a DB)

A

Each user may see a different view of the database, which describes only the data of interest to that user.

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

Sharing of Data and Multi-user Transaction Processing (Characteristic of a DB)

A

Allowing a set of concurrent users to retrieve and to update the database. Concurrency control within the DBMS guarantees that each transaction is correctly executed or completely aborted. OLTP (Online Transaction Processing) is a major part of database applications.

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

Database Users (3)

A
  • Database Administrators: responsible for authorizing access to the database, for co-ordinating and monitoring its use, acquiring software, and hardware resources, controlling its use and monitoring efficiency of operations.
  • Database Designers: responsible to define the content, the structure, the constraints, and functions or transactions against the database. They must communicate with the endusers and understand their needs.
  • End-Users: they use the data for queries, reports and some of them actually update the database content.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Categories of End Users (4)

A
  1. Casual: Access database occasionally when needed
  2. Naïve or Parametric: They make up a large section of the enduser population. They use previously well-defined functions in the form of “canned transactions” against the database. Examples are bank-tellers or reservation clerks who do this activity for an entire shift of operations.
  3. Sophisticated: These include business analysts, scientists, engineers, others thoroughly familiar with the system capabilities. Many use tools in the form of software packages that work closely with the stored database.
  4. Stand-alone: Mostly maintain personal databases using ready-to use packaged applications. An example is a tax program user that creates his or her own internal database.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Advantages to using the Database approach (3)

A
  1. Sharing data among multiple users.
  2. Restricting unauthorized access to data.
  3. Controlling redundancy in data storage and in development and maintenance efforts.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Main inhibitors (cost) of using a DBMS (2)

A
  1. High initial investment and possible need for additional hardware.
  2. Overhead for providing generality, security, concurrency control, recovery, and integrity functions.
17
Q

When a DBMS may be unnecessary (3)

A
  1. If the database and applications are simple, well defined, and not expected to change.
  2. If there are stringent real-time requirements that may not be met because of DBMS overhead.
  3. If access to data by multiple users is not required.