SlideShare une entreprise Scribd logo
1  sur  24
Intelligent Ideas. Swift Execution.
What is BI
As per Wikipidea
“The term Business Intelligence (BI) refers to technologies,
applications and practices for the collection, integration, analysis,
and presentation of business information. The purpose
of Business Intelligence is to support better business decision
making.”
Intelligent Ideas. Swift Execution.
Why BI
• What happened?
• What is happening?
• Why did it happen?
• What will happen?
• What do I want to happen?
Past
Present
Future
Intelligent Ideas. Swift Execution.
Significance of BI
• Companies need to have accurate, up-to-date information on
customer preferences , that company can quickly adapt to
their changing demands
• BI applications can also help managers to be better informed
about actions that a company’s competitors are taking
• It help analysts and managers to determine which
adjustments are mostly likely to respond to changing trends
• IT can help companies develop a more consistent, data-based
decision, which can produce better results than making
business decisions by “guesswork”
Intelligent Ideas. Swift Execution.
Inmon approach/ Top Down
Intelligent Ideas. Swift Execution.
What is BI
a) ETL stands for Extract, transformation and Load
b) Pulling data out of the source systems and placing it into a data warehouse
Extract : The Extract step covers the data extraction from the source system (SAP, ERP
and other operational systems) and makes it accessible for further processing.
The most well known commercial tools are Ab Initio, IBM InfoSphere
DataStage, Informatica, Oracle Data Integrator and SAP Data Integrator.
Intelligent Ideas. Swift Execution.
What is BI
Transform
The transform step applies a set of rules to transform the data from the source to the
target.
• Applying business rules (e.g., calculating new measures and dimensions),
• Cleansing (e.g., mapping NULL to 0 or "Male" to "M" and "Female" to "F" etc.),
• Filtering (e.g., selecting only certain columns to load),
• Splitting a column into multiple columns and vice versa,
• Joining together data from multiple sources (e.g., lookup, merge),
• Transposing rows and columns,
• Applying any kind of simple or complex data validation (e.g., if the first 3 columns in
a row are empty then reject the row from processing)
Intelligent Ideas. Swift Execution.
What is BI
Load
Loading the data into the data warehouse.
a) Load is performed correctly and with as little resources as possible.
b) In order to make the load process efficient, it is helpful to disable any constraints
and indexes before the load and enable them back only after the load completes.
c) The referential integrity needs to be maintained by ETL tool to ensure consistency.
BUSINESS INTELLIGENCE AND VISUALISATION TOOLS
BI (ETL Tools)
•INFORMATICA
•SSDT (Sql Server Data Tools)
•BODS
DATA
WAREHOUSING
•SSAS (Sql Server Analysis Tools)
•SAP BW
•SAP HANA
•TERA DATA
•ORACLE
VISUALIZATION
TOOLS
•SSRS (SQL Server Reporting Tools)
•XCELISUS
•QLIKVIEW
•TABLEAU
•DESIGN STUDIO
•SAP LUMIRA
REPORTING
TOOLS
•BEX QUERY DESIGNER/Analyzer
•WEB INTELLIGENCE
•CRYSTAL REPORT
Intelligent Ideas. Swift Execution.
Overview of Datawarehousing
• The term "Data Warehouse" was first coined by Bill Inmon in 1990.
• “A data warehouse is a subject-oriented, integrated, time-variant, and
non-volatile collection of data. “
• Subject Oriented WH is organized around major subjects like Finance,
Marketing, Sales
• Integrated Presents unified view of data coming from various sources
like SAP, legacy systems
• Non-Volatile New data is added on an incremental basis and not as
replacement.
• Time Variant Data is accurate only for the some point of time and will
change for Daily, Weekly, Monthly
Intelligent Ideas. Swift Execution.
Difference Between OLAP and OLTP
Data warehouse (OLAP) OLTP
Historical processing of information Day to Day processing of transactions
Used by Executives, Managers and Analysts Used by clerks, DBAs or database professionals.
Used to analyze the business Used to run the business
Focuses on information out Focuses on Data in
Based on Star Schema, snowflake and Fact constellation Based on Entity Relationship Model
Provides multidimensional view of summarized and
consolidated data
Provides relational view of highly detailed data
No of records accessed are in millions. No of records accessed are in tens or hundreds
Database size is 100GB to 100TB Database size is 100MB to 100GB.
Intelligent Ideas. Swift Execution.
Terminologies in Datawarehousing
Terminologies
Data Cube: A data cube helps us represent data in multiple dimensions. It is defined by
dimensions and facts.
Intelligent Ideas. Swift Execution.
Terminologies in Data-warehousing
Terminologies
Data Mart : A subset of organisation wide data that is specific to a group of people
within the organisation.
• Data Marts are smaller in size.
• Data marts are customized for a
department.
• Data marts are flexible.
• Source of datamarts is
departmentaly structured DW.
• Implementation generally takes
weeks rather than months or
years.
Intelligent Ideas. Swift Execution.
Datawarehouse Architecture
Architecure of a typical Data warehouse
Operational
data source1
Query Manager
Warehouse Manager
DBMS
Operational
data source 2
Meta-data High
summarized data
Detailed data
Lightly
summarized
data
Operational
data store (ods)
Operational
data source n
Archive/backup
data
Load
Manager
Data mining
OLAP(online analytical processing) tools
Reporting, query,application development,
and EIS(executive information system) tools
End-user access tools
Operational data store (ODS)
Intelligent Ideas. Swift Execution.
Datawarehouse Architecture
Components of Data warehouse
• Query Manager
• Detailed and summarized data
• Archive/backup data
• End user access tools
Process flow in Data warehouse
• Extract and load data
• Cleaning and transformation of data
• Backup and archive data
• Managing queries
Intelligent Ideas. Swift Execution.
Relational v/s Dimensional Modelling
Relational Modelling Dimensional Modelling
Entity Relationship (ER) Model Facts and Dimensions, Star Schema
Normalization rules Less tables, but have duplicate/redundant data
Many tables using joins Easier for business user to understand
History tables using natural keys Slowly changing dimensions, surrogate keys
Good for indirect end-user access of data Good for end-user access of data
Intelligent Ideas. Swift Execution.
Kimball approach / Bottom Up
Intelligent Ideas. Swift Execution.
Inmon approach/ Top Down
Intelligent Ideas. Swift Execution.
Facts and Dimensions
Facts Dimensions
Business facts (or measures), generally numeric Data set composed of individual, non-overlapping data
elements
It can be aggregated Commonly used dimensions are date, customer,
product
Examples are Sales price, quantity, revenue Customer dimension attributes may be first name, last
name, birth data, gender
Fact table contains keys to dimensional table as well as
measurable facts
Contains a hierarchy of attributes
They can grow very large in millions and billions Date Dimension : year > quarter > month > week > date
Going up a level in the hierarchy called rolling of data
Going down a hierarchy called drilling down
Intelligent Ideas. Swift Execution.
Facts and Dimensions
Dimensions
Intelligent Ideas. Swift Execution.
Different Kinds of schema
• Star Schema
• Snowflake Schema
• Fact Constellation Schema
Intelligent Ideas. Swift Execution.
Star schema
Star Schema
• One fact table and multiple dimensional
tables.
• Results can be retrieved easily.
• Dimension table holds descriptive data.
reflecting dimensions or attributes.
• A fact table in the middle surrounded by
dimension tables.
Intelligent Ideas. Swift Execution.
Snowflake Schema
Snowflake Schema
• A refinement of star schema
• Some dimensional hierarchy is
normalized into a set of smaller
dimensional table.
• Connects entities to dimensional
table rather than to fact tables.
Intelligent Ideas. Swift Execution.
Fact Constellation
Fact Constellation
• Multiple fact tables share
dimensional tables
Intelligent Ideas. Swift Execution.
Top BI /DI trends in US Market

