Download a PDF of this page here.
Download the Spanish version here.
Essential Concepts
Database Basics
Working with Datasheets
Adding new records in Datasheet View involves entering data into the blank row at the bottom of the datasheet. Access automatically saves the new record and assigns it a unique identifier if an AutoNumber field is used. This process is essential for populating your database with information.
To delete a record in Datasheet View, select the row by clicking its record selector, then right-click and choose “Delete Record.” This action permanently removes the record from the database, so use it with caution.
Sorting and Filtering Data
Datasheet View allows you to display and interact with records in a tabular format. You can navigate, sort, and filter records to focus on specific data, making it easier to manage large datasets.
- Sorting Data: Sorting data in Datasheet View helps you organize records based on specific fields, either in ascending or descending order. This is useful for quickly finding information or analyzing trends.
- Aggregating Data: Aggregate functions, like SUM, AVG, and COUNT, allow you to perform calculations on data sets, summarizing important metrics. Add a total row to the bottom of your datasheet, then choose the aggregate function for the desired field
- Printing Records: To print records, select the datasheet or report, adjust print settings, and output the data to a printer or PDF. This feature is essential for creating hard copies or sharing data outside Access.
Glossary
access privilege
permissions granted to users to view or modify database data.
aggregate
functions that perform calculations on a set of values, such as sum or count.
concurrency control strategies
methods to manage simultaneous data access to prevent conflicts.
data independence
the ability to change the database schema without altering application programs.
data redundancy
unnecessary duplication of data within a database.
database
a structured collection of data stored and accessed electronically.
database constraints
rules that ensure data integrity, such as primary keys or unique constraints.
DBMS (Database Management System)
software that manages and controls access to the database.
datasheet
a grid format in Access where data is displayed, similar to a spreadsheet.
flat file
a database that contains a single table with no relations to other tables.
integration
combining data from different sources into a single, unified database.
many-to-many
a relationship where multiple records in one table relate to multiple records in another table, typically managed with a junction table.
metadata
data that describes other data, such as the structure and constraints of a database.
normalized data
data organized into multiple related tables to reduce redundancy.
one-to-many
a relationship where one record in a table relates to multiple records in another table.
one-to-one
a relationship where one record in a table relates to exactly one record in another table.
read-only privilege
permissions that allow a user to view but not modify data in a database.
record
a complete set of related data fields, representing a single entity in a table.
self-describing
a characteristic of a database that includes metadata, making it self-explanatory to the system or users.