Introduction to Database Systems

Slides:



Advertisements
Similar presentations
Database Basics. What is Access? Database management system Computer-based equivalent of a manual database Makes it easy to organize and update information.
Advertisements

Database Management Systems and Enterprise Software
Computer Science & Engineering 2111 Introduction to Database Systems 1CSE 2111-Introduction to Database Systems.
3/5/2009Computer systems1 Analyzing System Using Data Dictionaries Computer System: 1. Data Dictionary 2. Data Dictionary Categories 3. Creating Data Dictionary.
Database A collection of related information stored on a computer and organized in a manner that allows access, retrieval, and use of that data.
Database Management An Introduction.
ISP 121 Week 1 Introduction to Databases. ISP 121, Winter Why a database and not a spreadsheet? You have too many separate files or too much data.
1 1 Concepts of Database Management, 4 th Edition, Pratt & Adamski Chapter 1 Introduction to Database Management.
Data Types and Field Properties 5.01 Understand database tables used in business.
Information Storage and Retrieval CS French Chapter 3.
MS Access 2007 IT User Services - University of Delaware.
Computer Science & Engineering 2111 Introduction to Database Management Systems Relationships and Database Creation 1 CSE 2111 Introduction to Database.
Data Types and Field Properties 5.01 Understand database tables used in business.
Database terms Mr. Brunton.
Introduction to Database Systems
Computer Science & Engineering 2111 Introduction to Database Systems 1CSE 2111 Introduction to Database Systems.
Microsoft Access 2000 Creating Tables and Relationships.
Tables. What is a Table? A part of a database Container for data Pieces of data, put together, have a meaning.
Access 2007 Database Application Managing Business Information Effectively BCIS 1 and 2.
1 Advanced Computer Programming Databases. Overview What is a database? Database Basics Database Components Data Models Normalization Database Design.
Databases. Database A database is an organized collection of related data.
Concepts of Database Management, Fifth Edition Chapter 1: Introduction to Database Management.
Databases Introduction. What is a Database? A DATABASE is a collection of related data. –Data is just another name for information.
 A database is a collection of data that is organized so that its contents can easily be accessed, managed, and updated. What is Database?
Relational Databases (MS Access)
Computer Science & Engineering 2111 Lecture 11 Querying a Database 1.
Information Systems & Databases 2.2) Organisation methods.
Chapter 8 Analyzing Systems Using Data Dictionaries Systems Analysis and Design Kendall & Kendall Sixth Edition.
Computer Science & Engineering 2111 Lecture 10 Introduction to Database Management Systems 1.
Computer Science & Engineering 2111 Querying a Database 1CSE 2111 Lecture- Querying a Database.
Databases Organizing Sorting Querying A Presentation by Karen Work Richardson.
Databases,Tables and Forms Access Text by Grauer Chapters 1 & 2.
ITGS Databases.
DAY 15: ACCESS CHAPTER 1 Rahul Kavi October 6,
Relational Databases. Relational database  data stored in tables  must put data into the correct tables  define relationship between tables  primary.
What is Access?. “Copyright and Terms of Service Copyright © Texas Education Agency. The materials found on this website are copyrighted © and trademarked.
Concepts of Database Management Seventh Edition Chapter 1 Introduction to Database Management.
Introduction to Databases. What is a database?  A database program is nothing more than an electronic version of a 3x5 card file  A database is defined.
Instructor: Pavlos Pavlikas1 How Data is Stored Chapter 8.
Computer Science & Engineering 2111 Database Objects 1 CSE 2111 Introduction to Database Management Systems.
COMPUTER SKILLS MS-ACCESS. Introduction Access is a piece of software known as a database management system. At its most basic level, it can be used to.
Database (Microsoft Access). Database A database is an organized collection of related data about a specific topic or purpose. Examples of databases include:
DAY 20: ACCESS CHAPTERS 5, 6, 7 Larry Reaves October 28,
2b. Create an Access Database Lingma Acheson Department of Computer and Information Science IUPUI CSCI N207 Data Analysis with Spreadsheets 1.
IGCSE 4 Cambridge Designing a database table Computer Science
Tables & Relationships
Basic Criteria in Queries
Fundamentals of Database
Creating a Database Microsoft Access.
Databases Chapter 16.
Introduction to Database Systems
Introduction to Database
Introduction to Database
Database Systems Unit 16.
Microsoft Access 2013 Design and Create Tables to Store Data
Hierarchy of Data in a Database
Introduction to Database Systems
Database Management  .
Fundamentals of Database Design
Creating a table in Access
Introduction to Computer Science (CIS 101)
What is a Database? A collection of data organized in a manner that allows access, retrieval, and use of that data.
Microsoft Applications
Data Types and Field Properties
The ultimate in data organization
Microsoft Office Access is the best –selling personal computer database management system. What is Access?
Christopher M. Pascucci
PowerPoint Notes Databases.
Database Management Systems and Enterprise Software
Presentation transcript:

