Copyright © 2003 Addison-Wesley Your name here. Copyright © 2003 Addison-Wesley Overview of Information Systems What is the Internet? Why are databases.

Slides:



Advertisements
Similar presentations
CIT 381 What are databases? What are (R)DBMSs? How do we use/access databases? WWW and databases (client server) Who works with databases? History of databases.
Advertisements

Databases Chapter Distinguish between the physical and logical view of data Describe how data is organized: characters, fields, records, tables,
Database Software File Management Systems Database Management Systems.
1 Basic DB Terms Data: Meaningful facts, text, graphics, images, sound, video segments –A collection of individual responses from a marketing research.
Concepts of Database Management Sixth Edition
Copyright © 2003 Addison-Wesley Instructor Information Here.
Introduction to Databases Transparencies
Chapter 4: Database Management. Databases Before the Use of Computers Data kept in books, ledgers, card files, folders, and file cabinets Long response.
System Analysis and Design
Concepts of Database Management Seventh Edition Chapter 1 Introduction to Database Management.
Sets and Set Operations A set is an unordered collection of objects called elements Explicit definition Implicit definition Two sets A and B are equal.
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
Copyright © 2003 Addison-Wesley Your name here. Copyright © 2003 Addison-Wesley Representing Information with Data Models What is a data model? How does.
Introduction to Web Applications Instructor: Enoch E. Damson.
Introduction to Databases
Overview Thanks to Dr. Raj and Dr. Liu for sharing course materials; also S. Miner from Gordon College Database Concepts.
Chapter 12 Information Systems. Spreadsheets Databases 12-2.
Introduction to Database
Database System Concepts and Architecture Lecture # 3 22 June 2012 National University of Computer and Emerging Sciences.
Databases Illuminated
CSI315CSI315 Web Development Technologies Continued.
Intro to MIS – MGS351 Databases and Data Warehouses Chapter 3.
1 DATABASE TECHNOLOGIES BUS Abdou Illia, Fall 2012 (September 5, 2012)
Concepts of Database Management Seventh Edition
7/17: Database Management
Module Title? DBMS Introduction to Database Management System.
I Copyright © 2004, Oracle. All rights reserved. Introduction.
Chapter 1 Introduction to Databases Pearson Education ©
Introduction1 Principles of Database Systems With Internet and Java Applications Today’s Topic Course Introduction Instructors name and contact info goes.
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
Data-mining & Data As we used Excel that has capability to analyze data to find important information, the data-mining helps us to extract information.
1 INTRODUCTION TO DATABASE MANAGEMENT SYSTEM L E C T U R E
Simple Database.
7.1 Managing Data Resources Chapter 7 Essentials of Management Information Systems, 6e Chapter 7 Managing Data Resources © 2005 by Prentice Hall.
I Copyright © Oracle Corporation, All rights reserved. Introduction.
 2004 Prentice Hall, Inc. All rights reserved. 1 Segment – 6 Web Server & database.
Mainframe (Host) - Communications - User Interface - Business Logic - DBMS - Operating System - Storage (DB Files) Terminal (Display/Keyboard) Terminal.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
Lecture # 3 & 4 Chapter # 2 Database System Concepts and Architecture Muhammad Emran Database Systems 1.
5 - 1 Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved.
CS 1308 Computer Literacy and the Internet
Introduction to Database AIT632 Chapter 1 Sungchul Hong.
Data resource management
Copyright © 2003 Addison-Wesley Timeline for Database Systems Developments before 1960 transition from punched card and tape 1960s, from file management.
SQL Jan 20,2014. DBMS Stores data as records, tables etc. Accepts data and stores that data for later use Uses query languages for searching, sorting,
Introduction to Databases Transparencies © Pearson Education Limited 1995, 2005.
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
Chapter 1: Introduction. 1.2 Database Management System (DBMS) DBMS contains information about a particular enterprise Collection of interrelated data.
Introduction to Core Database Concepts Getting started with Databases and Structure Query Language (SQL)
uses of DB systems DB environment DB structure Codd’s rules current common RDBMs implementations.
McGraw-Hill/Irwin ©2008,The McGraw-Hill Companies, All Rights Reserved Chapter 5 Data Resource Management.
Data Resource Management Data Concepts Database Management Types of Databases Chapter 5 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies,
Introduction to Databases Transparencies
Database Management:.
Introduction to Databases Transparencies
Introduction to Databases
Introduction to Databases
Tools for Memory: Database Management Systems
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.
System And Application Software
MANAGING DATA RESOURCES
Database.
Data Resource Management
Introduction to Databases
MANAGING DATA RESOURCES
Introduction to Databases
Introduction to Databases Transparencies
ບົດທີ 6 ການຄຸ້ມຄອງຊັບພະຍາກອນຂໍ້ມູນ (Managing Data Resource)
Data Resource Management
DATABASE TECHNOLOGIES
Presentation transcript:

