Lesson 1 Flashcards

(45 cards)

1
Q

An effective information system provides users with accurate, timely, and relevant information.

A

Database

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

Data that have been processed into a form that is meaningful and useful to human beings.

A

Information

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

A collection of raw items such as words, numbers, images, and sounds that have not organized and arranged into a form that people can understand and use.

A

Data

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

A collection of related data organized in a manner that allows access, retrieval, use, and maintenance of that data.

A

Database

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

It allows you to create a computerized database; add, change, delete, and sort data; retrieve data from the database; and create forms and reports using the data.

A

Database Management System (DBMS)

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

A database, a DBMS, and the application programs that utilize the data in the database make up a _______________.

A

Database Environment

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

Benefits of Database

A
  • Data Independence
  • Data Consistency
  • Controlled Redundancy
  • Data Integrity
  • Data Security
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Low systems/programs maintenance

A

Data Independence

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

Due to the fact that each data item is held only once, there is no danger of an item being updated on one system and not on the other

A

Data Consistency

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

This means reducing to a minimum the number of data items, which are duplicated in a database.

A

Controlled Redundancy

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

The DBMS provides users with the ability to specify constraints on data such as making a field entry essential or using a validation routine

A

Data Integrity

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

The DBMS can ensure only authorized users are allowed access to the data.

A

Data Security

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

The principles of the relational model were first outlined by __________ in a June 1970 paper called A Relational Model of Data for Large Shared Data Banks

A

Dr. E. F. Codd

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

Stores all its data inside tables, and nothing more

A

Relational Database

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

It is very popular because of their ease of use and flexible structure

A

Relational Database Management Systems (RDBMS)

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

Components of the Relational Model

A

• Collections of objects or relations that store the data
• A set of operators that can act on the relations to produce other relations
• Data integrity for accuracy and consistency

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

A ____________ uses relations or two-dimensional tables to store information. _____________ are organized by fields, records, and tables.

A

Relational Database

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

It can be found at the intersection of a row and a column. There can be only one value in it

A

Field

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

The data or information for the database is stored in these _______. ________ are uniquely identified by their names and are comprised of columns and rows.

20
Q

In relational database, table is also known as __________.

21
Q

A single ________ or tuple representing all data required for a particular object.

22
Q

A _________ or attribute contains one particular type of information about all the rows in the table. A _________ cannot, or should not, include one type of information for one row and another type for another row.

23
Q

A single field or combination of fields that uniquely defines a record. None of the fields that are part of the __________ can contain a null value. A table can have only one.

24
Q

A field in a relational table that matches the primary key column of another table. It can be used to cross-reference tables.

25
A field may have no value in it. This is called a ___________.
Null Value
26
SQL stands for
Structured Query Language
27
Is used to interact with your database's data.
SQL
28
ANSI
American National Standards Institute
29
SQL Commands
- Select - Insert - Update - Delete - Create - Drop
30
Use for text or combinations of text and numbers, such as addresses, or for numbers that do not require calculations, such as phone numbers, part numbers, or postal codes.
Text
31
Stores up to 255 characters
Text
32
Use for lengthy text and numbers, such as notes or descriptions.
Memo
33
Stores up to 63,999 characters.
Memo
34
Use for data to be included in mathematical calculations, except calculations involving money
Numbers
35
Stores 1, 2, 4, or 8 bytes; stores 16 bytes for Replication ID (GUID).
Numbers
36
Use for dates and times also stores 8 bytes
Date/Time
37
Use for currency values and to prevent rounding off during calculations and stores 8 bytes
Currency
38
Use for unique sequential (incrementing by 1) or random numbers that are automatically inserted when a record is added.
AutoNumber
39
Stores 4 bytes; stores 16 bytes for Replication ID (GUID).
AutoNumber
40
Use for data that can be only one of two possible values, such as Yes/No, True/False, On/Off. Null values are not allowed.
Yes/No
41
Stores 1 bit.
Yes/No
42
Use for OLE objects (such as Microsoft Word documents, Microsoft Excel spreadsheets, pictures, sounds, or other binary data) that were created in other programs using the OLE (OLE: A program-integration technology that you can use to share information between programs. All Office programs support OLE, so you can share information through linked and embedded objects.)
OLE Object
43
Stores up to 1 gigabyte (limited by disk space)
OLE Object
44
Use for hyperlinks and stores up to 2048 characters.
Hyperlink
45
SQL Statement Category and Statement
1. Data Retrieval Language (DRL) - SELECT 2. Data Manipulation Language (DML) - INSERT - DELETE - UPDATE 3. Data Definition Language (DDL) - CREATE - ALTER - DROP - RENAME - TRUNCATE 4. Transaction Control (TC) - COMMIT - ROLLBACK - SAVEPOINT 5. Data Control Language (DCL) - GRANT - REVOKE