Introduction to Database Systems Computer Science & Engineering Introduction to Database Systems This lecture will cover the use of some basic functions provided by EXCEL. We will be explore how these functions work and how they can be used to solve problems.

Database Terms Data Information A collection of numbers and text 273459368 Information Meaning derived from the data SSN: 273-45-9368

What is a database? Examples of computer databases A large collection of data stored in a well-defined structure You can think of a database as An electronic filing system A repository for large amounts of information Example of a paper database Telephone book Examples of computer databases Ohio State stores student information in a database Insurance companies store policy holder information in a database Your employer stores your information in a database

Database Software How do I create a database? Purchase the software We will use MS Access 2010, but there are many database software products Oracle Sybase SQL Server How do I access information in the database? Purchase a Database Management System (DBMS) A DBMS is a collection of programs that enable you to enter, organize, and select data in a database. We will use MS Access 2013, but there are many database management software products

Steps when setting up a Database The design should be initially created schematically, and then the database should be created using the chosen database software

1. Decide what information you will store in the database Research Papers database First Name Charge Amount Last Name Charge Date Address Payment Amount City Payment Type State Payment Date Zip Code   Home Phone This database is a very simplistic one. Most databases you create will be much more complex.

2. Create the layout of the database What tables do you need in your database? What is a table? An entity used to organize information by categories of like information

Research Papers Database Tables Client Stores client information Charges Stores client charges information Payments Stores client payment information PaymentMethod Stores the payment method Credit Card Cash Check

2. Create the layout of the database What fields do you need in your database? What is a field? An attribute (piece of information) of the table/entity. How will you set them up? Divide Tables into Inseparable Fields Address as 1 field – 17 Main St. New York, New York 10002 Address as 4 fields Street Address - 17 Main St. City - New York State - New York Zip code – 10002

Research Papers Database Table Name: Client Fields: Client ID   First Name Last Name Address City State Zip Code Home Phone Charges Charge Amount Charge Date Payments Payment Amount Payment Type Payment Date PaymentMethod MethodID MethodType

2. Create the layout of the database Fields contain field types/data types and field properties What is a field Type/Data Type? Defines the type of information that can be stored. i.e. text, numbers, dates, etc. What is a field Property? Field size Input Mask Validity Default Value

Research Papers Database Table Name: Client Field Type/ Data Type Properties   Fields: Client ID Text 5 Characters long Primary Key First Name 25 Characters long Last Name 50 Characters long Address 60 Characters long City State 2 Characters long Default Value Zip Code Home Phone 10 Characters long Input Mask Charges Field Type Charge Amount Currency None Charge Date Date Input Mast Payments Payment Amount Payment Type Payment Date PaymentMethod MethodID MethodType 20 Characters long

2. Create the layout of the database What will be the primary key for each table? A field, or a collection of fields, whose values uniquely identify each record in a table

Research Papers Database Table Name: Client Field Type/ Data Type Properties   Fields: Client ID Text 5 Characters long Primary Key First Name 25 Characters long Last Name 50 Characters long Address 60 Characters long City State 2 Characters long Default Value Zip Code Home Phone 10 Characters long Input Mask Charges Field Type Charge Amount Currency None Charge Date Date Input Mast Payments Payment Amount Payment Type Payment Date PaymentMethod MethodID MethodType 20 Characters long