Contenu connexe

Tendances

Splunk Business Analytics
Splunk Business AnalyticsSplunk Business Analytics
Splunk Business AnalyticsCleverDATA
 
Building enterprise advance analytics platform
Building enterprise advance analytics platformBuilding enterprise advance analytics platform
Building enterprise advance analytics platformHaoran Du
 
Benefits of a data warehouse presentation by Being topper
Benefits of a data warehouse presentation by Being topperBenefits of a data warehouse presentation by Being topper
Benefits of a data warehouse presentation by Being topperBeing Topper
 
DATA MART APPROCHES TO ARCHITECTURE
DATA MART APPROCHES TO ARCHITECTUREDATA MART APPROCHES TO ARCHITECTURE
DATA MART APPROCHES TO ARCHITECTURESachin Batham
 
An introduction to data warehousing
An introduction to data warehousingAn introduction to data warehousing
An introduction to data warehousingShahed Khalili
 
Data-Ed Online Presents: Data Warehouse Strategies
Data-Ed Online Presents: Data Warehouse StrategiesData-Ed Online Presents: Data Warehouse Strategies
Data-Ed Online Presents: Data Warehouse StrategiesDATAVERSITY
 
What are actionable insights? (Introduction to Operational Analytics Software)
What are actionable insights? (Introduction to Operational Analytics Software)What are actionable insights? (Introduction to Operational Analytics Software)
What are actionable insights? (Introduction to Operational Analytics Software)Newton Day Uploads
 
