Databases 1.

Slides:



Advertisements
Similar presentations
RJP/RDA 1 /93 Relational Data Analysis (RDA) RDA organises all the system’s data items into a set of well NORMALISED relations. These should avoid: 1.
Advertisements

Database Modeling IT Key Ideas, Dynamic Database Systems, 2002 Chapter 8.
Normalisation Ensuring data integrity in database design 1.
Recording / Financing Fixed Asset Acquisition Human Resources Purchasing Revenue Traditional files approach: separate systems (Legacy Systems) Expenditure.
Database Design Concepts INFO1408 Term 2 week 1 Data validation and Referential integrity.
Database Systems. What is a database? A database is an organised store of data items.
It refers to the software used to manage the database.
Copyright © 2016 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the prior written consent of McGraw-Hill Education.
N. J. Taylor Database Management Systems (DBMS) 1.
DATA MODELLING TOOLS FOR ORGANISING DATABASES. For a database to be organised and logical, it must be well-designed and set out. In such cases, the databases.
Modelling Techniques - Normalisation Description and exemplification of normalisation.Description and exemplification of normalisation. Creation of un-normalised.
CORE 2: Information systems and Databases NORMALISING DATABASES.
1 What is database 2? What is normalization? What is SQL? What is transaction?
What's a Database A Database Primer Let’s discuss databases n Why they are hard n Why we need them.
Grade 11 Computer Science. Relational Databases  Using the link below, answer questions in your notebooks  Look at Kites.accdb database to refresh your.
Databases Unit 3_6. Flat File Databases One table containing data Data must be entered as a whole each time e.g. customer name and address each time (data.
Btec National - Advanced Databases 1 Advanced Databases Entity Relationship Diagrams.
System and data modeling tools Revision. Schemas A schema shows the organisational structure of a database. It should show the entities (the tables in.
3. Relational Model Lingma Acheson Department of Computer and Information Science IUPUI CSCI N207 Data Analysis with Spreadsheets 1.
Flat Files Relational Databases
Btec National - IT SYSTEMS ANALYSIS AND DESIGN 1 IT Systems Analysis and Design Entity Relationship Diagrams.
NORMALIZATION: ‘1NF’ The general rule: ‘’Any field which can have many, must have its own table’’ By Sam Beaumont.
Logical Database Design and Relation Data Model Muhammad Nasir
1 Microsoft Access 2002 Tutorial 2 – Creating And Maintaining A Database.
Starter Draw a mind map for topic 6 Databases. Objectives Revise topic CG3.6 Databases using various activities and ensure that topics covered are understood.
Flat file and relational databases Flat file database In a flat file database information is held in a single table. Student IDStudent name GenderDOBCourse.
Lesson 10 Databases.
Understanding Data Storage
Database Design.
Introducing Databases
Revised: 2 April 2004 Fred Swartz
SQL Relational Database Project
Databases.
The Relational Database Model
Relational Databases.
CIS 155 Table Relationship
Database Management Systems (DBMS)
A Table with a View: Database Queries
CIS 207 The Relational Database Model
CSCI-100 Introduction to Computing
Chapter 4 Relational Databases
Design a Relational Database Identify Database Purpose
Databases A brief introduction….
CTFS Asia Region Workshop 2014
Entity Relationships and Normalization
Order Database – ER Diagram
Normalization Referential Integrity
The 1:M Relationship (continued)
Microsoft Access 2010 Lesson 2 Access Lesson 2 Lesson Plans
5.02 Understand database queries, forms, and reports used in business.
Instructor: Craig Duckett
Relational Database Model
Session 2 Welcome: The seventh learning sequence
Database solutions Chosen aspects of the relational model Marzena Nowakowska Faculty of Management and Computer Modelling Kielce University of Technology.
The Relational Database Model
Lingma Acheson Department of Computer and Information Science IUPUI
A Table with a View: Database Queries
Advanced Database Concepts: Reports & Views
DCT 2053 DATABASE CONCEPT Chapter 2.2 CONTINUE
logical design for relational database
Design tools and techniques for a relational database system
Functions Rules and Tables.
A Table with a View: Database Queries
Understand the purpose of normalisation in terms of reducing duplication of data  Understand the purpose of Primary and Secondary Keys in a Database  Learning.
Lecture 23 CS 507.
Microsoft Access 2010 Lesson 2 Access Lesson 2 Lesson Plans
© 2008 Pearson Prentice Hall, Experiencing MIS, David Kroenke
Database Design Chapter 7.
Presentation transcript:

Databases 1

Contents. What is a relational database? What is a distributed database? What is: Data consistency? Data redundancy? Data independence? Data integrity? What is data normalisation?

What is a relational database? A group of tables linked together by primary and foreign keys.

What is a distributed database? A distributed database has data stored on a number of computers at different locations but appears as one logical database.

Data consistency Data consistency is the relationship between the input data, the processed data and the output data as well as other related data. If the system is working properly the data will be correct at each stage and is said to be consistent.

Data redundancy Data which is repeated unnecessarily is called redundant data. This is wasteful because some data may need to be input twice and if data is changed in one it will need to be changed in the other

Data independence Data and the programs used to access it are independent. New systems can still use existing data.

Data integrity Ensuring the correctness of the data, i.e. making sure it is truthful and accurate.

What is data normalisation? Normalisation is the organisation of data into tables which relate to a single entity.