Information Systems & Databases 2.2) Organisation methods.

Slides:



Advertisements
Similar presentations
Content 15.1 Basic features Types of database Data structures 15.2 Creating a database Screen layout Entering data Editing data 15.3 Displaying data Searching.
Advertisements

Organisation Of Data (1) Database Theory
Database Basics. What is Access? Database management system Computer-based equivalent of a manual database Makes it easy to organize and update information.
WHAT D IS RAW, UNPROCESSED FACTS AND FIGURES COLLECTED, STORED AND PROCESSED BY COMPUTERS.
The database approach to data management provides significant advantages over the traditional file-based approach Define general data management concepts.
Management Information Systems, Sixth Edition
The Relational Database Model
Chapter 4.
3/5/2009Computer systems1 Analyzing System Using Data Dictionaries Computer System: 1. Data Dictionary 2. Data Dictionary Categories 3. Creating Data Dictionary.
Systems Analysis and Design 9th Edition
Managing data Resources: An information system provides users with timely, accurate, and relevant information. The information is stored in computer files.
Organizing Data & Information
Databases and Processing Modes. Fundamental Data Storage Concepts and Definitions What is an entity? An entity is something about which information is.
WELL-DESIGNED DATABASES Process faster Easy to develop and maintain Easy to read and write code.
“DOK 322 DBMS” Y.T. Database Design Hacettepe University Department of Information Management DOK 322: Database Management Systems.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
Mgt 20600: IT Management & Applications Databases Tuesday April 4, 2006.
Information Storage and Retrieval CS French Chapter 3.
Relational Databases What is a relational database? What would we use one for? What do they look like? How can we describe them? How can you create one?
Information systems and databases Database information systems Read the textbook: Chapter 2: Information systems and databases FOR MORE INFO...
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
Database Software Application
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.
Databases. Objectives Define what a database is. Understand the difference between a flat and relational database Design and create a relational database.
The Relational Database Model
7.1 Copyright © 2005 Pearson Education Canada Inc. Management Information Systems, Second Canadian Edition Chapter 7: Managing Data Resources MANAGING.
2.3 Organising Data for Effective Retrieval
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.
1 Advanced Computer Programming Databases. Overview What is a database? Database Basics Database Components Data Models Normalization Database Design.
MICROSOFT ACCESS 2007 BTA – Spring What is Access?  Microsoft Access is a database management system…this means that it contains database information.
 Definition  Components  Advantages  Limitations Contents  DBMS DBMS  Functions Functions  Architecture Architecture.