Data mining techniques unit 1
Data mining techniques  unit 1Data mining techniques  unit 1
Data mining techniques unit 1malathieswaran29
 
Data Warehouse
Data WarehouseData Warehouse
Data WarehouseSana Alvi
 
Gulabs Ppt On Data Warehousing And Mining
Gulabs Ppt On Data Warehousing And MiningGulabs Ppt On Data Warehousing And Mining
Gulabs Ppt On Data Warehousing And Mininggulab sharma
 
Predictive Analytics - Big Data Warehousing Meetup
Predictive Analytics - Big Data Warehousing MeetupPredictive Analytics - Big Data Warehousing Meetup
Predictive Analytics - Big Data Warehousing MeetupCaserta
 
Warehouse components
Warehouse componentsWarehouse components
Warehouse componentsganblues
 
Big data, Analytics and 4th Generation Data Warehousing
Big data, Analytics and 4th Generation Data WarehousingBig data, Analytics and 4th Generation Data Warehousing
Big data, Analytics and 4th Generation Data WarehousingMartyn Richard Jones
 
Data warehouse architecture
Data warehouse architectureData warehouse architecture
Data warehouse architecturepcherukumalla
 
Creating an Enterprise AI Strategy
Creating an Enterprise AI StrategyCreating an Enterprise AI Strategy
Creating an Enterprise AI StrategyAtScale
 
Making Big Data Easy for Everyone
Making Big Data Easy for EveryoneMaking Big Data Easy for Everyone
Making Big Data Easy for EveryoneCaserta
 
Business analytics
Business analyticsBusiness analytics
Business analyticsDinakar nk
 

Tendances (20)

Splunk Business Analytics
Splunk Business AnalyticsSplunk Business Analytics
Splunk Business Analytics
 
Building enterprise advance analytics platform
Building enterprise advance analytics platformBuilding enterprise advance analytics platform
Building enterprise advance analytics platform
 
Benefits of a data warehouse presentation by Being topper
Benefits of a data warehouse presentation by Being topperBenefits of a data warehouse presentation by Being topper
Benefits of a data warehouse presentation by Being topper
 
Spring 2017 Sage 300 (Accpac) Users Group
Spring 2017 Sage 300 (Accpac) Users GroupSpring 2017 Sage 300 (Accpac) Users Group
Spring 2017 Sage 300 (Accpac) Users Group
 
DATA MART APPROCHES TO ARCHITECTURE
DATA MART APPROCHES TO ARCHITECTUREDATA MART APPROCHES TO ARCHITECTURE
DATA MART APPROCHES TO ARCHITECTURE
 
An introduction to data warehousing
An introduction to data warehousingAn introduction to data warehousing
An introduction to data warehousing
 
Data-Ed Online Presents: Data Warehouse Strategies
Data-Ed Online Presents: Data Warehouse StrategiesData-Ed Online Presents: Data Warehouse Strategies
Data-Ed Online Presents: Data Warehouse Strategies
 
