Using Access 2016 Since we are creating a new Access database, we need to select blank database.

Slides:



Advertisements
Similar presentations
BASIC SKILLS AND TOOLS USING ACCESS
Advertisements

By Wanda Gibson, CI, MMI, SME. Microsoft Access Access is a database management system. This system lets you create and process data. A database is a.
Using a database to organize information
Logon then turn your monitor off! Creating a database A way of keeping information.
Access Lesson 2 Creating a Database
Access - Project 1 l What Is a Database? –A Collection of Data –Organized in a manner to allow: »Access »Retrieval »Use of That Data.
Creating a Blank Database 1. Open up Microsoft Access 2. Click on Blank document button 3. On the right panel, Specify the location for saving your database.
Overview Importing text files Creating Forms Creating Reports.
2015/6/301 TransCAD Managing Data Tables. 2015/6/302 Create a New Table.
Access Lesson 2 Creating a Database
ACCESS. » Access is a database management system. » This system lets you create and process data. » A database is a collection of data that is organized.
1 Lesson 22 Getting Started with Access Essentials Computer Literacy BASICS: A Comprehensive Guide to IC 3, 3 rd Edition Morrison / Wells.
Lesson 17 Getting Started with Access Essentials
Copyright 2007, Paradigm Publishing Inc. ACCESS 2007 Chapter 1 BACKNEXTEND 1-1 LINKS TO OBJECTIVES Create and Open a Database Create and Open a Database.
® Microsoft Office 2013 Access Creating a Database.
Introduction to Access 2010 CIS120first.accdb is the database I am creating.
INTRODUCTION TO ACCESS. OBJECTIVES  Define the terms field, record, table, relational database, primary key, and foreign key  Create a blank database.
Pasewark & Pasewark 1 Access Lesson 2 Creating a Database Microsoft Office 2007: Introductory.
Ennis-Cole, AC 2.01, CECS Maintaining A Database By: Dr. Ennis-Cole.
Access Module Implementing a Database with Microsoft Access A Great Module on Your CD.
Finish ing the logic flowc harts from week 3.. if invcd = “A” and (amtfst > 500 or amtsnd > 200) move “OKAY” to msg end if With the parenthesis, invcd.
Creating a database - I clicked on blank database and am saving it as books10.mdb. For more information see the practice example under week #1. I am going.
Sample template for portfolio - I would prefer to see you do something more original!
This is the software we will use to load our html page up to the server. You can download a copy for home if you want to.
Access Tutorial 2 Building a Database and Defining Table Relationships
Microsoft Access 2007 – Level 1
Access Tutorial 1 Creating a Database
European Computer Driving Licence
This shows the user interface and the SQL Select for a situation with two criteria in an AND relationship.
Unit 16 – Database Systems
Database application MySQL Database and PhpMyAdmin
On new..
Access Creating a Database
Creating and Using a Database
Chapter 4 MS ACCESS DATABASE.
Access Creating a Database
Access Database for CIS17
Please use speaker notes for additional information!
HANDS-ON TUTORIAL 1 By ARLENE N. BARATANG.
Access Tutorial 1 Creating a Database
Generating forms with the wizard in Access
Access Lesson 2 Creating a Database
Access Lesson 2 Creating a Database
What is a Database? A collection of data organized in a manner that allows access, retrieval, and use of that data.
Using SQL with Access I am adding queries to the stu table in SecondDB.accdb – a database that I created in class. SQL stands for structured query language.
Access
Miscrosoft Office..
I am opeing Access 2003 in the Microsoft Office.
Microsoft Official Academic Course, Access 2016
Click ‘browse’ to search your device for
On new..
Data Types and Field Properties
Access Database for CIT12
Access Tutorial 2 Building a Database and Defining Table Relationships
Please use speaker notes for additional information!
Start a new project – since this is the community edition I will save all when I get into VB and then I can choose the location and specify a folder.
Access Tutorial 2 Building a Database and Defining Table Relationships
Click on Save All to save everything and choose a location etc
Using screens and adding two numbers - addda.cbl
Notes on SQL This slide show will introduce SQL using Access. It assumes only an introductory level of knowledge about Access.
Introduction to Access 2010
Access Tutorial 1 Creating a Database
Using Access to generate a report
European Computer Driving Licence
Access Tutorial 1 Creating a Database
Database – Mobile Phones
Grauer and Barber Series Microsoft Access Chapter Two
Using SQL with Access I create a database named
Template for the portfolio.
Access Click on file and then you want a new database.
Presentation transcript:

Using Access 2016 Since we are creating a new Access database, we need to select blank database

Here you give your database a name with an accdb extension and you select where you want to save it. I am saving it on the root of my E drive. If I wanted to save it in a folder I should select that.

I want to develop the layout using a different screen so I am going to click on the icon that looks like a tool.

I am now being prompted to name my table. I am going to call it stu.

When I click OK Table 1 will be renamed stu.

Now the table is stu and I can start to layout what the records should look like. Here I am telling Access the fields that I want on the record layout.

The first field will be stuid and I decided to make it a short text field (note I could have made it numeric). Short text has a default field size of 255 which is unrealistic so I am changing that to a 5. Note that when you make a field name it should contain no embedded spaces to meet my specifications. The stuid field has a key icon next to it which means it is the primary key for this table. The primary key must be unique so that means that each student record will have its own unique stuid.

The field size is now 5.

I am now adding a field for the student’s name and I am calling it stuname. I made it a short text field and changed the field size from 255 to 50.

Next I am adding a field for the major Next I am adding a field for the major. I made it two characters to hold a major code like CI or BU.

I am not adding a gpa field I am not adding a gpa field. This is a numeric field and I choose single for the field size because it is a small decimal.

Finally I am adding a field called numCredits that is also a number and an integer. Note that I used camel case when I named the field numCredits because the C is uppercase indicating a new word.

I clicked on the X to close the table. And I am going to say Yes.

Now I can click on stu under Tables and bring up the description of the record layout and a place to allow me to enter data.

Now I can enter data.

Note that the icon of the tools and the icon that shows a view are really a toggle switch that lets you go back and forth between seeing the data and seeing the record layout.