Copyright © 2003 Addison-Wesley Your name here

Copyright © 2003 Addison-Wesley Overview of Information Systems What is the Internet? Why are databases important? How do databases represent information? Who works with databases? How do databases support the World Wide Web? What database concepts and terms do you need to know?

Copyright © 2003 Addison-Wesley What is the Intenet? Collection of computers –With networking infrastructure Software and communications –Web server –Web browser –Communications strategy Networked computers can be –Server –Desktop –Notebook –Handheld –Mobile phone

Copyright © 2003 Addison-Wesley Why Are Databases Important? Importance to business –Walmart: Records of retail business Size of warehouses Size of inventory Average sales per $ of inventory –LL Bean: Records of customers Importance to Web –Records of interactions –Example of auction site –Example of enthusiasts site

Copyright © 2003 Addison-Wesley Importance of Databases to Economy Expanding use of databases in retail sales –Walmart, retail sales information tracking –LL Bean, catalog sales information tracking Examples of analyses –Sales of items Comparisons between daily totals of items sold and items in inventory Seasonal variations in sales of specific and similar items Relative sales of similar items with different features –Market-basket collections (all items in a single purchase) Average and variation in total purchase amount Average and variation in number and price of items Correlation between sales of items in a single purchase –Customer analysis Behavior of average customer Preferences of individual customers

Copyright © 2003 Addison-Wesley How Do Databases Represent Information? The physical database: – a collection of files containing the data content The schema: –a specification of the physical database’s information content and logical structure The database engine: –software that lets people access and modify the database contents The data definition and manipulation languages: –programming languages, such as Java or SQL (Structured Query Language), that let software developers define the schema and access the database

Copyright © 2003 Addison-Wesley How Do Databases Represent Information? Relational database management system (RDBMS) –Tables of data –Schema Name of table Names and types of attributes –Contents Row is a fact Attribute value is a characteristic

Copyright © 2003 Addison-Wesley Example of storing customer information Customer table accountIdlastNamefirstName 101BlockJane 102HamiltonCherry 103HarrisonKate 104BreauxCarroll Logical description (Schema) Customer (accountId, lastName, firstName) Table creation statement create table Customer (accountId integer, lastName char(20), firstName char(20))

Copyright © 2003 Addison-Wesley Client Server Database Interaction

Copyright © 2003 Addison-Wesley Who Works with Database Systems? Database designers Applications developers Web-application developers Web-site designers Database administrators

Copyright © 2003 Addison-Wesley How Do Databases Support the World Wide Web? Maintain information that is published in the site Track the ways in which site visitors use that information Track the number of site visitors and customers Store information collected from input forms such as requests for customer addresses Store the structure and content of Web pages Sample: tId=101 tId=101

Copyright © 2003 Addison-Wesley Sample BigHit Video Reservations Schema: Reservation (accountId, movieTitle) accountIdmovieTitle 101Annie Hall 165The Thirty-Nine Steps 101Animal House 453Annie Hall

Copyright © 2003 Addison-Wesley Timeline for Database Systems Developments before 1960 transition from punched card and tape 1960s, from file management to databases –Bachman (GE) IDS and data structure diagrams –IMS from IBM, Hierarchical Data Model –IMS DB/DC, Network Model and communication –SABRE, multi-user access with network 1970s, CODASYL and Relational Model –Codd (IBM) Relational Model –Chen introduced Entity Relationship Model –Query languages developed (SQL) 1980s, Client/Server DBs, Oracle, DB2 –PC databases, DBase, Paradox, etc. –SQL standard for definition and manipulation 1990s, web-based information delivery –Trends: expert DBs, object DBs, distributed DBs 2000s, Enhancing database technology for Web storage and access –Bioinformatics: genetic and protein information, medical records –Using the Web as a database