What are actionable insights? (Introduction to Operational Analytics Software)
What are actionable insights? (Introduction to Operational Analytics Software)What are actionable insights? (Introduction to Operational Analytics Software)
What are actionable insights? (Introduction to Operational Analytics Software)
 
Data mining techniques unit 1
Data mining techniques  unit 1Data mining techniques  unit 1
Data mining techniques unit 1
 
Data Warehouse
Data WarehouseData Warehouse
Data Warehouse
 
Gulabs Ppt On Data Warehousing And Mining
Gulabs Ppt On Data Warehousing And MiningGulabs Ppt On Data Warehousing And Mining
Gulabs Ppt On Data Warehousing And Mining
 
Data Mining
Data MiningData Mining
Data Mining
 
Predictive Analytics - Big Data Warehousing Meetup
Predictive Analytics - Big Data Warehousing MeetupPredictive Analytics - Big Data Warehousing Meetup
Predictive Analytics - Big Data Warehousing Meetup
 
Warehouse components
Warehouse componentsWarehouse components
Warehouse components
 
Big data, Analytics and 4th Generation Data Warehousing
Big data, Analytics and 4th Generation Data WarehousingBig data, Analytics and 4th Generation Data Warehousing
Big data, Analytics and 4th Generation Data Warehousing
 
Data warehouse architecture
Data warehouse architectureData warehouse architecture
Data warehouse architecture
 
Creating an Enterprise AI Strategy
Creating an Enterprise AI StrategyCreating an Enterprise AI Strategy
Creating an Enterprise AI Strategy
 
Making Big Data Easy for Everyone
Making Big Data Easy for EveryoneMaking Big Data Easy for Everyone
Making Big Data Easy for Everyone
 
Big data
Big dataBig data
Big data
 
Business analytics
Business analyticsBusiness analytics
Business analytics
 

Similaire à Bi overview

What Data Do You Have and Where is It?
What Data Do You Have and Where is It? What Data Do You Have and Where is It?
What Data Do You Have and Where is It? Caserta
 
Big Data: Setting Up the Big Data Lake
Big Data: Setting Up the Big Data LakeBig Data: Setting Up the Big Data Lake
Big Data: Setting Up the Big Data LakeCaserta
 
Levelling up your data infrastructure
Levelling up your data infrastructureLevelling up your data infrastructure
Levelling up your data infrastructureSimon Belak
 
Introduction to Big Data Analytics
Introduction to Big Data AnalyticsIntroduction to Big Data Analytics
Introduction to Big Data AnalyticsUtkarsh Sharma
 
Incorporating the Data Lake into Your Analytic Architecture
Incorporating the Data Lake into Your Analytic ArchitectureIncorporating the Data Lake into Your Analytic Architecture
Incorporating the Data Lake into Your Analytic ArchitectureCaserta
 
Balancing Data Governance and Innovation
Balancing Data Governance and InnovationBalancing Data Governance and Innovation
Balancing Data Governance and InnovationCaserta
 
Analyzing Billions of Data Rows with Alteryx, Amazon Redshift, and Tableau
Analyzing Billions of Data Rows with Alteryx, Amazon Redshift, and TableauAnalyzing Billions of Data Rows with Alteryx, Amazon Redshift, and Tableau
Analyzing Billions of Data Rows with Alteryx, Amazon Redshift, and TableauDATAVERSITY
 
Setting Up the Data Lake
Setting Up the Data LakeSetting Up the Data Lake
Setting Up the Data LakeCaserta
 
Big Data's Impact on the Enterprise
Big Data's Impact on the EnterpriseBig Data's Impact on the Enterprise
Big Data's Impact on the EnterpriseCaserta
 
Business Intelligence Data Warehouse System
Business Intelligence Data Warehouse SystemBusiness Intelligence Data Warehouse System
Business Intelligence Data Warehouse SystemKiran kumar
 
Datawarehousing
DatawarehousingDatawarehousing
Datawarehousingwork
 
Business intelligence techniques U2.pptx
Business intelligence techniques U2.pptxBusiness intelligence techniques U2.pptx
Business intelligence techniques U2.pptxRenuLamba8
 
