© Stefano Grazioli - Ask for permission for using/quoting: Stefano Grazioli.

Slides:



Advertisements
Similar presentations
1 Use or disclosure of data contained on this sheet is subject to the restriction on the title page of this proposal or quotation. An Introduction to Data.
Advertisements

Business Intelligence (BI) PerformancePoint in SharePoint 2010 Sayed Ali – SharePoint Administrator.
OLAP Services Business Intelligence Solutions. Agenda Definition of OLAP Types of OLAP Definition of Cube Definition of DMR Differences between Cube and.
© Stefano Grazioli - Ask for permission for using/quoting:
Data Warehousing - 3 ISYS 650. Snowflake Schema one or more dimension tables do not join directly to the fact table but must join through other dimension.
MIS 451 Building Business Intelligence Systems Logical Design (3) – Design Multiple-fact Dimensional Model.
© Stefano Grazioli - Ask for permission for using/quoting:
Data Warehousing: Defined and Its Applications Pete Johnson April 2002.
Financial Information Management FIM: Databases Stefano Grazioli.
Copyright © 2014 Pearson Education, Inc. 1 It's what you learn after you know it all that counts. John Wooden Key Terms and Review (Chapter 6) Enhancing.
XP Information Information is everywhere in an organization Employees must be able to obtain and analyze the many different levels, formats, and granularities.
Financial Information Management How do I talk to a DBMS? SQL In one hour.
CIS 429—Chapter 8 Accessing Organizational Information—Data Warehouse.
5.1 © 2007 by Prentice Hall 5 Chapter Foundations of Business Intelligence: Databases and Information Management.
Database Systems – Data Warehousing
Best Practices for Data Warehousing. 2 Agenda – Best Practices for DW-BI Best Practices in Data Modeling Best Practices in ETL Best Practices in Reporting.
Financial Information Management DBMS and Operations, BI, and Analytics Stefano Grazioli.
Business Intelligence Zamaneh Jahed. What is Business Intelligence? Business Intelligence (BI) is a broad category of applications and technologies for.
© Stefano Grazioli - Ask for permission for using/quoting:
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS CHAPTER 3
Financial Information Management Putting VB & SQL To Work Stefano Grazioli.
MIS2502: Data Analytics The Information Architecture of an Organization.
CISB594 – Business Intelligence
Financial Information Management Changing data in a DB Stefano Grazioli.
Financial Information Management Operations, BI, and Analytics Stefano Grazioli.
Chapter 3: Databases and Data Warehouses Building Business Intelligence Management Information Systems for the Information Age.
© Stefano Grazioli - Ask for permission for using/quoting:
DATABASES AND DATA WAREHOUSES
© Stefano Grazioli - Ask for permission for using/quoting:
Chapter 5 DATA WAREHOUSING Study Sections 5.2, 5.3, 5.5, Pages: & Snowflake schema.
© Stefano Grazioli - Ask for permission for using/quoting:
Chapter 6.  Problems of managing Data Resources in a Traditional File Environment  Effective IS provides user with Accurate, timely and relevant information.
Business Intelligence Training Siemens Engineering Pakistan Zeeshan Shah December 07, 2009.
1 Copyright © 2009, Oracle. All rights reserved. Oracle Business Intelligence Enterprise Edition: Overview.
Financial Information Management FIM: Databases Stefano Grazioli.
© Stefano Grazioli - Ask for permission for using/quoting: Putting VBA & SQL To Work.
© Stefano Grazioli - Ask for permission for using/quoting: Stefano Grazioli.
Financial Information Management Modifying data in a DB Stefano Grazioli.
Financial Information Management Operations, BI, and Analytics Stefano Grazioli.
© Stefano Grazioli - Ask for permission for using/quoting: Stefano Grazioli.
Week 5 – Nov 4, 2015 Data Analysis. Class today Last week & Homework review SQL: Purpose and functions Data Cleaning Pivot Tables, Power Pivots and Power.
© Stefano Grazioli - Ask for permission for using/quoting: Stefano Grazioli.
© Stefano Grazioli - Ask for permission for using/quoting: Stefano Grazioli.
Data Warehouse – Your Key to Success. Data Warehouse A data warehouse is a  subject-oriented  Integrated  Time-variant  Non-volatile  Restructure.
© Stefano Grazioli - Ask for permission for using/quoting: Gamma Hedging Wilhelm's Warriors No Hedgetation The Gobs of Money Machine.
© Stefano Grazioli - Ask for permission for using/quoting: Portfolio-level Delta Hedging.
© Stefano Grazioli - Ask for permission for using/quoting: Stefano Grazioli.
Jaclyn Hansberry MIS2502: Data Analytics The Things You Can Do With Data The Information Architecture of an Organization Jaclyn.
Databases Stefano Grazioli.
Operations, BI, and Analytics
BI tools: Excel’s Pivot table
What is business intelligence?
THE ENTERPRISE ANALYTICAL JOURNEY
Database Vs. Data Warehouse
An Introduction to Data Warehousing
MIS2502: Data Analytics The Information Architecture of an Organization Acknowledgement: David Schuff.
MIS2502: Data Analytics The Information Architecture of an Organization Aaron Zhi Cheng Acknowledgement:
Dynamic SQL Queries Stefano Grazioli.
Data warehouse.
BI: Accessing Enterprise Data
BI: Accessing Enterprise Data
Dynamic SQL Queries Stefano Grazioli.
Data Warehousing Concepts
Dynamic SQL Queries Stefano Grazioli.
BI tools: Excel’s Pivot table
Operations, BI, and Analytics
Operations, BI, and Analytics
Analytics, BI & Data Integration
Implementing ETL solution for Incremental Data Load in Microsoft SQL Server Ganesh Lohani SR. Data Analyst Lockheed Martin
Presentation transcript:

