Database Principles.

Slides:



Advertisements
Similar presentations
MICROSOFT OFFICE ACCESS 2007.
Advertisements

Unit 7: Store and Retrieve it Database Management Systems (DBMS)
M.S. Access Module CAS 133 Russ Erdman. M.S. Access Module Assignment Overview Two options for the unit: All students complete Units A, B and C In class.
Chapter 4: Database Management. Databases Before the Use of Computers Data kept in books, ledgers, card files, folders, and file cabinets Long response.
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
Chapter 11 Databases.
ACS1803 Lecture Outline 2 DATA MANAGEMENT CONCEPTS Text, Ch. 3 How do we store data (numeric and character records) in a computer so that we can optimize.
5.1 © 2007 by Prentice Hall 5 Chapter Foundations of Business Intelligence: Databases and Information Management.
Chapter 5 Lecture 2. Principles of Information Systems2 Objectives Understand Data definition language (DDL) and data dictionary Learn about popular DBMSs.
1 Chapter 1: Finding Your Way Through a Database Exploring Microsoft Office Access 2010.
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 13 Database Management Systems: Getting Data Together.
Application Software: Databases
1 INTRODUCTION TO DATABASE MANAGEMENT SYSTEM L E C T U R E
2005 SPRING CSMUIntroduction to Information Management1 Organizing Data John Sum Institute of Technology Management National Chung Hsing University.
Organizing Data and Information AD660 – Databases, Security, and Web Technologies Marcus Goncalves Spring 2013.
Access 2013 Microsoft Access 2013 is a database application that is ideal for gathering and understanding data that’s been collected on just about anything.
Database Design Part of the design process is deciding how data will be stored in the system –Conventional files (sequential, indexed,..) –Databases (database.
Lecturer: Gareth Jones. How does a relational database organise data? What are the principles of a database management system? What are the principal.
1.file. 2.database. 3.entity. 4.record. 5.attribute. When working with a database, a group of related fields comprises a(n)…
Database Design and Management CPTG /23/2015Chapter 12 of 38 Functions of a Database Store data Store data School: student records, class schedules,
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
Technology In Action Chapter 11 1 Databases and… Databases and their uses Database components Types of databases Database management systems Relational.
1 Chapter 1: Finding Your Way Through a Database Exploring Microsoft Office Access 2007.
DAY 14: MICROSOFT ACCESS – CHAPTER 1 Madhuri Siddula October 1, 2015.
Database. Data Base A database is a collection of related data, and the software used in databases to store, organize and retrieve the data is called.
ITGS Databases.
Database Principles. Basics A database is a collection of data, along with the relationships between the data The data has to be entered into a structure,
CISB113 Fundamentals of Information Systems Data Management.
INTRODUCTION lecture1 1. Data base concept Data is a meaningless static value. What does 3421 means? Information is the data you process in a manner that.
Digital Planet: Tomorrow’s Technology and You Chapter 7 Database Applications and Privacy Implications Copyright © 2012 Pearson Education, Inc. publishing.
Chapter 10 Database Management. Data and Information How are data and information related? p Fig Next processing data stored on disk Step.
Databases Cheyenne Ortega. Databases  A database is a collection of related data, stored in an organized manner so that it can be retrieved later. 
Alighieri: Introduction to MS Access 1 What is a Database? RELATIONAL DATABASE A database is an organized collection of information. A database is designed.
McGraw-Hill/Irwin © 2008 The McGraw-Hill Companies, All Rights Reserved Chapter 7 Storing Organizational Information - Databases.
Fundamentals of Information Systems, Sixth Edition Chapter 3 Database Systems, Data Centers, and Business Intelligence.
© 2017 by McGraw-Hill Education. This proprietary material solely for authorized instructor use. Not authorized for sale or distribution in any manner.
1 Finding Your Way Through a Database Exploring Microsoft Office Access.
Pengantar Sistem Informasi
INTRODUCTION TO DATABASES (MICROSOFT ACCESS)
Intro to MIS – MGS351 Databases and Data Warehouses
Prepared By: Bobby Wan Microsoft Access Prepared By: Bobby Wan
“Introduction To Database and SQL”
Introduction to Computing Lecture # 13
IS 130 Information systems 1
Database Systems Chapter 3 1.
Databases and Information Management
BASIC INFORMATION ABOUT DATABASE MANAGEMENT SOFTWARE
Fundamentals & Ethics of Information Systems IS 201
Exploring Microsoft Office Access
Fundamentals of Information Systems
Database Relationships
Introduction to Database Systems
ACS1803 Lecture Outline 2   DATA MANAGEMENT CONCEPTS Text, Ch. 3
Database Management  .
Databases and Data Warehouses Chapter 3
RELATIONAL DATABASE MODEL
Data Resource Management
Exploring Microsoft Office Access 2007
Tools for Memory: Database Management Systems
What is a Database and Why Use One?
Big Data The huge amount of data being collected and stored about individuals, items, and activities and to the process of drawing useful information from.
Introduction lecture1.
“Introduction To Database and SQL”
MANAGING DATA RESOURCES
Database Fundamentals
Database Design Hacettepe University
DATABASES WHAT IS A DATABASE?
Summary Data Modeling SDLC What is Data Modeling
Databases This topic looks at the basic concept of a database, the key features and benefits of a Database Management System (DBMS) and the basic theory.
Exploring Microsoft Office Access
Presentation transcript:

Database Principles

Basics A database is a collection of data, along with the relationships between the data, organized for efficient retrieval The data has to be entered into a structure, maintained and kept up to date, and accessed (via reports or online queries) This is database management The programs which help you do this are called database management systems DBMS

Old database vs. New database

Uses for a database Every company needs one! Businesses have lots of data to manage, from inventory and suppliers to employees and salary! Databases produce useful reports, shipping labels, answers to questions about the data contained in the database You may or may not actually use MS Access at your job, but you DO use a DBMS very often. Many have specialized, customized interfaces that you might not recognize as a DBMS.

Data Mining Hot topic these days with “Big Data” The process of extracting hidden patterns from data (Wikipedia) Businesses and governments do it all the time (finding prospects, detecting terrorism) Analyze large amounts of data for previously unknown and useful information, using AI programs that can find interesting relationships and patterns Can also invade privacy if not use carefully Patterns used to make predictions

Well known DBMS’s MS Access – only good for medium amounts of data Oracle – for huge amounts of data, used by large companies mySQL – ecommerce, shopping baskets, catalogs, runs on Linux, free, open-source SAP – enterprise, integrated system for managing a business and its data IBM DB2 – older, still well respected for businesses

Basic Terms The simplest unit in a database is a field. It is the smallest meaningful unit. It can be any size from 1 character to hundreds of characters It has a name, like “First Name” or “State” It has a type, like “Text” – more on this later! It has properties, like being a primary key or having a default value

Then comes a record Put some fields together because they are logically related and you call it a record A record is all the information you have in a database about one “object” – “object” is a loose term, a person, a date, a transation, all are objects A record could have 1 field (unusual) or many fields, of any types as needed A collection of fields about a student in a university database would be the student’s record

Then comes a table Put some records together because they are logically associated (they are all students or they are all inventory items) and you have a table. A table could have 1 record (unusual) or millions (can be slow to access or sort!) Tables have names like “Employees” or “Departments” or “Products made” or “Sales”

And lastly comes a database Put together some tables because they are all logically related and you have a database. Note that is a database, NOT a DBMS. The DBMS is the software that manipulates the data in the database A database may have one table or many, depending on the complexity of the data and the size of the entity (company or person) that the data represents