Vocab. Ch. 1-3 Flashcards
Redundancy
The duplication of data or the storing of the same data in more than one place.
database
A structure that contains information about many different categories of information and about the relationships between those categories.
entity
A person, place, object, event, ore idea for which you want to store and process data.
attribute
A characteristic or property of an entity.
relationship
An association between relationships.
one-to-many relationship
One entity is associated with many other entities.
data file
A file that is used to store data.
database
A structure that can store information about multiple types of entities, the attributes of those entities, and the relationship between the entities.
entity-relationship (E-R) diagram
In and E-R diagram, rectangles represent entities, and lines represent relationships between connected entities. The dot at the end of a line represents the “many” part of a one-to-many relationship.
database management system (DBMS)
A program, or a collection of programs, through which users interact with a database.
database design
The process of determining the structure of a database.
forms
Screen objects used to maintain, view, and print data from a database.
9 Advantages of Database Processing
1) Getting more info from the same amount of data
2) Sharing data
3) Balancing conflicting requirements
4) Controlling Redundancy
5) Facilitating consistency
6) Improving integrity
7) Expanding security
8) Increasing productivity
9) Providing data independence
database administrator
Also known as Database Administration (DBA) -
A person or group that keeps the overall needs of the entire organization in mind so that the database can be structured in such a way that it benefits the entire organization, not just a single group and there by balances conflicting requirements.
integrity constraint
A rule that data must follow in the database.
integrity
Maintained by the database because all data in it must satisfy all established integrity constraints.
security
The prevention of unauthorized access to the database.
data independence
A property of a DBMS that lets you change the structure of a database without requiring you to change the programs that access the database.
4 Disadvantages of Database Processing
1) Larger file size
2) Increased complexity
3) Greater impact of failure
4) More difficult recovery
field
A single characteristic or attribute of a person, place, object, event, or idea.
table
A collection of fields that describes a person, place, object, event, or idea.
field value
The specific content of a field
record
A set of field values for a specific entity.
relational database
A collection of related tables.
common field
A field that appears on both tables that provides the connection between the tables.
template
A predesigned database that includes professionally designed tables, reports, and other database objects that can make it quick and easy for you to create a database.
data type
Determines what field values you can enter for the fields. The data types for Access are: 1) AutoNumber 2) Short Text 3) Long Text 4) Number 5) Date/Time 6) Currency 7) Yes/No 8) Hyperlink
data type - AutoNumber
Automatically a unique number in this field for every record, beginning with number 1 for the first record, the number 2 for the second record, and so on.
data type - Short Text
Allows field values containing letters, digits, and other characters, and which is appropriate for identifying numbers, such as visit numbers, that are never used for calculations.
composite key
When two or more fields function as the primary key.
foreign key
When you include the primary key from on table as a field in a second table to form a relationship.
property of a field
1) field’s name
2) data type
3) maximum number of characteristics or digits
4) description
5) valid values
6) other
caption property
Specifies how the field name is displayed in database objects, including table and query datasheets, forms, and reports.
default value property
Specifies what value will appear, by default, for the field in each new record you add to a table.
delimited text file
A file in which fields of data are separated by a character such as a comma or a tab.
referential integrity
A set of rules that Access enforces to maintain consistency between related tables when you update data in a database.
Cascade Update Related Fields option
Access permits the change in value to the primary key and changes the appropriate foreign key values in the related table, thereby eliminating the possibility of inconsistent data.
Cascade Delete Related Records option
Access deletes the record in the primary table and also deletes all records in related tables that have matching foreign key values. (Use with caution!)
relation
A two-dimensional table in which:
1) The entries in the table are single-valued. Each location contains only one value
2) Each column has a distinct name (attribute name)
3) All values in a column are values of the same attribute (all entries must match that column name)
4) The order of columns is immaterial
5) Each row is distinct
6) The order of rows is immaterial
rows (in a table (relation))
Often called records or tuples
columns (in a table (relation))
Often called fields or attributes
qualify the column names
When you combine a column name with a table name (Ex: Rep.RepNum)
query
A question represented in a way that the DBMS can recognize and process.
Query-By-Example
(QBE) - An approach to writing queries that is very visual. Users ask their questions by entering column names and other criteria using an on-screen grid, and data appears on the screen in tabular form.
criteria
Conditions that data must satisfy.
criterion
A single condition that data must satisfy.