Visibility Information Exchange Web System. Source Data Import Source Data Validation Database Rules Program Logic Storage RetrievalPresentation AnalysisInterpretation.

Slides:



Advertisements
Similar presentations
Irwin/McGraw-Hill Copyright © 2000 The McGraw-Hill Companies. All Rights reserved Whitten Bentley DittmanSYSTEMS ANALYSIS AND DESIGN METHODS5th Edition.
Advertisements

Database Management3-1 L3 Database Management Santa R. Susarapu Ph.D. Student Virginia Commonwealth University.
VIEWS / TSS Overview. End-to-end Air Quality Data and Decision Support VIEWS / TSS Vision Acquisition Import Unification Management Manipulation Retrieval.
GI Systems and Science January 30, Points to Cover  Recap of what we covered so far  A concept of database Database Management System (DBMS) 
Introduction to Database Management  Department of Computer Science Northern Illinois University January 2001.
High-level VIEWS Architecture. Data Acquisition & Import Data Acquisition System: Accepts submission of data in a variety of schemas and formats Can automatically.
The Visibility Information Exchange Web System is a database system and set of online tools originally designed to support the Regional Haze Rule enacted.
The Visibility Information Exchange Web System is a database system and set of online tools originally designed to support the Regional Haze Rule enacted.
Chapter 3 Database Management
Chapter Physical Database Design Methodology Software & Hardware Mapping Logical Design to DBMS Physical Implementation Security Implementation Monitoring.
WRAP Technical Support System for Air Quality Planning, Tracking, & Decision Support Tom Moore, Western Regional Air Partnership, Western Governor’s Association.
16 months…. The Visibility Information Exchange Web System is a database system and set of online tools originally designed to support the Regional Haze.
Components and Architecture CS 543 – Data Warehousing.
The Visibility Information Exchange Web System (VIEWS): An Approach to Air Quality Data Management and Presentation In a broader sense, VIEWS facilitates.
Shawn McClure Software Engineer CIRA, Colorado State University Projects: Visibility Information Exchange Web.
BUSINESS DRIVEN TECHNOLOGY
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 1.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
Database Administration Chapter 16. Need for Databases  Data is used by different people, in different departments, for different reasons  Interpretation.
Database Systems: Design, Implementation, and Management Ninth Edition
Chapter 1 Database Systems. Good decisions require good information derived from raw facts Data is managed most efficiently when stored in a database.
Database Design - Lecture 1
Systems analysis and design, 6th edition Dennis, wixom, and roth
6-1 DATABASE FUNDAMENTALS Information is everywhere in an organization Information is stored in databases –Database – maintains information about various.
Chapters 17 & 18 Physical Database Design Methodology.
Functions of a Database Management System
1 CSBP430 – Database Systems Chapter 1: Databases and Database Users Mamoun Awad College of Information Technology United Arab Emirates University
Database Technical Session By: Prof. Adarsh Patel.
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
MIS 385/MBA 664 Systems Implementation with DBMS/ Database Management Dave Salisbury ( )
Introduction: Databases and Database Users
1 Introduction to Database Systems. 2 Database and Database System / A database is a shared collection of logically related data designed to meet the.
Chapter 7: Database Systems Succeeding with Technology: Second Edition.
I Information Systems Technology Ross Malaga 4 "Part I Understanding Information Systems Technology" Copyright © 2005 Prentice Hall, Inc. 4-1 DATABASE.
Discovering Computers Fundamentals Fifth Edition Chapter 9 Database Management.
Chap No: 04 Advanced Relational Database
Object Persistence (Data Base) Design Chapter 13.
Object Persistence Design Chapter 13. Key Definitions Object persistence involves the selection of a storage format and optimization for performance.
Storing Organizational Information - Databases
Intro – Part 2 Introduction to Database Management: Ch 1 & 2.
McGraw-Hill/Irwin © 2008 The McGraw-Hill Companies, All Rights Reserved Chapter 7 Storing Organizational Information - Databases.
McGraw-Hill/Irwin © 2008 The McGraw-Hill Companies, All Rights Reserved Chapter 7 Storing Organizational Information - Databases.
INFO1408 Database Design Concepts Week 15: Introduction to Database Management Systems.
Prepared By Prepared By : VINAY ALEXANDER ( विनय अलेक्सजेंड़र ) PGT(CS),KV JHAGRAKHAND.
Chapter 13 Designing Databases Systems Analysis and Design Kendall & Kendall Sixth Edition.
Management Information Systems, 4 th Edition 1 Chapter 8 Data and Knowledge Management.
Database Administration
GLOBEX INFOTEK Copyright © 2013 Dr. Emelda Ntinglet-DavisSYSTEMS ANALYSIS AND DESIGN METHODSINTRODUCTORY SESSION EFFECTIVE DATABASE DESIGN for BEGINNERS.
Metadata By N.Gopinath AP/CSE Metadata and it’s role in the lifecycle. The collection, maintenance, and deployment of metadata Metadata and tool integration.
TSS Database Inventory. CIRA has… Received and imported the 2002 and 2018 modeling data Decided to initially store only IMPROVE site-specific data Decided.
IT System Administration Lesson 3 Dr Jeffrey A Robinson.
Session 1 Module 1: Introduction to Data Integrity
ESG-CET Meeting, Boulder, CO, April 2008 Gateway Implementation 4/30/2008.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Chapter 1 Introduction: Databases and Database Users.
Database Planning Database Design Normalization.
Introduction: Databases and Database Systems Lecture # 1 June 19,2012 National University of Computer and Emerging Sciences.
ISC321 Database Systems I Chapter 2: Overview of Database Languages and Architectures Fall 2015 Dr. Abdullah Almutairi.
Database Design: Solving Problems Before they Start! Ed Pollack Database Administrator CommerceHub.
What is a database? (a supplement, not a substitute for Chapter 1…) some slides copied/modified from text Collection of Data? Data vs. information Example:
CS4222 Principles of Database System
Database Development Lifecycle
Database Management.
Informix Red Brick Warehouse 5.1
9/22/2018.
Basic Concepts in Data Management
MANAGING DATA RESOURCES
VIEWS / TSS Overview.
The ultimate in data organization
The Database Environment
MIS 385/MBA 664 Systems Implementation with DBMS/ Database Management
Presentation transcript:

