• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/33

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

33 Cards in this Set

  • Front
  • Back

What is the standard language used to access and manipulate data in relational database management systems (RDBMS)?




2

SQL



What is the acronym for Structured Query Language?




2

SQL

The relational database concept was first developed by




2

E. Codd at IBM Research in a classic paper in 1970.

Who was the first to market relational database incorporating SQL?





2

Oracle

What happened in 1986 for SQL





2

American National Standards Institute (ANSI) approved a standard for the SQL relational query language.

How many standard SQL updates have been released since 1986





2

4 in '89, '92, '99, '03

Which vendors support SQL?





2

Most vendors use SQL; Oracle, IBM, Microsoft

What are the three types of SQL commands?





2

Data Definition Language (DDL)


Data Manipulation Language (DML)


Data Control Language (DCL)

Data Definition Language (DDL)





2

DDL commands are used to define a database, such as creating, altering, and dropping tables and establishing constraints.

Data Manipulation Language (DML)





2

DML commands are used to maintain and query a database, such as updating, inserting, modifying and querying the data in a database. DML commands are the core commands of SQL.

Data Control Language (DCL)





2

DCL commands are used to control a database, such as granting or revoking privileges to access the database or objects, storing or removing transactions that would affect the database.

Which two of the SQL command types will we use in this class?





2

DDL and DML

Which SQL command type are the core commands?





2

DML

What was SQL's first name?





2

System R then sequel then SQL

What type of SQL commands do creating, altering, and dropping?





2

Data Definition Language (DDL)

What type of SQL commands do updating, inserting, modifying, and querying data?





2

Data Manipulation Language (DML)

Data Integrity





1

Data that is accurate, up-to-date, and protected against unauthorized access.

Data Accessibility





1

Data is readily available only to people with permission who have a need to see and use the data.

Two types of data found in businesses





1

Structured and Unstructured

Structured Data






1

Data that can be put into a Relational Database.



More specifically it is data found in a table like what we have been using in class (RDBMS) with Rows/Record and Columns/Fields. Fields contain specific types of data and Records identify specific individual entities. Information can be accessed rapidly by going to the correct row and column.

Unstructured Data






1

Data that cannot be put into a relational database such as documents like letters, memorandums, and reports.

Document Management Systems





1

*improve the storage, maintenance, and management of documents.



*control access to documents



*Keep track of document versions



*find documents using keywords



*supports collaborative work on documents



*controls dissemination of documents



Example: SharePoint

Relational Database Concept






1

Data is organized into one or more two dimensional tables in which each table contains the data relating to a specific type of entity.

Entity






1

a noun that has an independent, separate, or self-contained existence.



Example: A student, an employee, a room, a computer, a class, etc.



I think of entities as tables, but that is probably not exactly correct.

Attributes






1

a characteristic of an entity



Example: first name, last name, email address, shoe size, major, minor, employee id, etc.

Three Step process to create a database






1

1. Identify the entities needed


2. Identify the attributes needed for each entity


3. Identify the relationships that exist among the entities.

One-to-many relationship






1

Example: a building has many rooms but there is only one building

Parent- Child relationship





1

When the identification of one entity relies on the identification of another entity



Example: Room entity depends on the building entity. You cannot say where the room is without identifying the building.

Data





1

*Facts concerning objects and events that could be recorded and stored on computer media.



Example: student name, address, telephone number

Information





1

* Data that has been processed in such a way that the knowledge of the person who uses the data is increased.



* Data that has meaning

Metadata





1

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



Example: Properties - data name, definitions, length, allowable values, ect. Context - data source, where the data are stored, ownership, usage, ect.

Database






1

an organized collection of logically related data usually found in tables.

Relational Database






1

a database where the data is organized into one or more two dimensional tables in which each table contains the data relating to a specific type of entity.