Chapter 1 Overview of Database Concepts Oracle 10g: SQL
FatMax Licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 LicenseCreative Commons Attribution-NonCommercial-ShareAlike 2.5.
1 Chapter 1 Overview of Database Concepts. 2 Chapter Objectives Identify the purpose of a database management system (DBMS) Distinguish a field from a.
Management Information Systems By Effy Oz & Andy Jones
Information Systems: Databases Define the role of general information systems Describe the elements of a database management system (DBMS) Describe the.
Concepts and Terminology Introduction to Database.
Organizing Data and Information AD660 – Databases, Security, and Web Technologies Marcus Goncalves Spring 2013.
Lecture 2 An Overview of Relational Database IST 318 – DB Admin.
Chapter 6.
Chapter 1Introduction to Oracle9i: SQL1 Chapter 1 Overview of Database Concepts.
Databases. What is a database?  A database is used to store data. The word DATA is actually Latin for FACTS. A database is, therefore, a place, or thing.
Module 2: Information Technology Infrastructure Chapter 5: Databases and Information Management.
DATABASE MANAGEMENT SYSTEMS CMAM301. Introduction to database management systems  What is Database?  What is Database Systems?  Types of Database.
MANAGING DATA RESOURCES ~ pertemuan 7 ~ Oleh: Ir. Abdul Hayat, MTI.
ITGS Databases.
+ Information Systems and Databases 2.2 Organisation.
Lesson 2: Designing a Database and Creating Tables.
Lesson 13 Databases Unit 2—Using the Computer. Computer Concepts BASICS - 22 Objectives Define the purpose and function of database software. Identify.
Database Use and Structure
BSA206 Database Management Systems Lecture 2: Introduction to Oracle / Overview of Database Concepts.
1 DATABASE TECHNOLOGIES (Part 2) BUS Abdou Illia, Fall 2015 (September 9, 2015)
Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin APPENDIX C DESIGNING DATABASES APPENDIX C DESIGNING DATABASES.
Systems Analysis and Design 8th Edition
Week 2 Lecture The Relational Database Model Samuel ConnSamuel Conn, Faculty Suggestions for using the Lecture Slides.
INFORMATION TECHNOLOGY DATABASE MANAGEMENT. A database is a collection of information organized to provide efficient retrieval. The collected information.
Hoi Le. Why database? Spreadsheet is not good to: Store very large information Efficiently update data Use in multi-user mode Hoi Le2.
Managing Data Resources File Organization and databases for business information systems.
Management Information Systems by Prof. Park Kyung-Hye Chapter 7 (8th Week) Databases and Data Warehouses 07.
Databases Chapter 16.
Fundamentals of Information Systems, Sixth Edition
Fundamentals & Ethics of Information Systems IS 201
Week 12 Option 3: Database Design
Data Resource Management
Database Management  .
Databases A brief introduction….
Databases and Information Management
Databases and Information Management
Spreadsheets, Modelling & Databases
The ultimate in data organization
Presentation transcript:

Information Systems & Databases 2.2) Organisation methods

A database is an organised collection of data. Non-computerised databases include: telephone book address book recipe cards

Advantages of non-computerised databases: no power required no training required inexpensive data not a linked security risk Advantages of computerised databases: easily edited large storage fast retrieval display options

A flat file database organises data into a single table. Flat file databases organise the data into: files – a block of data; divided into records and fields record – a collection of facts about one specific entry field – a specific category of data in a database character – smallest unit of data (e.g. letters, numbers, symbols)

Keys are fields that are used to sort and retrieve information. Keys include: single key – derived from one field composite key – made by joining two or more keys together primary key – a field that has a set of unique values secondary key – a field that does not contain unique data

A relational database organises data into a series of linked (related) tables. The organisation of data in a relational database involves a schema. A schema is the data definition for a relational database. It shows the entities, relationships and attributes.

An entity is the specific thing about which the data has been collected. E.g. in school – student contact details, merits/demerits, reports, attendance. Each table is one entity. An attribute is a defined property of an entity. Attributes are the same as fields in flat file databases.

A relationship is the way in which entities are related to each other. Entities are related through primary keys. Entities can be related in one of three ways: one to one one to many many to many

Data modelling is the process of identifying entities, their attributes and the relationships between those entities through certain attributes. Some tools that are used include: data dictionaries schematic diagrams normalisation Data dictionaries are comprehensive descriptions of each attribute.

Each data dictionary contains metadata such as: field name – should be short, clear and unambiguous data type – kind of data (text, number, date, time, logical (Boolean)) field size – number of characters allowed in an attribute description – specifies the contents of an attribute

The data dictionary is the basis for database creation. If there are multiple designers it allows them to see if a particular attribute already exists in another entity. This can help to eliminate data redundancy, which is the undesirable duplication of data within a database. [p.52 – Complete learning activity 4, parts (a) & (b) ]

Schematic diagrams are graphical tools that help define the database and describe a schema. An entity-relationship diagram (ERD) is a graphical method of identifying the entities and their attributes and showing the relationships between entities. [Draw Diagram 2.13, p.48]

Hypermedia is a combination of media whose locations are linked electronically. The information is stored using a set of documents that may contain: text images video audio animations executable files

Information is retrieved using hypertext. Hypertext is the system that allows documents to be cross- linked in such a way. A link, or hyperlink, is usually indicated by a highlighted item.