Visibility Information Exchange Web System

Source Data Import Source Data Validation Database Rules Program Logic Storage RetrievalPresentation AnalysisInterpretation Transformation Import: Getting the data into the system Validation: Ensuring data accuracy Storage: Managing the data, backup, archival Transformation: Sorting, joining, aggregating Retrieval: Getting the data out Presentation: Displaying the data Analysis: Making the data understandable Interpretation: Making the data usable Evaluating 

Represents data in a way easily dealt with by people Database organization resembles a star Strengths: Easier to understand and access by direct users Queries are simplified and tend to be faster Ideal for front-end functions Weaknesses: Harder to manipulate programmatically Harder to import, validate, and transform data Cumbersome for back-end functions Supporting Dimension tables Contain metadata and other support data Networks, Sites, Parameters, Methods, Time Intentionally “flat”  one level of relationships Redundant data and redundant relationships Decision Support System (DSS) design Central Fact table Contains actual air observation values Maintains links to all dimension tables Networks SitesParameters MethodsTime Air_Obs Options 

Leverage the Existing Architecture Pros: Less up-front time and effort Reuses the existing design Cons: Not easily scalable Programmatic manipulation is harder Doesn’t address back-end functions Extend and Enhance the Existing Architecture Pros: Realizes more back-end functions Still involves only one database design Cons: A specialized, unconventional design Harder to understand, maintain, & scale Implement a Separate Architecture for Back-end Support Pros: Full Support of back-end functions Machine-friendly, easier to automate Allows both designs to be optimized Keeps logical operations separate Long-term scalability and flexibility Cons: Requires greater initial development effort Two distinct architectures to maintain * * Not Really  stay tuned… Analyzing 

Measurements of sets of parameters, taken at certain geographical locations, with particular instruments, on specific dates and at given times, which are then analyzed, recorded, and disseminated as data. What sentence best describes the data and data flows of the system? What is the “common currency” of the system ? The Sample What is the “primary mediator” of the system ? The Instrument What are the “entities” of the system ? Locations (Sites), Parameters, Methods, Date/Time What are the “primary actions” of the system ? Analyzing, Recording Implementing 

Represents data in a way easily dealt with by machines The Online Transaction Processing System (OLTP) … Technical Characteristics Fully relational and completely normalized Optimized for insert, update, and delete Allows more efficient indexing Larger number of tables and relationships Automatically enforces referential integrity Description and Functional Characteristics Facilitates importing data into the system Promotes data integrity and facilitates validation Makes storage more efficient Speeds and simplifies transformation Additional Benefits and Considerations Scalability: Will handle more data and users without changing the design Interoperability: Interacts more easily with other systems and datasets Maintenance: Facilitates modification, upgrade, and enhancement Security: Facilitates backup, recovery, archival, and integrity Leveraging 

The front-end DSS is automatically generated by the back-end OLTP Final Notes Map Projection Analogy: Base system (globe) and derived views (projections) Optimization: Allows each architecture to do what it does best without compromise Data Transparency: User doesn’t need to know how data is stored, only how to use it Exchangeability: A wide variety of diverse schemas can be generated from OLTP Networks SitesParameters MethodsTime Air_Obs SQL Script Generation of the Front End : Periodically On Demand Future 

Fully automate data import and validation Provide data products as web services for users, models, and programs Reduce the need for local data storage and maintenance Promote the free exchange of data and ideas Provide enhanced metadata browsing Facilitate GIS integration Provide presentation-ready data products Facilitate RPO support of the Regional Haze Rule Thank you for your attention…