Architecting for Big Data: Trends, Tips, and Deployment Options
Architecting for Big Data: Trends, Tips, and Deployment OptionsArchitecting for Big Data: Trends, Tips, and Deployment Options
Architecting for Big Data: Trends, Tips, and Deployment OptionsCaserta
 
Intro to Data Science on Hadoop
Intro to Data Science on HadoopIntro to Data Science on Hadoop
Intro to Data Science on HadoopCaserta
 
Marketing Analytics
Marketing AnalyticsMarketing Analytics
Marketing Analyticsisabat1
 

Similaire à Bi overview (20)

Datawarehouse
DatawarehouseDatawarehouse
Datawarehouse
 
What Data Do You Have and Where is It?
What Data Do You Have and Where is It? What Data Do You Have and Where is It?
What Data Do You Have and Where is It?
 
Big Data: Setting Up the Big Data Lake
Big Data: Setting Up the Big Data LakeBig Data: Setting Up the Big Data Lake
Big Data: Setting Up the Big Data Lake
 
Levelling up your data infrastructure
Levelling up your data infrastructureLevelling up your data infrastructure
Levelling up your data infrastructure
 
Introduction to Big Data Analytics
Introduction to Big Data AnalyticsIntroduction to Big Data Analytics
Introduction to Big Data Analytics
 
Incorporating the Data Lake into Your Analytic Architecture
Incorporating the Data Lake into Your Analytic ArchitectureIncorporating the Data Lake into Your Analytic Architecture
Incorporating the Data Lake into Your Analytic Architecture
 
Balancing Data Governance and Innovation
Balancing Data Governance and InnovationBalancing Data Governance and Innovation
Balancing Data Governance and Innovation
 
Date Analysis .pdf
Date Analysis .pdfDate Analysis .pdf
Date Analysis .pdf
 
Business analysis
Business analysisBusiness analysis
Business analysis
 
Analyzing Billions of Data Rows with Alteryx, Amazon Redshift, and Tableau
Analyzing Billions of Data Rows with Alteryx, Amazon Redshift, and TableauAnalyzing Billions of Data Rows with Alteryx, Amazon Redshift, and Tableau
Analyzing Billions of Data Rows with Alteryx, Amazon Redshift, and Tableau
 
Setting Up the Data Lake
Setting Up the Data LakeSetting Up the Data Lake
Setting Up the Data Lake
 
Complete unit ii notes
Complete unit ii notesComplete unit ii notes
Complete unit ii notes
 
Big Data's Impact on the Enterprise
Big Data's Impact on the EnterpriseBig Data's Impact on the Enterprise
Big Data's Impact on the Enterprise
 
Business Intelligence Data Warehouse System
Business Intelligence Data Warehouse SystemBusiness Intelligence Data Warehouse System
Business Intelligence Data Warehouse System
 
Datawarehousing
DatawarehousingDatawarehousing
Datawarehousing
 
Business intelligence techniques U2.pptx
Business intelligence techniques U2.pptxBusiness intelligence techniques U2.pptx
Business intelligence techniques U2.pptx
 
Architecting for Big Data: Trends, Tips, and Deployment Options
Architecting for Big Data: Trends, Tips, and Deployment OptionsArchitecting for Big Data: Trends, Tips, and Deployment Options
Architecting for Big Data: Trends, Tips, and Deployment Options
 
Data warehousing
Data warehousingData warehousing
Data warehousing
 
Intro to Data Science on Hadoop
Intro to Data Science on HadoopIntro to Data Science on Hadoop
Intro to Data Science on Hadoop
 
Marketing Analytics
Marketing AnalyticsMarketing Analytics
Marketing Analytics
 

Dernier

BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxolyaivanovalion
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz1
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Valters Lauzums
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...amitlee9823
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxolyaivanovalion
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceDelhi Call girls
 
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxBPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxMohammedJunaid861692
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
 
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...shivangimorya083
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfadriantubila
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxolyaivanovalion
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAroojKhan71
 

Dernier (20)

BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptx
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptx
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
 
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxBPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in  KishangarhDelhi 99530 vip 56974 Genuine Escort Service Call Girls in  Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 

