Download presentation
Presentation is loading. Please wait.
Published byAmie Jessica Cross Modified over 9 years ago
1
BUS1MIS Management Information Systems Semester 1, 2012 Access: Creating a Database Week 6 Lecture 2
3
In this lecture the key ideas are: A broad understanding of a relational database is important knowledge for business managers. A relational database organises data into multiple related tables. An effective relational database minimises data redundancy. Also included will be: An overview of creating a relational database in Microsoft Access 2007
4
At the core of a Management Information System is a database (or many databases)
5
Customer ID Customer Name Customer Address Customer Phone 6512JonesBendigo5444888 7989SinghCatlemaine5442777 9112NgEchuca5967222 Customer Table Field Record The key component of a database is a table.
6
A table stores data about some entity in the real world. For example, customers, orders, items of stock. A table has rows and columns like a spreadsheet. Each column describes an attribute of the entity. For example, customer name, customer address. An individual column in a table is called a field. Each row describes an instance of the entity. For example, a customer, an order, an item of stock. An individual row in a table is called a record.
7
Comparison between a database table and a spreadsheet A blank spreadsheet is an open book. You can add whatever you want in whatever structure you want. A database table has a predefined structure. Each row in the table has an identical structure.
8
A business manager needs the knowledge to be confident that the database underlying an important MIS has been correctly designed by the IT person responsible. If a database is not correctly designed the data may be…… poorly organised and/or incomplete and/or inaccurate and/or duplicated …. then management will receive poor quality reports and poor decisions are likely to be made.
9
Let’s try “simple is best” first and put all our data in the one table. See the next slide for the example to be used in the lecture What is the correct design for a database?
10
CJC’s Images Order Form Order #: 1927 Order Date: 12/5/09 Customer Name: Liam Customer Address: Brisbane Item # Item Name Qty Ordered 3720 Large Framed 3 2917 Small Unframed 6 1129 Small Framed 1 Let’s design a single table to store this data
11
Order # Order Date Cust. Name Cust. Address Item#Item Name Quantit y 192712/5/09LiamBrisbane3720LFramed3 192712/5/09LiamBrisbane2917SUnframed6 192712/5/09LiamBrisbane1129SFramed1 Assume there are other orders as well 192813/5/09KirstySydney1129SFramed2 192813/5/09KirstySydney1800LUFramed15 192914/5/09LiamBrisbane3720LFramed1 192914/5/09LiamBrisbane2917SUFramed1 192914/5/09LiamBrisbane1129SFramed1 192914/5/09LiamBrisbane1800LUFramed1 If Liam changes address, how many changes need to be made to the table?
12
Putting all our data in a single table means we have ended up with ……. Data Redundancy …. the scourge of all database design.
13
How do we avoid data redundancy in our database design? Most business databases use a relational database design. The database consists of multiple, related tables Any piece of data is only stored ONCE
14
If we apply a relational database design to the Order Form in the previous slide we would have 4 related tables. Cust Name Cust Address LiamBrisbane KirstySydney Order # Order Date Cust Name 192712/5/09Liam 192813/5/09Kirsty 192914/5/09Liam Item # Item Name 1129SFramed 1800LUFramed 2917SUFramed 3720LFramed Order # Item # Quantity 192737203 192729176 192711291 192811292 1928180015 192937201 ……………… If Liam changes address, how many changes need to be made to the database?
15
To maintain the links between the tables we need … 1.A field in each table which uniquely identifies each record (called a primary key) 2.Some software to maintain the links The primary key is nearly always a number, as in a Student ID. The software to create the tables and maintain the links is known as a Database Management System (DBMS) We will be using Microsoft Access as a DBMS.
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.