Implementation of physical data model

Slides:



Advertisements
Similar presentations
Microsoft Access.
Advertisements

XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 3 1 Microsoft Office Access 2003 Tutorial 3 – Querying a Database.
COMPREHENSIVE Access Tutorial 2 Building a Database and Defining Table Relationships.
Querying a Database Microsoft Office Access 2003.
FIRST COURSE Access Tutorial 2 Building a Database and Defining Table Relationships.
Microsoft Access Database software. What is a database? … a database is an organized collection of data. A collection of data of similar information compiled.
1 Chapter 1: Finding Your Way Through a Database Exploring Microsoft Office Access 2010.
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 Committed to Shaping the Next Generation of IT Experts. Chapter 1: Finding Your Way Through.
Copyright © 2010 Pearson Education, Inc. Publishing as Prentice Hall 1 Committed to Shaping the Next Generation of IT Experts. Chapter 1: Finding Your.
DAY 14: ACCESS CHAPTER 1 Tazin Afrin October 03,
® Microsoft Office 2013 Access Building a Database and Defining Table Relationships.
Microsoft Access 2003 Define some key Access terminology: Field – A single characteristic or attribute of a person, place, object, event, or idea. Record.
® Microsoft Office 2010 Access Tutorial 2 Building a Database and Defining Table Relationships.
® Microsoft Office 2010 Building a Database and Defining Table Relationships.
1 Chapter 1: Finding Your Way Through a Database Exploring Microsoft Office Access 2007.
INFO1408 Database Design Concepts Week 15: Introduction to Database Management Systems.
Prepared By Prepared By : VINAY ALEXANDER ( विनय अलेक्सजेंड़र ) PGT(CS),KV JHAGRAKHAND.
Introduction to Database using Microsoft Access 2013 Part 7 November 19, 2014.
McGraw-Hill/Irwin © The McGraw-Hill Companies, All Rights Reserved TECHNOLOGY PLUG-IN T6 Basic Skills Using Access.
INFORMATION TECHNOLOGY DATABASE MANAGEMENT. Adding a new field 1Right click the table name and select design view 2Type the field information at the end.
1 CHƯƠNG 4 Creating Relational Databases Understanding Table Relationships Example: This database tracks customers and their orders in two separate.
Work with Tables and Database Records Lesson 3. NAVIGATING AMONG RECORDS Access users who prefer using the keyboard to navigate records can press keys.
MSOffice Access Microsoft® Office 2010: Illustrated Introductory 1 Part 1 ® Database & Table.
COMPREHENSIVE Access Tutorial 1 Creating a Database.
1 Finding Your Way Through a Database Exploring Microsoft Office Access.
Access Tutorial 2 Building a Database and Defining Table Relationships
New Perspectives on Microsoft Access 2016
Prepared By: Bobby Wan Microsoft Access Prepared By: Bobby Wan
Databases Chapter 9 Asfia Rahman.
Microsoft Access 2016 Design and Implement Powerful Relational Databases Chapter 6.
GO! with Microsoft Office 2016
Exploring Microsoft Office Access 2007
Practical Office 2007 Chapter 10
Basic Database Concepts
and Defining Table Relationships
Introduction to Web programming
CIS 155 Table Relationship
GO! with Microsoft Access 2016
Access Creating a Database
Microsoft Office Illustrated Fundamentals
Created by Kamila zhakupova
Exploring Microsoft Office Access
Methodology – Physical Database Design for Relational Databases
Access Creating a Database
Microsoft Access 2003 Illustrated Complete
Microsoft Office Illustrated
Exploring Microsoft Office Access 2007
Exploring Microsoft Office Access 2007
Database Relationships
Microsoft Office Access 2003
Tutorial 3 – Querying a Database
PHPMyAdmin.
Access Lesson 2 Creating a Database
Microsoft Office Access 2003
Lessons Vocabulary Access 2016.
Microsoft Office Access 2003
Access Tutorial 2 Building a Database and Defining Table Relationships
Database Design Hacettepe University
Access Tutorial 2 Building a Database and Defining Table Relationships
Spreadsheets, Modelling & Databases
logical design for relational database
Nagendra Vemulapalli Access chapters 3&6 Nagendra Vemulapalli
Designs for Data Integrity, validations, security and controls
Topic 12 Lesson 1 – Data and databases
Implementation of security elements in database
DATABASE DESIGN & DEVELOPMENT
Grauer and Barber Series Microsoft Access Chapter One
Exploring Microsoft Office Access
Relationships While we are on the subject of Relationships, let’s take a quick look at them.
Presentation transcript:

Implementation of physical data model DATABASE DESIGN & DEVELOPMENT Implementation of physical data model Zatil Ridh'wah Hj Darot

microsoft access implementation of physical data model

microsoft access MS Access is a relational database system for workstations that run the Microsoft Windows operating system. MS Access is typically used by individuals for data they use personally, but in some situations a single MS Access database may be used by a group of people or small department.

Creating table Define the table give the table a name and Define the type of data to be stored in each of the fields a name will be text, a price could be currency and a date would have a data type of Date Set any field properties for each field Various formats can be defined for dates e.g. General Date, Long Date, Medium Date, Short Date etc.

defining relationships After tables have been created for each subject in your database, you need a way of telling Microsoft Access how to bring that information back together again. The next step is to __________________________ Once the relationships are created, you can start entering data into the tables. After you've done that, you can create queries, forms, and reports to display information from several tables at once.

enforcing referential integrity helps discipline data entry It is a system of rules that Microsoft Access uses to ensure: relationships between records in related tables are ____________ related data are not inadvertently ______________

When referential integrity is enforced, observe the following rules: You can't enter a value in the key field of the related table that doesn't exist in the key of the primary table. You can't change a primary key value in the primary table, if that record has related records. You ______________from a primary table if matching records exist in a related table. To enforce referential integrity, click the Enforce Referential Integrity check box in the Edit Relationships dialog box.

data stores A Data Store is a connection to a store of data, whether the data is stored in a database or in one or more files. The data store may be used as the source of data for a process, or you may export the ____________ results of a process to a data store, or both. Type of Data stores: Internal storage is seen as an integral part of your computing device. External storage is something you add on such as cloud.

database storage All information in a database is organized and structured in database tables. These tables are stored on the hard disk of the database server. The information itself is typically saved in one of the many types of ordered and unordered flat files, ISAM, heaps, hash buckets or B+ trees. The most commonly used database structures are the B+ trees and ISAM.

how table data is stored

Oracle database A Relational Database Management System – RDBMS The Oracle database stores data logically in tablespaces and physically in data files. Tablespaces: Can belong to only one database Consist of one or more data files Are further divided into logical units of storage Data files: Can belong to only ______________ and one database Are a repository for schema object data Database Tablespace Data files

Cloud storage A database that typically runs on a cloud computing platform, access to it is provided as a service. With a database as a service model, application owners do not have to install and maintain the database themselves. Instead, the database service provider takes responsibility for installing and maintaining the database, and application owners are charged according to their usage of the service. A primary concern related to cloud storage is the security, integrity, and confidentiality of data, which becomes more prone to being compromised when __________________________ and other third parties. There can also be legal and regulatory implications that result from relocating data across geographical or national boundaries. Another issue applies specifically to the performance of large databases. LANs provide locally stored data with network reliability and latency levels that are superior to those of WANs.

in-house server

cloud server

references Conolly, T. and Begg, C. (2014) Database Systems: A Practical Approach to Design, Implementation and Management. 6th Ed. Global Edition. Pearson.