Bi overview

  • 1. Intelligent Ideas. Swift Execution. What is BI As per Wikipidea “The term Business Intelligence (BI) refers to technologies, applications and practices for the collection, integration, analysis, and presentation of business information. The purpose of Business Intelligence is to support better business decision making.”
  • 2. Intelligent Ideas. Swift Execution. Why BI • What happened? • What is happening? • Why did it happen? • What will happen? • What do I want to happen? Past Present Future
  • 3. Intelligent Ideas. Swift Execution. Significance of BI • Companies need to have accurate, up-to-date information on customer preferences , that company can quickly adapt to their changing demands • BI applications can also help managers to be better informed about actions that a company’s competitors are taking • It help analysts and managers to determine which adjustments are mostly likely to respond to changing trends • IT can help companies develop a more consistent, data-based decision, which can produce better results than making business decisions by “guesswork”
  • 4. Intelligent Ideas. Swift Execution. Inmon approach/ Top Down
  • 5. Intelligent Ideas. Swift Execution. What is BI a) ETL stands for Extract, transformation and Load b) Pulling data out of the source systems and placing it into a data warehouse Extract : The Extract step covers the data extraction from the source system (SAP, ERP and other operational systems) and makes it accessible for further processing. The most well known commercial tools are Ab Initio, IBM InfoSphere DataStage, Informatica, Oracle Data Integrator and SAP Data Integrator.
  • 6. Intelligent Ideas. Swift Execution. What is BI Transform The transform step applies a set of rules to transform the data from the source to the target. • Applying business rules (e.g., calculating new measures and dimensions), • Cleansing (e.g., mapping NULL to 0 or "Male" to "M" and "Female" to "F" etc.), • Filtering (e.g., selecting only certain columns to load), • Splitting a column into multiple columns and vice versa, • Joining together data from multiple sources (e.g., lookup, merge), • Transposing rows and columns, • Applying any kind of simple or complex data validation (e.g., if the first 3 columns in a row are empty then reject the row from processing)
  • 7. Intelligent Ideas. Swift Execution. What is BI Load Loading the data into the data warehouse. a) Load is performed correctly and with as little resources as possible. b) In order to make the load process efficient, it is helpful to disable any constraints and indexes before the load and enable them back only after the load completes. c) The referential integrity needs to be maintained by ETL tool to ensure consistency.
  • 8. BUSINESS INTELLIGENCE AND VISUALISATION TOOLS BI (ETL Tools) •INFORMATICA •SSDT (Sql Server Data Tools) •BODS DATA WAREHOUSING •SSAS (Sql Server Analysis Tools) •SAP BW •SAP HANA •TERA DATA •ORACLE VISUALIZATION TOOLS •SSRS (SQL Server Reporting Tools) •XCELISUS •QLIKVIEW •TABLEAU •DESIGN STUDIO •SAP LUMIRA REPORTING TOOLS •BEX QUERY DESIGNER/Analyzer •WEB INTELLIGENCE •CRYSTAL REPORT
  • 9. Intelligent Ideas. Swift Execution. Overview of Datawarehousing • The term "Data Warehouse" was first coined by Bill Inmon in 1990. • “A data warehouse is a subject-oriented, integrated, time-variant, and non-volatile collection of data. “ • Subject Oriented WH is organized around major subjects like Finance, Marketing, Sales • Integrated Presents unified view of data coming from various sources like SAP, legacy systems • Non-Volatile New data is added on an incremental basis and not as replacement. • Time Variant Data is accurate only for the some point of time and will change for Daily, Weekly, Monthly
  • 10. Intelligent Ideas. Swift Execution. Difference Between OLAP and OLTP Data warehouse (OLAP) OLTP Historical processing of information Day to Day processing of transactions Used by Executives, Managers and Analysts Used by clerks, DBAs or database professionals. Used to analyze the business Used to run the business Focuses on information out Focuses on Data in Based on Star Schema, snowflake and Fact constellation Based on Entity Relationship Model Provides multidimensional view of summarized and consolidated data Provides relational view of highly detailed data No of records accessed are in millions. No of records accessed are in tens or hundreds Database size is 100GB to 100TB Database size is 100MB to 100GB.
  • 11. Intelligent Ideas. Swift Execution. Terminologies in Datawarehousing Terminologies Data Cube: A data cube helps us represent data in multiple dimensions. It is defined by dimensions and facts.
  • 12. Intelligent Ideas. Swift Execution. Terminologies in Data-warehousing Terminologies Data Mart : A subset of organisation wide data that is specific to a group of people within the organisation. • Data Marts are smaller in size. • Data marts are customized for a department. • Data marts are flexible. • Source of datamarts is departmentaly structured DW. • Implementation generally takes weeks rather than months or years.
  • 13. Intelligent Ideas. Swift Execution. Datawarehouse Architecture Architecure of a typical Data warehouse Operational data source1 Query Manager Warehouse Manager DBMS Operational data source 2 Meta-data High summarized data Detailed data Lightly summarized data Operational data store (ods) Operational data source n Archive/backup data Load Manager Data mining OLAP(online analytical processing) tools Reporting, query,application development, and EIS(executive information system) tools End-user access tools Operational data store (ODS)
  • 14. Intelligent Ideas. Swift Execution. Datawarehouse Architecture Components of Data warehouse • Query Manager • Detailed and summarized data • Archive/backup data • End user access tools Process flow in Data warehouse • Extract and load data • Cleaning and transformation of data • Backup and archive data • Managing queries
  • 15. Intelligent Ideas. Swift Execution. Relational v/s Dimensional Modelling Relational Modelling Dimensional Modelling Entity Relationship (ER) Model Facts and Dimensions, Star Schema Normalization rules Less tables, but have duplicate/redundant data Many tables using joins Easier for business user to understand History tables using natural keys Slowly changing dimensions, surrogate keys Good for indirect end-user access of data Good for end-user access of data
  • 16. Intelligent Ideas. Swift Execution. Kimball approach / Bottom Up
  • 17. Intelligent Ideas. Swift Execution. Inmon approach/ Top Down
  • 18. Intelligent Ideas. Swift Execution. Facts and Dimensions Facts Dimensions Business facts (or measures), generally numeric Data set composed of individual, non-overlapping data elements It can be aggregated Commonly used dimensions are date, customer, product Examples are Sales price, quantity, revenue Customer dimension attributes may be first name, last name, birth data, gender Fact table contains keys to dimensional table as well as measurable facts Contains a hierarchy of attributes They can grow very large in millions and billions Date Dimension : year > quarter > month > week > date Going up a level in the hierarchy called rolling of data Going down a hierarchy called drilling down
  • 19. Intelligent Ideas. Swift Execution. Facts and Dimensions Dimensions
  • 20. Intelligent Ideas. Swift Execution. Different Kinds of schema • Star Schema • Snowflake Schema • Fact Constellation Schema
  • 21. Intelligent Ideas. Swift Execution. Star schema Star Schema • One fact table and multiple dimensional tables. • Results can be retrieved easily. • Dimension table holds descriptive data. reflecting dimensions or attributes. • A fact table in the middle surrounded by dimension tables.
  • 22. Intelligent Ideas. Swift Execution. Snowflake Schema Snowflake Schema • A refinement of star schema • Some dimensional hierarchy is normalized into a set of smaller dimensional table. • Connects entities to dimensional table rather than to fact tables.
  • 23. Intelligent Ideas. Swift Execution. Fact Constellation Fact Constellation • Multiple fact tables share dimensional tables
  • 24. Intelligent Ideas. Swift Execution. Top BI /DI trends in US Market

Notes de l'éditeur

  1. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  2. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  3. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  4. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  5. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  6. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  7. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  8. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  9. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  10. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  11. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  12. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  13. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  14. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  15. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  16. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  17. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  18. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  19. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  20. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  21. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos
  22. Moved “Second largest private IT Co ……….. Top 10 fastest growing companies” to the bottom. Rephrased: Industry Expertise – Retail, Hi-Tech, BFSI, Healthcare, Manufacturing, Telecom, Travel, Hospitality, Media & Education Centers of Excellence – Enterprise Applications, Mobility/Collaboration, Big Data/BI, Staffing Services & Cloud Solutions Regrouping the Logos