© Stefano Grazioli - Ask for permission for using/quoting: Stefano Grazioli

 Doing well  Deadline moved to Friday  Easy meter

 Name, major  Learning objectives  Things you like about the class  Things that can be improved  Attitude towards the Tournament

© Stefano Grazioli - Ask for permission for using/quoting: Operations, BI & Analytics

Primary key: a unique identifier used to retrieve the record One Many manages has

manages has Bruce Wayne, Gotham, NY

Insert into Customer (c_id, f_name, l_name, city, state) values (7759, 'Bruce', 'Wayne', 'Gotham', 'NY')

manages has Bruce Wayne, Gotham, NY C_id = 7759

Insert into insurance_plan (c_id, coverage, premimum) values (7759, , 500)

manages has Bruce Wayne, Cville, VA

Update customer set city = ‘Charlottesville', state = ‘VA' where c_id = 7759

manages has Bruce Wayne, C_id 7759 L_id = 1070 $10,000,000 4% Due Dec 31 Barbara Goodhue Lo_id 16

Insert into loan (l_id, principal, rate, date_due, lo_id) Values (1070, , '12/31/2016', 16) Insert into customer_in_loan (c_id, l_id) values (7759, 1070)

 Directly related to business operations  Single customer, single contract, deal, service…  Often INSERTs  Small amount of data  Large numbers of fast, simple queries

manages has

select customer.state, sum(coverage) from customer, insurance_plan where customer.c_id = insurance_plan.c_id group by customer.state

manages has

select top 3 customer.c_id, customer.l_name, sum(loan.principal) from customer, customer_in_loan, loan where customer.c_id = customer_in_loan.c_id and customer_in_loan.l_id = loan.l_id group by customer.c_id, customer.l_name order by sum(loan.principal) desc

manages has

select customer.city, avg(loan.rate) from customer, customer_in_loan, loan where customer.c_id = customer_in_loan.c_id and customer_in_loan.l_id = loan.l_id group by customer.city order by avg(loan.rate) desc

 Relate to decision making more than business operations  Aggregate customers, contracts, deals, services…  Mostly Selects, often Joins  Larger amount of data  Small number of larger, complex queries

manages has

n/a

 Questions relate to decision making, more than business operations  SQL provides the input data, but is not sufficient  Analytics require additional software (SPSS, SAS, R, Data miner…)  More similar to BI queries than operational queries.

Transactions / Operations Real time, individual, action Business intelligence Analytics Historical, aggregate, decision Orders Customers Product s Data Warehouse Extract Clean Transform Load Query Report Analyze Visualize Technical consultants Data scientists Business consultants Data scientists Managers & Decision makers

© Stefano Grazioli - Ask for permission for using/quoting: What Is New In Technology?

© Stefano Grazioli - Ask for permission for using/quoting: Demo