Access Database Design
|
|
|
- Esmond Stevens
- 10 years ago
- Views:
Transcription
1 Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk (304) Last revised: June 26, 2008 Copyright 2008 West Virginia University
2 Table of Contents Course Description... 2 Understanding Databases... 3 Data Organization... 3 Table Design... 4 Keys and Relationships... 6 Primary and Foreign Keys... 6 Defining Relationships... 7 Types of Relationships... 7 Database Design Process... 9 Common Design Problems: Creating a New Database Creating a Database from a Template Creating a Blank Database Creating Tables Data Entry Table Templates Table Design Table Design View Input Mask Validation Rule and Text Required Data Primary Key Creating Relationships Relationship Pane Referential Integrity Activity 1: Designing an Access table Populating the Database Importing data from an Excel spreadsheet Notes on Importing Notes on Linking Should you Import or Link a foreign file? Activity 2: Importing an Access table Activity 3: Link to a table in another database ii
3 Course Description This is the second in a series of workshops about Microsoft Access It deals specifically with database design and maintenance. The purpose of this installment is to expose you to the considerations involved in designing your databases and to introduce you to the various options that Access provides for importing and exporting data as well as the utilities provided for maintaining your databases. Our goal is to assist you to learn the software, understand some basic concepts, and show you some tips and techniques so you can develop your database management/programming skills over time. The six classes in the Access workshop series are: Introduction to Access Access Queries Access Form Design Access Reports Access Macros and Database Utilities Thank you, The OIT Technical Support Services Trainers West Virginia University 2
4 Understanding Databases A database management system (DBMS) is a computer application or program that is used to store, manage, and retrieve data in computer files. It is generally associated with large volumes of data or with files where selective retrieval is desired. Microsoft Access is one example of a DBMS. While using Access is more complicated than using other components of Microsoft Office, such as Word, Excel, or PowerPoint, Access is nonetheless a relatively low-end DBMS. For larger databases requiring greater security and widely shared access, the University uses the Oracle or MySQL DBMS. Data Organization There is a hierarchy of components which constitute the collection of data maintained by any DBMS: Database Record Field Value A database is the entire file or collection of files maintained as a unit by the DBMS. The University, like most large organizations, has several databases used to manage its operations: a human resources database of all employees, an inventory database of the organization s physical assets, a financial database of receipts and expenditures, and a student database containing information about students and the courses they take, among others. Individual departments may have their own databases for different purposes, just as individual faculty may have databases for information such as bibliographies of useful works in the faculty member s field or data collected during an experiment. The database is composed of records, which are structured collections of closely related data. The nature of the relationship among the data in a record will depend on the purpose of the database. In a human resources database, each record will contain information about one employee. In a bibliographic database, a record would correspond to a book, journal article, or other written work. The structure of a record is determined by the set of fields from which it is composed. Each field is a place where data with a particular meaning is kept. A human resources database record would include fields for name, address, social security number, date of employment, salary, and other information. A bibliographic database record would include fields for a work s title, authors, publisher, date of publication, and other information. The content of each field in a record is its value the specific text, number, date, or other information stored in that field of that record. There are different types of databases, but we will be looking only at relational databases, since that is the type of database managed by Access. In a relational database, there is an additional level in the hierarchy of data organization: 3
5 Database Table Record Field Value The records of the database are organized into tables, each of which expresses a particular relation among the data (hence the name relational database). In our example of the human resources database, there might be a table for each employee and another for each department in the organization: Employee_Name Employee_SSN Employee_Dept Employee_HireDate Smith Accounting 11/12/1989 Jones English 3/15/1992 Brown Math 12/2/1997 Cooper English 5/5/1994 Department_Name Department_Location Department_Authorized_FTE Accounting 123 Penny Lane 6 English 456 Chaucer Ct. 8 Math 789 Plane St. 4 Table Design An important part of designing a relational database, including Access databases, is determining what tables will be used to organize the data. Consider the simple case of a class list and suppose that we wish to keep track of the class s name, number, and department; the name of the teacher; and the teacher s office number. We could include all of the information in one table, as shown below. Class_Name Class_No Class_Teacher Class_Dept Class_Office Calculus 200 Mr. Brown Mathematics G105 Interior Design 304 Ms Smith Design G103 Algebra 101 Mr. Brown Mathematics G105 Geometry 110 Mr. Jones Mathematics G107 However, if we do so, then repeated department and office information must be entered each time the same teacher is assigned to teach another class. If one bit of information changes (e.g., Mr. Brown moves from G105 to G110) then every occurrence of data containing Mr. Brown's information must be located and updated to avoid data inconsistency. A different problem arises if Mr. Brown takes a term off for any reason and so does not teach a class. We would either have to retain a record with Mr. Brown s office and department information but with no values in the class name and 4
6 number fields (a so-called insertion anomaly), or we would have to remove Mr. Brown from the database altogether (a deletion anomaly). Instead, we use two tables to represent the data, one with the minimal information needed regarding the class and a second table with information about the teachers that applies regardless of the classes they are teaching. Class_Name Class_No Class_Teacher Calculus 200 Mr. Brown Interior Design 304 Ms Smith Algebra 101 Mr. Brown Geometry 110 Mr. Jones Class_Teacher Class_Dept Class_Office Ms Smith Design G103 Mr. Brown Mathematics G105 Mr. Jones Mathematics G107 Example 1 The common field, Class_Teacher, would be used to connect the tables, thus allowing the relation expressed in the one-table design to be recovered from the pair of tables. Some care must be exercised in decomposing larger tables into smaller ones. For example, suppose that our original table were split up differently, like this: Class_Name Class_No Class_Dept Calculus 200 Mathematics Interior Design 304 Design Algebra 101 Mathematics Geometry 110 Mathematics Class_Dept Class_Teacher Class_Office Design Ms Smith G103 Mathematics Mr. Brown G105 Mathematics Mr. Jones G107 Example 2 While this decomposition also avoids the redundancy present in the single table, it gives us no way to determine which individual is teaching each Mathematics class, even though we have the Class_Dept field in common to connect the tables to one another. 5
7 We can list now some of the undesirable characteristics that we wish to avoid in designing a relational database: 1. Redundancy. Avoid repeating values unnecessarily. It wastes disk space and slows processing while introducing the possibility of inconsistency in the database if not all occurrences of a value are changed at the same time. 2. Insertion and deletion anomalies. Objects whose existences are independent outside the database should be represented independently inside the database. In our example, teachers are represented in a table separate from classes since there can be teachers who are employed but not currently teaching a class. Likewise, there can be classes in the course catalogue that are not offered every term and thus would not have a teacher during some terms. 3. Loss of information. We should be able to recover from the database any relation that exists among the objects modeled by the database. If a specific teacher teaches a specific class, then that relationship should be evident in the database. Keys and Relationships Primary and Foreign Keys For the sake of rapid, unambiguous retrieval of data, each table should include one or more fields that are used to identify uniquely each record stored in the table. This field or combination of fields is called the primary key of the table. The contents of the primary key: Cannot be duplicated within the table. Cannot be null. May consist of more than one field. The primary key is used frequently so its name should not be very long or hard to remember. Additionally, the size of the key's value affects the speed of database operations. When a table s data are stored on a computer disk, the DBMS creates an index based on the table s key to speed the location and retrieval of that data. The primary key is used to link the table with other tables in the database. When a primary key in one table (known as the source table) is linked to another table (known as the target table), the connecting field in the target table is called the foreign key. A foreign key must have the same structure, data type, and field size as the associated primary key, but it does not have to have the same name. Also, the foreign key in a relationship between two tables need not be a primary key in its own table. In Example 1 above, we could use the teacher's last name as the primary key in the second table. The same field becomes a foreign key in the class table. It could not be a primary key in the class table because: The class table would already have a primary key (probably a combination of class name and number) and a table is restricted to having only one primary key. The entry for Mr. Brown is repeated in multiple records of the class table which violates the first rule of the primary key. 6
8 Thus in a key pair: the foreign key, while it appears identical to the primary key, does not have to adhere to the same rules as the primary key. It can be duplicated and in some cases it can be null. However, it must have the same structure as the primary key. Defining Relationships For example: in a typical classroom environment Students, Teachers, and Classes would be stored in separate tables. Students could be related to classes by transcript entries and grades. Teachers could be related to classes by teaching assignments. Classes could be related to students by enrollment and attendance. To establish a relationship, we link one table's primary key to a foreign key in another table. But, how do you decide which key to place in which table? To answer this question, we must determine the nature of the relationship. Types of Relationships There are four basic types of relationships: One-to-many Many-to-one Many-to-many One-to-one However, the one-to-many relationship is just the many-to-one relationship viewed in the other direction, so we can consider them as one, leaving us with only three that we need to examine. One-to-Many Relationship (1 - ): The one-to-many relationship is the most common type. As an example, one teacher might teach several classes. That is, the teacher would only have one entry in the Teacher table but may have several entries in the Class table, depending upon teaching load. In this relationship, we always link the primary key of the "one" side of the relationship (the source table) to the foreign key on the "many" side (the target table). In our previous example, the primary key of the teacher would be placed into each of the class records for classes that the teacher taught. A search of the class table using the teacher key would produce a list of classes taught by the teacher. Many-to-Many Relationship ( - ): In the many-to-many relationship, many records from one table would be related to many records in another table. For example: many students would attend each class and each student would attend many classes. 7
9 Our first impulse is to design a database that would support this relationship by either: Including the primary key for every class attended by a student in the student record, or Including the primary key for every student attending a class in the class record. This approach is faulty since it would result in: Huge records in a table with each record containing a large number of similar fields. Some records would contain many blank fields. This could be a significant waste of system resources as well as being difficult to implement. Inefficient searching and retrieval since a search would have to examine several fields in each record. Data that is hard to update since you would have to search the length of each record to find the spot to insert the next cross-reference key. To avoid these problems, we create a relationship between the tables that uses a third table as a common target for both of the other tables. This would break down the manyto-many relationship and convert it into two one-to-many relationships. We would then link the primary keys from each of the original tables (both treated as sources) into the foreign keys in the third table (common target). Additionally, data that is common to the relationship between the tables (such as grades or status codes) could also be stored in the target table to avoid duplication. In our example, we might create a class detail table called ATTEND that contains the Class ID and the Student ID for each student attending each class. The new table would have a one-to-many relationship with students and another one-to-many relationship with classes. That is: For each Class ID, there are potentially many records for attendees, and For each Student ID, there are potentially many records for enrolled or completed classes. This new table could also hold data fields that are common to the relationship such as students' grades, attendance records, and their class status. One to One Relationship (1-1): A one-to-one relationship normally indicates a design flaw in the database or a trivial relationship. In most cases, the two tables in question could be combined without any problems. However, if the combined table would have a large amount of empty space, then perhaps they should not be combined for efficiency's sake. The rule therefore, is to strive for the minimum number of data tables without affecting the efficient use of data storage. 8
10 Database Design Process The following procedure is a step-by-step guide to designing and implementing a database. It is, however, only a guide. The exact steps involved in your particular application will be dependent upon the way you organize your data and what you wish to accomplish. Step 1: Determine the purpose of the database. Ask yourself what information you want from the database and determine what data you need to store to provide that information. Consider how the data items (fields) will be grouped together within subjects (tables). Talk to the users of the database. What data items do they currently collect? What reports do they want the system to produce? What questions do they want the database to answer? Step 2: Determine the tables you need. Look at the way data items are grouped together naturally about a specific subject. Examine each item and ask what it is about. Look for ways to avoid storing or updating the same item in two places. Look for ways to eliminate redundant data. Step 3: Determine the fields you need. List the data items that will be stored in each table. Do not attempt to define relationships and pointer fields at this point, simply list them. List the characteristics (or properties) of each item. Examine each item carefully to see if it is really related to the table subject. If not, consider moving it to another table. If another logical table does not exist, reexamine the table structure. Do not include derived or calculated data fields in a table. Make sure you have all of the basic data needed to calculate a value when it is needed. For example, don t store a person s age in a table, since it would need to be updated each year. Instead, store the person s birth date and compute the age when it is needed. Exception: Store a calculated value if it is extremely complex to calculate, requires a large amount of calculation time, and is used frequently. Make sure that you have all of the data you need. Re-examine all the desired input forms and reports to make sure that you are collecting everything you need. Re-think the questions that you will ask of your database. Do you have everything you need to answer them? Store information in its smallest logical parts. For example, put a person s first and last name in different fields so that each can be retrieved separately for sorting or for reports. But put all parts of a street address in the same field unless you have some special need to use the street name separately from the number on that street. 9
11 Step 4: Determine the relationships: Select the primary key fields. Make them unique and easy to remember for retrievals. Keep the field size small to increase speed without distorting data. Set up relationships between tables. Add foreign key fields where necessary. Convert all relationships to one-to-many by adding linking tables where necessary. Step 5: Refine the design: Turn on the computer. It is important that the preceding tasks be accomplished off-line. If you start creating your database without first thinking through the design, you will generally focus more on the way you implement instead of an efficient design. Create the database structure as defined and enter a few data records into each table to test your procedures, data entry forms, and reports. Did you forget any fields? Did you select a good primary key for each table? Are you repeating data frequently as you enter it into a table? Do you have tables with many fields, most of them empty? Step 6: Repeat the design process as necessary to minimize or eliminate questions or problems. Common Design Problems: You have a table with several fields that do not relate to the subject. Redistribute fields into tables defined by subject. You have a large number of records with many blank fields. Break the table into two or more subject-oriented tables. You have the same field repeated in several tables. Try consolidating all of the information relating to a specific subject into a single table. 10
12 Creating a New Database Access provides two principal methods for creating a new database. You can start completely from scratch with a blank database, or you can start with a database template (a number of which are provided by Microsoft) and modify it to meet your specific needs. We will devote most of our time to the first method, but let s briefly consider the second method. Creating a Database from a Template When you start Access, you see the following screen, in part: The icons under the heading Featured Online Templates are among the templates upon which you can base your new database. You can click on one of the icons in order to download the template from Microsoft or select one of the categories listed to the left under From Microsoft Office Online to see a somewhat broader selection of templates in each of the categories. When you select a template from any of these sources, a description of it will appear on the right side of the Access window, including a Download button that you can click to retrieve the template after specifying your own name for the database and choosing the location on your computer where it will be stored. (The software will check that you are using a valid copy of Access before the download proceeds.) An example description appears to the right. 11
13 When the download is complete, the file will open to show you a complete but empty database, including tables, queries, forms, reports, and macros as needed. You can use the database as is by populating the tables with your data, or you can first modify the database design by adding or removing objects, changing field names or their properties, and otherwise tailoring the database template to your specific needs. The methods by which you ll make such changes are just the same ones you ve been hearing about, or will hear about, in this series of workshops. For this workshop, we ll study the creation, population, and modification of tables using a database we build from scratch. Creating a Blank Database Creating a blank database is very simple. Click on the Blank Database icon on the opening screen for Access. In the pane that opens on the right side of the Access window, give the database a name and indicate where you want to store it (by clicking on the folder icon to the right of the name and navigating to your chosen location). Then click on the Create button. The database will open with a single object, a table named Table1, as illustrated below. From the design work that you ve done off-line, you should have a good idea of the tables that you need to create, the fields to be stored in each table, and the relationships between the tables. Now you ll implement that design using the tools provided by Access. For your first table, you can rename and modify Table1 using Design View, or you can discard Table1 and use either of the other methods of creating tables described below. Creating Tables Access provides at least four methods for creating tables. We ll look at the three that you can use without having a SharePoint server available to you. All are initiated from the Create ribbon, a portion of which is shown to the right. 12
14 Data Entry You can create a table in Access simply by entering data into a blank table by typing it in or by copying and pasting from some other source, such as an Excel spreadsheet. Position yourself to do so by clicking on the Table icon at the left end of the Create ribbon. Your initial view of the table will look just like the new blank database shown above. Start in the shaded box under Add New Field and type the value of the first field in the first record of your table. Press the Tab key to move to a new field in the same record. Press Enter to move to the next record. When you first close the table, Access will ask you to name it and will establish other table properties based on the values present there. Field names will be Field1, Field2, and so forth. Once created, the table can be modified in design view. Table Templates The table templates menu on the Create ribbon offers a small collection of pre-defined tables, shown to the right. If there is a table in the list that comes close to meeting your needs, you can select it to create the table and then modify the table in Design View so that it matches your design precisely. Table Design If there is one table creation method with which you must be familiar, it is Table Design, because it provides the means by which you can adjust a table s properties, however the table was originally created. When you click on the Table Design icon in the Create ribbon, you are presented with a worksheet for specifying the fields in the new table. At a minimum, you must supply the name of each field and select the type of data it will hold. You can also provide a description of the field and specify other properties such as input mask and validation. Table Design View You can open the Design View of any table by selecting the table and then clicking on the Design View icon at the left end of the Home ribbon. In Design View, you can add or remove fields and change the properties of fields. The main part of the Design View pane lists the names, types, and descriptions (if any) of the fields in the table, as illustrated below. 13
15 When a field is selected, as Middle Name is in the illustration above, the Property Sheet for that field will be displayed at the bottom of the Design View pane. You can adjust the properties to meet the needs of your database. When you select one of the properties, a brief description of it is displayed in the blue area to the right. Further information is available by pressing the F1 key to access context-sensitive help. In this example, you might change the Field Size of 255 characters, since that is much larger than anyone s middle name. Some of a field s properties can be used to reduce if not eliminate data entry errors by imposing restrictions on what values are permitted in the field. An input mask, validation rule, and other specifications can each help in some circumstances. Input Mask You can use an input mask to ensure that commonly used data like phone numbers, dates, and zip codes are properly entered into the database. Here s how: 1. Select the field for which you want to set an input mask by clicking on it in the list of fields. 2. Click in the Input Mask line of the field s properties. An icon containing an ellipsis ( ) will appear at the right end of the line. 3. Click on the ellipsis icon to open the Input Mask Wizard. 14
16 4. Select one of the standard masks from the list or click on Edit List to create your own mask. 5. Proceed through the remaining steps of the wizard, responding to each question that is posed and clicking on the Next button to move to the next step. 6. When you finish with the wizard, code that represents the choices you made in the wizard will be put in the Input Mask line of the properties sheet. That code will control the appearance of the data entered into the field. In the case of the phone number example used here, it will prevent non-digits or the wrong number of digits from being put into the phone number field. Validation Rule and Text A validation rule for a field can specify conditions that the field s value must satisfy to be accepted into the database. Typically, the conditions are upper and/or lower limits on a numerical value or date. The validation text, if provided, will be used in an error message displayed for database users who attempt to enter an invalid value, so it should help them understand what is required in the field. To set a validation rule and text: 1. Select the field for which you want to set a validation rule by clicking on it in the list of fields. 2. Click in the Validation Rule line of the field s properties. An icon containing an ellipsis ( ) will appear at the right end of the line. 3. Click on the ellipsis icon to open the Expression Builder, or, if you wish, simply type the expression for the rule directly into the properties sheet. 4. Click in the Validation Text line of the field s properties. Type the message that should be displayed if a database user enters an invalid value. For example, in a database containing information about current employees, you might feel that no birth date should be earlier than In that case, type > 1/1/1908 as the validation rule and something like Birth date can be no earlier than 1908 for the validation text. You may find that Access will adjust the syntax of your validation rule. In this instance, for example, it will be modified to read >#1/1/1908#. 15
17 Note: If you add a validation rule to a table that already has data in it, be sure to click on the Test Validation Rules icon in the Design ribbon to determine if any existing data already violates the rule. Required Data Some field values may be so critical that you wish to require them in any record of your table. For a table containing data about people, you might insist on having a last name for each person in the database (unless, I suppose, your database includes Cher or Sting). To require a value for a field: 1. Select the field whose value is to be required by clicking on it in the list of fields. 2. Click in the Required line of the field s properties. An icon indicating a drop-down menu will appear at the right end of the line. 3. Click on the drop-down menu icon and select Yes from the list. Note: If you specify a required value in a table thatt already has data in it, be sure to click on the Test Validation Rules icon in the Design ribbon to determinee if any existing data already violates the requirement. Primary Key Access insists that each table have a primary key. If you try to save a new table without having specified a primary key, Access will offer to create a key for you. There are, thus, two ways to designate the primary key for a table: 1. If there is no field in the table that can serve as a primary key, you can accept the offer that Access makes when you save a table lacking a key. In that case, a new field will be inserted into the table. Typically, the name of the new field will be ID and its data type will be AutoNumber. As you enter data into a table with such a primary key, Access will supply values in the ID field automatically, beginning with 1 and ncreasing sequentially. 2. If there is a field that could be a key such as a WVUID field in a table of WVU employees or students then you can manually specify it as such. Simply select the field in Design View and click on the Primary Key icon in the Design ribbon. Creating Relationships The general procedure for creating a relationship in Microsoft Access is to: Determine the type of the relationship and identify the source and target tables. If necessary, create a linking or cross reference table to serve as the common target thereby resolve a many-to-many relationship. Create the foreign key field(s) in the target table if they are not already present. Select the Database Tools ribbon. Click on the Relationships icon in the ribbon. Add all of the tables involved in the relationship to the window. Create the relationship(s) by dragging the primary key(s) from the source(s) and dropping them on the associated foreign key(s) in the target(s). 16
18 Relationship Pane To open the relationship window go to Database Tools > Relationships. If your database does not have any relationships defined, the Show Table dialog box will automatically be displayed. Use it to add the tables you want to relate. Once you have selected all the tables you want to relate, define a relationship between two tables by dragging the field that you want to relate from one table to the related field in the other table. In most cases, you drag the primary key field (which is displayed with a key icon next to it) from one table to a similar field (often with the same name) called the foreign key in the other table. The related fields are not required to have the same names (though it s good practice to make them the same since it reminds you where the relationship comes from), but they must have the same data type and contain the same kind of information. In addition, when the matching fields are Number fields, they must have the same Field Size property setting. Once you have created the relationships, the Edit Relationships dialog box is displayed. Check the field names displayed in the two columns to ensure they are correct. You can change them if necessary. 17
19 Referential Integrity Referential integrity is a system of rules that Microsoft Access uses to ensure that relationships between records in related tables are valid, and that you don't accidentally delete or change related data. Under the rules of referential integrity, you cannot enter data in a foreign key of a target table unless the same data already exists in a primary key in the source table. When you complete the drag-and-drop operations described above, Access provides a dialog box that allows you to set referential integrity. This means that, if referential integrity is set on the relationship between the teacher table and the class table and a teacher is assigned to teach a course, Access will not allow you to delete that teacher s record in the teacher table. It will also not allow you to assign a teacher to a class if they are not in the teacher table. If you choose to set referential integrity, then two other options are available for your use: Cascading Updates: If you make a change to the primary key in the source table, then that change is cascaded to all related foreign keys in the target table. Cascading deletes: If you delete a primary key in the source table then all related records in the target table are also deleted. Activity 1: Designing an Access table Open a new blank database in Access. Use Design View to create two related tables either for a database of your own devising or for the data described below. Use the relationship window to establish a relationship between the two tables. What referential integrity settings make sense for your database? Feel free to devise your own tables or create these two tables using appropriate data types for each field: Student table: Student_ID, First_name, Last_name, Birthdate, Financial_aid, Dorm_room Room table: Room_ID, Building, Room_number, Capacity Populating the Database Once you have designed the tables for your database and established relationships between them, there are several ways to put data into the tables: typing the data, perhaps with the aid of forms, lookup lists, or other methods of ensuring the accuracy of the data entered; importing data from an existing repository such as a spreadsheet or another database; and linking to an existing file containing data. Some or all of these methods might be used to build a single database. Forms are the topic of a future workshop in this series of Access workshops, but we will touch on the other methods now. The External Data ribbon is the principal locale for tools allowing you to exchange data with other files, whether you are importing or exporting data. 18
20 Importing data from an Excel spreadsheet Open the database. 1. Select the External Data ribbon, and click on the Excel tool in the Import section of the ribbon. 2. In the Get External Data window, use the Browse button to locate the file to be imported. 3. Choose one of the three options for incorporating the spreadsheet data into the database: (a) importing into a new table, (b) appending to an existing table, or (c) linking to the spreadsheet. 4. Follow the directions in the Import Spreadsheet Wizard in order to select which sheet of the Excel file is to be used, indicate whether it has a header row, specify the type of data in each column to be imported, determine how the primary key will be specified, and name the table in whichh the data is to be put. If you are importing data into an existing table, then you must be sure that the first row of the sheet contains all of the field names for that table so the import wizard can determine where each value should be stored. 19
21 Notes on Importing You can import or link all the data from a spreadsheet, or just the data from a named range of cells. You can create a new table in Access based on the data. You can append the data to an existing table as long as your spreadsheet column headings match the table's field names. If you attempt to append a table which contains a primary key field and your data for that field contains null or duplicate values you will experience an error. Access attempts to assign the appropriate data type to imported fields, but you should check your fields to make sure that they are set to the data type you want. For example, in an Access database, a phone number or postal code field might be imported as a Number field, but should be changed to a Text field in Microsoft Access because it is unlikely that you will perform any calculations on these types of fields. In the case of zip codes, leading zeroes will be lost if the zip code data is brought into a Number field, but not if it is brought into a Text field. You should also check and set field properties, such as formatting, as necessary. Notes on Linking If you link to a file and that file is deleted or moved from its original location (e.g., it is placed in a different folder or drive) the link to the file will be severed. You then have to use the Linked Table Manager to re-establish the link if the file has not been deleted. If you link to a file on a local area network, it is best to use a universal naming convention (UNC) path, if you know it, rather than relying on the drive letter of a mapped network drive in Microsoft Windows Explorer. A drive letter can vary on a computer or may not always be defined, whereas a UNC path is a reliable and consistent way for Microsoft Access to locate the data source that contains the linked table. Universal naming convention for files that provides a machine-independent means of specifying the file s location. Rather than using a drive letter and path, a UNC name uses the syntax \\server\share\path\filename. 20
22 Should you Import or Link a foreign file? In making that decision, consider that Access works faster in its own file format and that you can customize that format to meet your needs. This suggests that importing is the way to go. But consider, too, the role of the data in the external file. Do you want to capture that data as it is now or do you want your database to reflect future changes in the external file as they are made? In the former case, import the data; in the latter case, link to it. In general: Research the procedure. Make backup copies of all files. Test the import or link procedure. Test the foreign files in Access thoroughly before discarding backups. Before you import or link to external data, it is important to check that the data is arranged in an appropriate tabular format, and has the same type of data in each field (column) and the same fields in every row. Activity 2: Importing an Access table Use the Access import tool on the External Data ribbon to import a new table into your database from the Faculty database in the OIT_Workshops folder. Activity 3: Link to a table in another database Use the Excel import tool on the External Data ribbon to link to a worksheet in one of the files in the Excel subfolder of the OIT_Workshops folder, as specified by your instructor. 21
Access Database Design
Access Database Design Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk -- 293-4444 x 1 http://oit.wvu.edu/support/training/classmat/db/ Instructors:
Table and field properties Tables and fields also have properties that you can set to control their characteristics or behavior.
Create a table When you create a database, you store your data in tables subject-based lists that contain rows and columns. For instance, you can create a Contacts table to store a list of names, addresses,
Creating and Using Databases with Microsoft Access
CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries
Create a New Database in Access 2010
Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...
Microsoft Access Basics
Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision
Search help. More on Office.com: images templates
Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can
- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1
- Suresh Khanal http://mcqsets.com http://www.psexam.com Microsoft Excel Short Questions and Answers 1 Microsoft Access Short Questions and Answers with Illustrations Part I Suresh Khanal Kalanki, Kathmandu
ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700
Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 [email protected] TABLE OF CONTENTS Introduction... 1 Import Excel
Use Find & Replace Commands under Home tab to search and replace data.
Microsoft Access 2: Managing Data in Tables and Creating Relationships You have created tables in an Access database. Data in Access tables can be added, deleted, and updated to be current (practiced in
Planning and Creating a Custom Database
Planning and Creating a Custom Database Introduction The Microsoft Office Access 00 database wizards make creating databases easy, but you may need to create a database that does not fit any of the predefined
Access Queries (Office 2003)
Access Queries (Office 2003) Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk 293-4444 x 1 oit.wvu.edu/support/training/classmat/db/ Instructor: Kathy
Access Part 2 - Design
Access Part 2 - Design The Database Design Process It is important to remember that creating a database is an iterative process. After the database is created and you and others begin to use it there will
Microsoft Access 2007 Module 1
Microsoft Access 007 Module http://pds.hccfl.edu/pds Microsoft Access 007: Module August 007 007 Hillsborough Community College - Professional Development and Web Services Hillsborough Community College
Simple Invoicing Desktop Database with MS Access 2013. c 2015 by David W. Gerbing School of Business Administration Portland State University
Simple Invoicing Desktop Database with MS Access 2013 c 2015 by David W. Gerbing School of Business Administration Portland State University July 2, 2015 CONTENTS 1 Contents 1 Create a New Database 1 2
Database Design Basics
Database Design Basics Table of Contents SOME DATABASE TERMS TO KNOW... 1 WHAT IS GOOD DATABASE DESIGN?... 2 THE DESIGN PROCESS... 2 DETERMINING THE PURPOSE OF YOUR DATABASE... 3 FINDING AND ORGANIZING
Microsoft Access 2010
IT Training Microsoft Access 2010 Jane Barrett, IT Training & Engagement Team Information System Services Version 3.0 Scope Learning outcomes Learn how to navigate around Access. Learn how to design and
Getting Started with Access 2007
Getting Started with Access 2007 Table of Contents Getting Started with Access 2007... 1 Plan an Access 2007 Database... 2 Learning Objective... 2 1. Introduction to databases... 2 2. Planning a database...
Microsoft Access 2010 Part 1: Introduction to Access
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3
ECDL. European Computer Driving Licence. Database Software BCS ITQ Level 1. Syllabus Version 1.0
ECDL European Computer Driving Licence Database Software BCS ITQ Level 1 Using Microsoft Access 2013 Syllabus Version 1.0 This training, which has been approved by BCS, includes exercise items intended
MS Access Lab 2. Topic: Tables
MS Access Lab 2 Topic: Tables Summary Introduction: Tables, Start to build a new database Creating Tables: Datasheet View, Design View Working with Data: Sorting, Filtering Help on Tables Introduction
User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009
User Services July 2009 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet & MS Access database Create Relationships Create a Form with a Subform Create Action Queries Create Command
warpct.com MS Access 2010 Workbook courseware by WARP! Computer Training
warpct.com courseware by WARP! Computer Training MS Access 2010 Workbook Welcome! Thank you for evaluating a portion of this workbook. If you have any questions or comments regarding our training materials
Ken Goldberg Database Lab Notes. There are three types of relationships: One-to-One (1:1) One-to-Many (1:N) Many-to-Many (M:N).
Lab 3 Relationships in ER Diagram and Relationships in MS Access MS Access Lab 3 Summary Introduction to Relationships Why Define Relationships? Relationships in ER Diagram vs. Relationships in MS Access
User Services. Microsoft Access 2003 II. Use the new Microsoft
User Services July 2007 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet Create Relationships Create a Form with a Subform Create Action Queries Create Command Buttons Create a
What is a database? The parts of an Access database
What is a database? Any database is a tool to organize and store pieces of information. A Rolodex is a database. So is a phone book. The main goals of a database designer are to: 1. Make sure the data
Reduced Quality Sample
Access 2007 Essentials PART ONE Mobile MOUSe Access 2007 Essentials Version # 1.1 Part One 08/08/2010 11:20 About this Course Microsoft Access is the database application included with Microsoft Office.
Microsoft Access Part I (Database Design Basics) ShortCourse Handout
Microsoft Access Part I (Database Design Basics) ShortCourse Handout July 2004, Technology Support, Texas Tech University. ALL RIGHTS RESERVED. Members of Texas Tech University or Texas Tech Health Sciences
Introduction to Microsoft Access 2003
Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft
PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH:
PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH: INDEX Microsoft Access- An Overview 2 Datasheet view 4 Create a Table in Datasheet
Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms
Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled
Access 2010 Intermediate Skills
Access 2010 Intermediate Skills (C) 2013, BJC HealthCare (St Louis, Missouri). All Rights Reserved. Revised June 5, 2013. TABLE OF CONTENTS OBJECTIVES... 3 UNDERSTANDING RELATIONSHIPS... 4 WHAT IS A RELATIONSHIP?...
How To Understand The Basic Concepts Of A Database And Data Science
Database Concepts Using Microsoft Access lab 9 Objectives: Upon successful completion of Lab 9, you will be able to Understand fundamental concepts including database, table, record, field, field name,
Structure a Database. Key Concepts LESSON. Access 380. Lesson 2: Structure a Database. Standards
LESSON Key Concepts Structure a Database In this lesson, you will continue learning skills to use Access in your daily life. You will learn to create the following elements in this lesson: databases, tables,
Access 2007. Creating Databases - Fundamentals
Access 2007 Creating Databases - Fundamentals Contents Database Design Objectives of database design 1 Process of database design 1 Creating a New Database... 3 Tables... 4 Creating a table in design view
Converting an Excel Spreadsheet Into an Access Database
Converting an Excel Spreadsheet Into an Access Database Tracey L. Fisher Personal Computer and Software Instructor Butler County Community College - Adult and Community Education Exceeding Your Expectations..
Microsoft Access 2003 Module 1
Microsoft Access 003 Module http://pds.hccfl.edu/pds Microsoft Access 003: Module June 005 006 Hillsborough Community College - Professional Development Services Hillsborough Community College - Professional
Introduction to Microsoft Access 2010
Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:
Microsoft Access 2010- Introduction
Microsoft Access 2010- Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an
INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports
INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports Introduction...2 Tables...3 Designing a Table...3 Data Types...4 Relationships...8 Saving Object Designs and Saving Data...9 Queries...11
Filter by Selection button. Displays records by degree to which they match the selected record. Click to view advanced filtering options
The Home Ribbon Sort Buttons: sort records into ascending or descending order by selected field Filter by Selection button. Displays records by degree to which they match the selected record. Display summary
Introduction to Microsoft Access 2013
Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:
Access Tutorial 2 Building a Database and Defining Table Relationships
Access Tutorial 2 Building a Database and Defining Table Relationships Microsoft Office 2013 Objectives Session 2.1 Learn the guidelines for designing databases and setting field properties Create a table
Introduction to Microsoft Office Access 2010
Introduction to Microsoft Office Access 2010 The Himmelfarb Health Sciences Library Questions? Ask us. Microsoft Office Access 2010 by Himmelfarb Health Sciences Library is licensed under a Creative Commons
MICROSOFT ACCESS 2003 TUTORIAL
MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body
Creating Personal Web Sites Using SharePoint Designer 2007
Creating Personal Web Sites Using SharePoint Designer 2007 Faculty Workshop May 12 th & 13 th, 2009 Overview Create Pictures Home Page: INDEX.htm Other Pages Links from Home Page to Other Pages Prepare
Microsoft Office Access 2007 which I refer to as Access throughout this book
Chapter 1 Getting Started with Access In This Chapter What is a database? Opening Access Checking out the Access interface Exploring Office Online Finding help on Access topics Microsoft Office Access
Excel Database Management Microsoft Excel 2003
Excel Database Management Microsoft Reference Guide University Technology Services Computer Training Copyright Notice Copyright 2003 EBook Publishing. All rights reserved. No part of this publication may
Access II 2007 Workshop
Access II 2007 Workshop Query & Report I. Review Tables/Forms Ways to create tables: tables, templates & design Edit tables: new fields & table properties Import option Link tables: Relationship Forms
Microsoft Access 2007 Introduction
Microsoft Access 2007 Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an
MICROSOFT ACCESS TABLES
MICROSOFT ACCESS TABLES Create a New Table... 1 Design View... Datasheet View... 5 Table Tools in Datasheet View... 6 Sorting and Filtering Data... 8 Import and Export Data... 10 Relationships... 11 Relationship
Database design 1 The Database Design Process: Before you build the tables and other objects that will make up your system, it is important to take time to design it. A good design is the keystone to creating
Access I 2010. Tables, Queries, Forms, Reports. Lourdes Day, Technology Specialist, FDLRS Sunrise
Access I 2010 Tables, Queries, Forms, Reports Lourdes Day, Technology Specialist, FDLRS Sunrise Objectives Participants will 1. create and edit a table 2. create queries with criteria 3. create and edit
Creating tables in Microsoft Access 2007
Platform: Windows PC Ref no: USER 164 Date: 25 th October 2007 Version: 1 Authors: D.R.Sheward, C.L.Napier Creating tables in Microsoft Access 2007 The aim of this guide is to provide information on using
Database File. Table. Field. Datatype. Value. Department of Computer and Mathematical Sciences
Unit 4 Introduction to Spreadsheet and Database, pages 1 of 12 Department of Computer and Mathematical Sciences CS 1305 Intro to Computer Technology 15 Module 15: Introduction to Microsoft Access Objectives:
Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries
Exploring Microsoft Office Access 2007 Chapter 2: Relational Databases and Multi-Table Queries 1 Objectives Design data Create tables Understand table relationships Share data with Excel Establish table
A Basic introduction to Microsoft Access
A Basic introduction to Microsoft Access By Ojango J.M.K Department of Animal Sciences, Egerton University, Njoro, Kenya and International Livestock Research Institute, Nairobi, Kenya Ms Access is a database
Creating and Using Forms in SharePoint
Creating and Using Forms in SharePoint Getting started with custom lists... 1 Creating a custom list... 1 Creating a user-friendly list name... 1 Other options for creating custom lists... 2 Building a
Lab 2: MS ACCESS Tables
Lab 2: MS ACCESS Tables Summary Introduction to Tables and How to Build a New Database Creating Tables in Datasheet View and Design View Working with Data on Sorting and Filtering 1. Introduction Creating
Microsoft Access 2007
How to Use: Microsoft Access 2007 Microsoft Office Access is a powerful tool used to create and format databases. Databases allow information to be organized in rows and tables, where queries can be formed
Topic: Relationships in ER Diagram and Relationships in MS Access
MS Access Lab 3 Topic: Relationships in ER Diagram and Relationships in MS Access Summary Introduction to Relationships Why Define Relationships? Relationships in ER Diagram vs. Relationships in MS Access
Jet Data Manager 2012 User Guide
Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform
How To Create A Report In Excel
Table of Contents Overview... 1 Smartlists with Export Solutions... 2 Smartlist Builder/Excel Reporter... 3 Analysis Cubes... 4 MS Query... 7 SQL Reporting Services... 10 MS Dynamics GP Report Templates...
Microsoft Access 2010 handout
Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant
MS Excel Template Building and Mapping for Neat 5
MS Excel Template Building and Mapping for Neat 5 Neat 5 provides the opportunity to export data directly from the Neat 5 program to an Excel template, entering in column information using receipts saved
How To Create A Database For Employee Records In A Club Account In A Computer System In A Cell Phone Or Cell Phone With A Cell Computer (For A Cell)
Creating a Database Lab 1 Objectives After completing this lab, you will know how to: 1 Plan, create, and modify a database. 2 Create and save a table structure. 3 Define field names, data types, field
Information Technology Services Kennesaw State University
Information Technology Services Kennesaw State University Microsoft Access 2007 Level 1 1 Copyright 2008 KSU Dept. of Information Technology Services This document may be downloaded, printed or copied
Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008
Microsoft Amarillo College Revision Date: July 30, 2008 Table of Contents GENERAL INFORMATION... 1 TERMINOLOGY... 1 ADVANTAGES OF USING A DATABASE... 2 A DATABASE SHOULD CONTAIN:... 3 A DATABASE SHOULD
MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES
MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES Exploring Access Creating and Working with Tables Finding and Filtering Data Working with Queries and Recordsets Working with Forms Working
Chapter 5. Microsoft Access
Chapter 5 Microsoft Access Topic Introduction to DBMS Microsoft Access Getting Started Creating Database File Database Window Table Queries Form Report Introduction A set of programs designed to organize,
Consider the possible problems with storing the following data in a spreadsheet:
Microsoft Access 2010 Part 1: Introduction to Database Design What is a database? Identifying entities and attributes Understanding relationships and keys Developing tables and other objects Planning a
Microsoft Access to Microsoft Word Performing a Mail Merge from an Access Query
Microsoft Access to Microsoft Word Performing a Mail Merge from an Access Query Performing a Query in Access Before performing a mail merge, we need to set up a query with the necessary fields. Opening
Check out our website!
Check out our website! www.nvcc.edu/woodbr idge/computer-lab Contact Us Location: Open Computer Lab Seefeldt Building #336 NOVA Woodbridge Campus Hussna Azamy (OCL Supervisor) Phone: 703-878-5714 E-mail:
Sample- for evaluation only. Introductory Access. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.
A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2010 Introductory Access TeachUcomp, Inc. it s all about you Copyright: Copyright 2010 by TeachUcomp, Inc. All rights reserved. This
Personal Geodatabase 101
Personal Geodatabase 101 There are a variety of file formats that can be used within the ArcGIS software. Two file formats, the shape file and the personal geodatabase were designed to hold geographic
Using FileMaker Pro with Microsoft Office
Hands-on Guide Using FileMaker Pro with Microsoft Office Making FileMaker Pro Your Office Companion page 1 Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker
Using SQL Reporting Services with Amicus
Using SQL Reporting Services with Amicus Applies to: Amicus Attorney Premium Edition 2011 SP1 Amicus Premium Billing 2011 Contents About SQL Server Reporting Services...2 What you need 2 Setting up SQL
SHAREPOINT 2010 FOUNDATION FOR END USERS
SHAREPOINT 2010 FOUNDATION FOR END USERS WWP Training Limited Page i SharePoint Foundation 2010 for End Users Fundamentals of SharePoint... 6 Accessing SharePoint Foundation 2010... 6 Logging in to your
Using Delphi Data with Excel and Access
$FDGHPLF&RPSXWLQJ &RPSXWHU 7UDLQLQJ 6XSSRUW 6HUYLFHV 1HWZRUNLQJ6HUYLFHV :HEHU%XLOGLQJ Using Delphi Data with Excel and Access Using Delphi Data The raw data used to create the CSU financial, human resource,
Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)
Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.
Creating a Database using Access 2007
Creating a Database using Access 2007 Starting Access 2007 Double click on the Access 2007 icon on the Windows desktop (see right), or click-on the Start button in the lower left corner of the screen,
Outlook Tips & Tricks. Training For Current & New Employees
Outlook Tips & Tricks Training For Current & New Employees The workshop will help build the necessary skills needed to begin using Microsoft Outlook 2010. The participant will learn how to create e-mail
MICROSOFT ACCESS 2007 BOOK 2
MICROSOFT ACCESS 2007 BOOK 2 4.1 INTRODUCTION TO ACCESS FIRST ENCOUNTER WITH ACCESS 2007 P 205 Access is activated by means of Start, Programs, Microsoft Access or clicking on the icon. The window opened
Writer Guide. Chapter 15 Using Forms in Writer
Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the
Using Microsoft Access Databases
Using Microsoft Access Databases Print this document to use as a reference while you work through this course. Open Access, and follow all directions to familiarize yourself with the program. Database
Finding and Opening Documents
In this chapter Learn how to get around in the Open File dialog box. See how to navigate through drives and folders and display the files in other folders. Learn how to search for a file when you can t
Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro
Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro, to your M: drive. To do the second part of the prelab, you will need to have available a database from that folder. Creating a new
A database is a collection of data organised in a manner that allows access, retrieval, and use of that data.
Microsoft Access A database is a collection of data organised in a manner that allows access, retrieval, and use of that data. A Database Management System (DBMS) allows users to create a database; add,
FrontStream CRM Import Guide Page 2
Import Guide Introduction... 2 FrontStream CRM Import Services... 3 Import Sources... 4 Preparing for Import... 9 Importing and Matching to Existing Donors... 11 Handling Receipting of Imported Donations...
FOR WINDOWS FILE SERVERS
Quest ChangeAuditor FOR WINDOWS FILE SERVERS 5.1 User Guide Copyright Quest Software, Inc. 2010. All rights reserved. This guide contains proprietary information protected by copyright. The software described
bitmedia Access 2007 Basics Entry test Database Basics Entry test Basic database terms What is Access 2007? Tables and indexes
bitmedia Access 2007 Basics Databases such as Access are often considered by some to live in the shadows of the Microsoft Office Package. This is, as we hope to demonstrate in the course of this module,
Microsoft Query, the helper application included with Microsoft Office, allows
3 RETRIEVING ISERIES DATA WITH MICROSOFT QUERY Microsoft Query, the helper application included with Microsoft Office, allows Office applications such as Word and Excel to read data from ODBC data sources.
Six Steps to Completing a Mail-Merge
Six Steps to Completing a Mail-Merge Mail merging means to plug data from an address table into form letters, e-mail messages, envelopes, address labels, or a directory (a list or catalog, for example).
Microsoft Access 3: Understanding and Creating Queries
Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex
Microsoft Word 2010 Mail Merge (Level 3)
IT Services Microsoft Word 2010 Mail Merge (Level 3) Contents Introduction...1 Creating a Data Set...2 Creating the Merge Document...2 The Mailings Tab...2 Modifying the List of Recipients...3 The Address
Microsoft Access 2010 Overview of Basics
Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create
SAS Marketing Automation 5.1. User s Guide
SAS Marketing Automation 5.1 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2007. SAS Marketing Automation 5.1: User s Guide. Cary, NC: SAS Institute
Course Title: Microsoft Access 2007- Basic Duration: 12 hours
Course Title: Microsoft Access 2007- Basic Duration: 12 hours Getting started Topic A: Database concepts A-1: Identifying database components A-2: Identifying the advantages of relational databases Topic
