Reporting in ORTEC Radu Gabriel Năstase.

Slides:



Advertisements
Similar presentations
Module 13: Performance Tuning. Overview Performance tuning methodologies Instance level Database level Application level Overview of tools and techniques.
Advertisements

1. Complete and integrated BI and Performance Management offering Complete and integrated BI and Performance Management offering Widespread delivery of.
Business Intelligence (BI) PerformancePoint in SharePoint 2010 Sayed Ali – SharePoint Administrator.
Microsoft ® System Center Configuration Manager 2007 R3 and Forefront ® Endpoint Protection Infrastructure Planning and Design Published: October 2008.
Amanda Felix BUS 550 Tuesday, May 24,  Traditional methods are not enough!  Reduce costs, improve efficiency and spur innovation!  Information.
Interoperability. Martin Sykes Information architecture programs suffer from EA's worst problem: They have a strategic and enterprisewide focus that.
Altosoft Copyright ® 2012 altosoft.com8/3/2012 Sandy Follin, Sr. Account Executive Steve Schrader, Sr. Sales Engineer.
Business Intelligence components Introduction. Microsoft® SQL Server™ 2005 is a complete business intelligence (BI) platform that provides the features,
What is Business Intelligence? Business intelligence (BI) –Range of applications, practices, and technologies for the extraction, translation, integration,
The Microsoft Office 2007 Enterprise Project Management Solution:
1.Knowledge management 2.Online analytical processing 3. 4.Supply chain management 5.Data mining Which of the following is not a major application.
SharePoint 2010 Business Intelligence Module 2: Business Intelligence.
Rodney Holman Mandip Kaur Information Builders  Company Name: Information Builders  CEO and Founder: Gerald D. Cohen  Address: Two Penn Plaza, New.
Introducing Reporting Services for SQL Server 2005.
Agenda TimeSession 9:15Microsoft Business Intelligence Overview Break 10:40Creating High Impact Data Warehouse with Integration and Analysis Services 11:55Lunch.
1 GE Fanuc ©2008 GE Fanuc Intelligent Platforms All Rights Reserved Proficy* DataMart v1.0 Barry Lynch Product Manager GE Fanuc Software Puts the “E” in.
Introduction – Addressing Business Challenges Microsoft® Business Intelligence Solutions.
CISB594 – Business Intelligence Business Performance Management.
{ Determine services to provide for customers When a business determines which services to offer its customers, it should consider: The nature of the.
Building Dashboards SharePoint and Business Intelligence.
SQL School is strongly committed to provide COMPLETE PRACTICAL REALTIME Trainings on SQL Server Technologies – Dev, SQL DBA, MSBI (SSIS, SSAS, SSRS) and.
UBN Software Solutions Pvt. Ltd. Bhubaneswar , Odisha, India ( ) UBN PROJECT CASE STUDY.
SUBLIME METRICS Group: Daniyal Ahmed M. Hashir Rizwan Rimsha Kabir JAN 2015 Supervisor: Dr. Abdul Basit Shaikh.
Intro to Power BI Azhagappan Arunachalam.  Senior Database Architect   PowerBICentral.com  (blog on getting started.
1 Enterprise Open Source Kit SharePoint PLM download available on Microsoft CodePlex
© SAP SE ZR Reporting Abstract This unit focuses on different reporting techniques as supported by the SAP software and SAP Business Intelligence. It is.
11 Copyright © 2009, Oracle. All rights reserved. Enhancing ETL Performance.
Take Your Data Analysis and Reporting to the Next Level by Combining SAS Office Analytics, SAS Visual Analytics, and SAS Studio David Bailey Tim Beese.
Comprehensive Flexible Global Storage and Search Responsive Available Secure Manageable Federation Coordination Consolidation Transformation Synchronization.
State Center Community College District May 23, 2006.
Microsoft Dynamics NAV Power BI & BI in Dynamics NAV Jonathan Davies and Christian Baek Microsoft Coporation.
SELECT, IMPLEMENT & USE TODAY’S ADVANCED BUSINESS SYSTEMS
Controlling as a Management Function
Product Overview.
ML & DB – Options for Integration
Convergence /6/2018 © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
Core Competencies Training for Supervisors
Viewing Data-Driven Success Through a Capability Lens
Leveraging the Business Intelligence Features in SharePoint 2010
Core Competencies Training for Supervisors
Operations Consulting and Reengineering
The Basics of Dashboards
Controlling as a Management Function
Cameron Blashka| Informer Implementation Specialist
Big-Data Fundamentals
Amt service corp leaders in data mining
Improve Business Satisfaction by 10% Through Business Relationship Management Relationship management is the #1 driver of business satisfaction with IT.
Creating Dashboards by using PerformancePoint 2010
What is business intelligence?
Moving the Needle Conference 2017
 Microsoft owned SQL server is an SQL based Relational DBMS which offers corporate solutions to database management. SQL Server Optimization can be a.
Business Intelligence for Project Server/Online
Microsoft SQL Server 2008 Reporting Services
ITI 257 Data Analysis with Power BI
Delivering an End-to-End Business Intelligence Solution
C.U.SHAH COLLEGE OF ENG. & TECH.
Choosing the Proper Querying Course
Analytics Plus Product Overview 1.
Enterprise Program Management Office
Reporting in ORTEC Radu Gabriel Năstase.
Business Intelligence & Analytics
MAZARS’ CONSULTING PRACTICE Helping your Business Venture Further
Analytics Plus Product Overview.
What is New in SQL Server 2016 BI Stack
KEY INITIATIVE Shared Services Optimization
MAZARS’ CONSULTING PRACTICE Helping your Business Venture Further
Overview of Databases and Salesforce Chapter 1
UML Design for an Automated Registration System
SQL Server 2016 High Performance Database Offer.
IT Next – Transformation Program
Presentation transcript:

Reporting in ORTEC Radu Gabriel Năstase

Importance of Reporting and Analytics The ability to perform sophisticated and innovative reporting and analytics is becoming critical for all organizations. Processing timely data and the proper reporting and analytic capabilities enhances the ability to make more informed, evidence-based decisions. The right reporting, analytics and information delivery strategy can have a significant impact on an organization, fundamentally changing the way people perform their jobs and how decisions are made. The benefits of a successful strategy include: Targeted delivery of data and reporting and analytics capabilities Increased productivity Employee satisfaction Improved analysis and decision-making Increased organizational communication and collaboration Reporting, analytics and information delivery can have a transformational impact on an organization if implemented correctly. However, deciding which capabilities to utilize can be a daunting task for many companies. A range of options exist, and by focusing on each of them and how they can align with business goals, organizations can increase the success of the overall business intelligence environment. 07.12.2017 Radu Gabriel Năstase

Reporting Services Architecture The following diagram shows the three-tier architecture of a Reporting Services Native mode deployment: 07.12.2017 Radu Gabriel Năstase

Reporting in ORTEC - Overview Developing reports is done using Microsoft Report Builder (SSRS), based on the COMTECdefault database structure. Standard reports offer a base point for data visualization and key insights regarding the available data. Utilizing these reports, ORTEC can develop custom reports based on specific KPIs, provided by the client. Available reports include, but are not limited to: Operational reports Chart & Graphs reports Map reports Dashboards 07.12.2017 Radu Gabriel Năstase

Optimization in SQL Server using COMTECdefault database structure

FROM What is T-SQL ? Shift s Best practices Insight Action a Id_shift Optimization Best practices Insight Shift s Action a FROM Address ad Id_shift Pickup_Address Delivery_Time

SQL Query Order of Operations FROM JOINS WHERE GROUP BY HAVING SELECT ORDER BY Interesting read: https://www.bennadel.com/blog/70-sql-query-order-of-operations.htm

Debugging query performance: SQL Profiler: Pro: Can identify query and potential bottlenecks easier. Con: Puts a strain on the Database engine if there is a lot of activity on the server. Execution Plan: Pro: Can identify a large set of potential bottlenecks; Can help to track different part of the query and view overall performance. Con: Not easy to read, does not offer hints of potential bottlenecks; Information can be misleading if not interpreted correctly.

Optimization techniques How optimizing a query feels like: What you should be doing: What really happens:

Other optimization tips: Update Statistics on tables JOIN with sub-selects of tables JOIN on indexed columns Use functions only when absolutely necessary Filter output