CTP108 - Computer Programming for Business FORM AND DATABASE DESIGN Submitted to :Tolga BAYCAN Submitted by : A.Korhan ZIVRALI,Can MENTEŞ 10.12.2007.

Slides:



Advertisements
Similar presentations
Maintenance Modifying the data –Add records –Delete records –Update records Modifying the design –Add fields into tables –Remove fields from a table –Change.
Advertisements

Access Quiz October 24, The database objects bar in Access contains icons for tables, queries, forms and reports 1.True 2.False.
Database Design Conceptual –identify important entities and relationships –determine attribute domains and candidate keys –draw the E-R diagram Logical.
Chapter 3. 2 Chapter 3 - Objectives Terminology of relational model. Terminology of relational model. How tables are used to represent data. How tables.
Boyce-Codd Normal Form Kelvin Nishikawa SE157a-03 Fall 2006 Kelvin Nishikawa SE157a-03 Fall 2006.
3-1 Chapter 3 Data and Knowledge Management
Introduction to Databases CIS 5.2. Where would you find info about yourself stored in a computer? College Physician’s office Library Grocery Store Dentist’s.
FORM AND DATABASE DESIGN Mert Yüksel Levent Bilen.
FORM AND DATABASE DESIGN. A GENERAL INTRODUCTION TO FORM AND DATABASE DESIGN.
Chapter 4: Database Management. Databases Before the Use of Computers Data kept in books, ledgers, card files, folders, and file cabinets Long response.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
Databases and Database Management Systems
Database Design Overview. 2 Database DBMS File Record Field Cardinality Keys Index Pointer Referential Integrity Normalization Data Definition Language.
Information systems and databases Database information systems Read the textbook: Chapter 2: Information systems and databases FOR MORE INFO...
Figure 1. Hit analysis in 2002 of database-driven web applications Hits by Category in 2002 N = 73,873 Results Reporting 27% GME 26% Research 20% Bed Availability.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
Page 1 ISMT E-120 Introduction to Microsoft Access & Relational Databases The Influence of Software and Hardware Technologies on Business Productivity.
Software Development Unit 2 Databases What is a database? A collection of data organised in a manner that allows access, retrieval and use of that data.
Page 1 ISMT E-120 Desktop Applications for Managers Introduction to Microsoft Access.
Introduction to Databases. Overview  What is a Database?  What is a Database Management System?  How is information organized in a database?  What.
Unit 18: Database Modelling
XP Chapter 1 Succeeding in Business with Microsoft Office Access 2003: A Problem-Solving Approach 1 Level 3 Objectives: Identifying and Eliminating Database.
DATABASE MANAGEMENT SYSTEMS BASIC CONCEPTS 1. What is a database? A database is a collection of data which can be used: alone, or alone, or combined /
DATABASE MANAGEMENT SYSTEMS BASIC CONCEPTS 1. What is a database? A database is a collection of data which can be used: alone, or alone, or combined /
PHP Programming with MySQL Slide 8-1 CHAPTER 8 Working with Databases and MySQL.
Database Management Systems Accounting Information Systems, 5 th edition James A. Hall COPYRIGHT © 2007 Thomson South-Western, a part of The Thomson Corporation.
Concepts and Terminology Introduction to Database.
DATABASE DESIGN USING MICROSOFT ACCESS. What is a Database?  DMS Database management system  Database Collection of data organized in a manner that.
CTFS Workshop Shameema Esufali Suzanne Lao Data coordinators and technical resources for the network
Database Normalization Lynne Weldon July 17, 2000.
CORE 2: Information systems and Databases NORMALISING DATABASES.
PHP and MySQL CS How Web Site Architectures Work  User’s browser sends HTTP request.  The request may be a form where the action is to call PHP.
Database Management Systems Introduction. In the Beginning… Customer Program 1.
Introduction to Databases Trisha Cummings. What is a database? A database is a tool for collecting and organizing information. Databases can store information.
Chapter 1Introduction to Oracle9i: SQL1 Chapter 1 Overview of Database Concepts.
Database Beginnings. Scenario so far In our scenario we have people registering for training sessions. –The data about the training sessions was placed.
CIS 210 Systems Analysis and Development Week 6 Part II Designing Databases,
Fanny Widadie, S.P, M.Agr 1 Database Management Systems.
Component 4: Introduction to Information and Computer Science Unit 6a Databases and SQL.
What have we learned?. What is a database? An organized collection of related data.
Access Review. Access Access is a database application A database is a collection of records and files organized for a particular purpose Access supports.
+ Information Systems and Databases 2.2 Organisation.
Course FAQ’s I do not have any knowledge on SQL concepts or Database Testing. Will this course helps me to get through all the concepts? What kind of.
Database Management Supplement 1. 2 I. The Hierarchy of Data Database File (Entity, Table) Record (info for a specific entity, Row) Field (Attribute,
Database and Information Management Chapter 9 – Computers: Understanding Technology, 3 rd edition.
Flat Files Relational Databases
Introduction to Databases CISC Where would you find info about yourself stored in a computer? College Physician’s office Library Grocery Store Dentist’s.
The Relational Model. 2 Relational Model Terminology u A relation is a table with columns and rows. –Only applies to logical structure of the database,
Database design Using Access 2007
Understand Relational Database Management Systems Software Development Fundamentals LESSON 6.1.
Alighieri: Introduction to MS Access 1 What is a Database? RELATIONAL DATABASE A database is an organized collection of information. A database is designed.
6.1 © 2007 by Prentice Hall Chapter 6 (Laudon & Laudon) Foundations of Business Intelligence: Databases and Information Management.
Microsoft Access 2010 Chapter 11 Database Design.
1 Information Retrieval and Use De-normalisation and Distributed database systems Geoff Leese September 2008, revised October 2009.
Databases Introduction - concepts. Concepts of Relational Databases.
NORMALIZATION Handout - 4 DBMS. What is Normalization? The process of grouping data elements into tables in a way that simplifies retrieval, reduces data.
ACCESS LESSON 1 DATABASE BASICS VOCABULARY. BACKSTAGE VIEW A menu of options and commands that allows you to access various screens to perform common.
SQL Basics Review Reviewing what we’ve learned so far…….
Normalisation FORM RULES 1NF 2NF 3NF. What is normalisation of data? The process of Normalisation organises your database to: Reduce or minimise redundant.
Prepared By: Bobby Wan Microsoft Access Prepared By: Bobby Wan
Databases.
Chapter 4 Relational Databases
Databases A brief introduction….
Database Normalization
What is a Database and Why Use One?
Database.
What is a Database? A collection of data organized in a manner that allows access, retrieval, and use of that data.
A Very Brief Introduction to Relational Databases
Introduction to MySQL NELINET October 28th, 2005.
Microsoft Access Date.
Presentation transcript:

CTP108 - Computer Programming for Business FORM AND DATABASE DESIGN Submitted to :Tolga BAYCAN Submitted by : A.Korhan ZIVRALI,Can MENTEŞ

GENERAL INTRODUCTION

WHAT IS DATABASE ? A collection of data Types of database I) Flat-File II) Relational

WHAT IS DATABASE DESIGN? Major aims of design I) Helps to reach the data easily II) Helps us to understand database

Defining the System Parameters Defining the Work Processes Building the Conceptual Data Model Preparing the Database Schema Designing the User Interface DESIGN PROCESS

DATABASE TABLES: Rows and Columns Represents a single data value Must conform

DATABASE QUERIES: Request for info from database Intended to return a list of devices

WHAT IS DATABASE FORM? It facilitate database data entry. It has retrieval operations.

PRIMARY KEY: Unique identifier Avoding meaningful primary key Never change

NORMALIZATION What is Normalisation? Normalistion is a process of organising the data in database in more efficent way.

FIRST NORMAL FORM Eliminate Repeating Groups

SECOND NORMAL FORM Eliminate Redundant Data

THIRD NORMAL FORM Eliminate Columns Not Dependent On Key

WHAT CAN A FORM DESIGNER DO? Get the point.

Add help information

Provide a clear confirmation message

WARNİNG MESSAGE