Midterm Flashcards
A meaningful category of information, such as FirstName or HireDate, is called a
Field
Two different actions that cause Access to automatically save changes you’ve made to the current record
- Moving to another record
2. Closing the table/form
On an access datasheet, which symbol indicates a dirty record?
Pencil
To connect records from one table to records in another table, you must use this type of field
Common field
Acceptable answer:
Primary - Foreign Key
A table’s ___ uniquely identifies each record in the table
Primary Key
What 4 database objects are created in Module 1?
Tables, queries, forms, and reports
Which Access object is used to view and edit data on the screen in a customized layout?
Form
Data organized as a collection of tables created this type of data system?
Relational Database Management System (RDBMS)
The specific content of a field is referred to as the
Field Value
A field used to connect one table logically with another table is called a
Common field
Which data type would be the best logical data type for a field named PaidDate
Date/Time
A table can be created in which two views
Datasheet and design view
To begin importing data from an Excel Spreadsheet, click on the ___ tab on the ribbon
External Data
Which symbols would be used to create a custom date format that would display July 4, 2016 as 7/04/16?
m/dd/yy
The ___ data type only allows a field length of 1 character and is used to indicate the presence or absence of a condition
Yes/No
Before creating a relationship between a primary key in one table and a foreign key in a related table, what two things must be true regarding those fields, so the relationship can be established?
Both fields must be the same data type and the same size
The default character length for the Short Text data type is
255 characters
The ___ property allows the database designer to explain the purpse of a field or how a field is used
Description
What are some examples of comparison operators?
=, <>, , >=, Between…And, In, and Like
InvoiceMessage: IIF([InvoiceAmt] >= 100, “large invoice”, “small invoice”
If the value in InvoiceAmt is $99, what will be displayed in the InvoiceMessage field?
small invoice
Selection criteria that are placed in different rows in the query design grid indicate an ___operator
Or
What is wrong with the following concatenated column?
PatientName FirstName, Lastname
- There needs to be a colon (:) between PatientName and FirstName
- There needs to be an ampersands (&) between FirstName and LastName
- There should be two double quotations and a space between the ampersands.
It should look like this:
PatientName: FirstName & “ “ & Lastname
The sort priority for a query is
Leftmost sort first
The process of adding, modifying, and delteing records in a database to keep the records current and accurate is referred to as _______ a database
Maintaining