SlideShare a Scribd company logo
SQL Server Reporting Services Dot Net Team-TDG-Injazat Ahmed Elbaz
Agenda Introducing Reporting Reporting Platform Reporting Life Cycle Reporting Services Architecture SharePoint Integrated Mode Installing Reporting Services Configuring Reporting Services  Report Builder 2.0 Report Designer
Introducing Reporting A report is a structured arrangement of information. The report information comes from data in a business application. The report information can be derived from a variety of sources. Reports were available only as part of the business applications.
Introducing Reporting (cont’d) Preprogrammed reports rarely answered all the questions that business users needed answered. Report-generation tools with the applications. Deliver reports to a large number of users, expensive, complex to implement and manage, and difficult to integrate into custom applications and technical infrastructures.
A Reporting Platform SSRS was introduced in 2004 as an additional component of Microsoft SQL Server 2000. SSRS is a platform of technologies rather than a single application. SSRS is an integrated set of applications. Report development, management, and viewing. Different roles and skill sets to work with some aspect of Reporting Services. A report developer, IT administrator, or business user.
One of the primary reasons that organizationsimplement Reporting Services is to provide managed reports to a large number of internal users
SSRS Report Types Managed Report: detailed operational data. gathered from a variety of data sources. organized into a central repository. Standard formatting. Ad hoc Report: Report Builder. users with limited technical skills. simple reports saved privately or shared. Embedded Report: portals or custom applications.
ReportingLifeCycle The report from creation to delivery. SSRS supports 3 phases of the reporting life cycle: report development. management of the report server. report access by user Rendering: reproduce a report in a variety of formats.
ReportDevelopment Selecting data for the report from variety of data sources. Organizing the report layout and formatting. Interactive features: Sorting, parameters, hide/ show details, links and document map. Preview the report for testing. Deploy managed reports to the report server or to a Microsoft Office SharePoint Server 2007 Web site. Store  ad hoc reports on your computer, or deploy it to the report server or a SharePoint site.
ReportAdministration manage the technical environment for the reporting platform. configure the report server:  change the data source connection information optionally integrate the report server with SharePoint. fine-tune the report server performance. manage the location, security, and execution properties of reports: cache the report for faster viewing. multiple snapshots of a report. place the related reports in a folder. apply security to the report or the folder.
ReportAccess The most common way to use a browser and navigate to a central report repository. Portal application with links to guide users to reports in Reporting Services. Corporate applications/embedded reports. Store a selection of reports in a personal folder. Subscription to a report to receive it on a scheduled basis in an e-mail inbox, a network file share, or a SharePoint document library. A report rendered in HTML, PDF, TIFF, CSV or  XML.
ReportingServicesArchitecture A variety of components, extensions, and application programming interfaces (APIs) . A multi-tier architecture with data, application, and server tiers.  Modular nature of the architecture and Flexibility: distribute components across multiple servers for scalability. Native mode (the default configuration): a stand-alone application server, Integrated mode, a SharePoint farm.
SSRS Architecture (cont’d)
SSRS Architecture (cont’d)DataTier consists of a pair of databases: The ReportServer database is the primary database for permanent storage of reports, report models, and other data related to the management of the report server.  The ReportServerTempDB database stores session cache information and cached instances of reports. In a scale-out deployment of Reporting Services across multiple report servers, these two databases in the data tier are the only requirements.  These databases do not need to be on the same server as the report server.
SSRSArchitecture (cont’d) Application Tier Collection of tools that you use to develop reports and manage the reporting platform. Report Development Tools: Report Designer: full features, a project template available in SQL Server BI Dev Studio. Report Builder: ad hoc report, Report Builder 1.0 and Report Builder 2.0. Report Builder was first available in Reporting Services 2005. Using Report Builder 1.0, you can build a simple report that displays data from a single data source as defined by a report model.  Report Builder 2.0 is new in Reporting Services 2008 . Model Designer: in BI Dev Studio to develop and publish a report model. SQL Server, Oracle, and Teradata databases. Programmatic Interface for Report Development: APIs that allow you to build a custom report development tool.  Report Definition Language (RDL).
SSRSArchitecture (cont’d) Report Viewers Report Manager: native mode, Web application. page through a large report, search, zoom in or out to resize a report, render a report to a new format, print the report, and change report parameters. SharePoint: Integrated mode.  open the report in document library or in a Web Part. search, zoom, render, print, and select parameters. Programmatic Interface for Viewing or Delivering Reports: custom application by using the Reporting Services API or by accessing reports using URL endpoints. extend standard functionality by customizing security, data processing, rendering, or delivery options. you cannot use both tools in the same instance.
				SSRS Architecture (cont’d) ManagementTools Reporting Services Configuration Manager: configure a local or remote Reporting Services installation.  assign service accounts for running the service and for processing reports for schedule operations.  configure the URLs to be used by the Reporting Service application. create the report server databases to host the application data. convert a report server to native mode or integrated mode.  configure e-mail delivery of reports,. connect a report server to a scale-out deployment.  SQL Server Management Studio: the management interface for many of the server components in SQL Server.  manage the report server.
				SSRS Architecture (cont’d) ManagementTools (cont’d) SQL Server Configuration Manager: start or stop the report server Windows service. Report Manager: native mode . Organize, configure and secure reports. report model management  and subscription management. Note : in SharePoint integrated mode, you perform these same tasks using the SharePoint interface. Programmatic Interface for Management a custom application using the Reporting Services API.
Demo SQL Server Configuration Manager.
SSRSArchitecture (cont’d) Server Tier The central layer of the Reporting Services architecture. Processor Components, respond to and process requests to the report server. Server Extensions, subcomponents delegate very specific functions. These components are implemented as a Windows service. Processor Components: Report Processor, receives all requests that require execution and rendering of reports. Scheduling and Delivery Processor, receives all requests for scheduled events such as snapshots and subscriptions.
SSRS Architecture (cont’d) Server Tier (cont’d) Report Processor: An on-demand report, calls a data processing extension to execute the report queries and then merges the query results into a temporary format. A cached report, stored in the ReportServerTempDB database in the temporary format. A report snapshot, stored in the ReportServer database in the temporary format. Rendering Extension. Scheduling and Delivery Processor: A user creates a snapshot or subscription schedule for a report. The Scheduling and Delivery Processor creates a SQL Server Agent job. When the job executes, SQL Server Agent sends a request to the Scheduling and Delivery Processor. The Scheduling and Delivery Processor forwards the request to the Report Processor to execute and render the report. The Report Processor returns the finished report to the Scheduling and Delivery Processor. the Scheduling and Delivery Processor calls a delivery extension to e-mail the report or store it on a network share.
					SSRS Architecture (cont’d) ServerExtensions The processor components that perform very specific tasks.  Modular approach, disable an extension or add your own extension.  SSRS includes 5 types of server extensions:  authentication, data processing, report processing, rendering, and delivery. Authentication Extension: By default, Windows authentication. only one active authentication extension per report server instance. custom security extension. Data Processing Extension: connects to a data source, executes a query and returns the query results. SSRS includes data processing extensions for:  SQL Server, Analysis Services, Hyperion Essbase, Oracle, SAP Netweaver Business Intelligence, Teradata, Object Linking and Embedding Database (OLE DB), and Open Database Connectivity (ODBC).
					SSRS Architecture (cont’d) ServerExtensions (cont’d) Report Processing Extension: an optional component used to process custom report items from third-party vendors. For example, you can obtain charting or mapping add-ins to enhance your reports. Rendering Extension: Convert a report in temporary format into a finished format for the user. The rendering extensions include: HTML, Excel, CSV, XML, Image, PDF, and Microsoft Office Word. Develop your own rendering extension.
Delivery Extension: handle scheduled report requests. The e-mail delivery extension: the report embedded in the report body, attached as a file, or referenced as a URL link to the report on a report server. The file share delivery extension: saves a report in a specified format to a network share. The null delivery provider: a mechanism for caching a report in advance. Custom delivery extension: a fax device or printer, or to another application. 					SSRS Architecture (cont’d) ServerExtensions (cont’d)
InstallingReportingServices SSRS is one of the features included in SQL Server. All editions except SQL Server 2008 Express and SQL Server Compact.  Each edition supports a different set of features to meet specific scalability, performance, and pricing requirements.  SQL Server 2008 Express with Advanced Services. SQL Server 2008 Web. SQL Server 2008 Workgroup. SQL Server 2008 Standard. SQL Server 2008 Enterprise. SQL Server 2008 Developer. SQL Server 2008 Evaluation.
Notes about Modes You cannot migrate any reports that you have previously published to the report server, so you must keep a copy of the report definitions to publish again after switching the report server to a different mode.
Notes about Modes (cont’d) You can use a SQL Server 2000 or SQL Server 2005 database for Reporting Services in native mode, you must use a SQL Server 2008 database if you plan to run Reporting Services in SharePoint integrated mode.
Notes about Modes (cont’d) You can still use a native-mode report server with SharePoint by using SharePoint WebParts in a partial integration mode
Demo Report Builder 2.0
Demo Report Manager.
ReportDesigner Multiple reports. The report server project used as a container of reports. Shared data source. Data regions: Tables. Matrixes. Lists. Charts.
Demo Report Designer.

More Related Content

What's hot

SSIS Presentation
SSIS PresentationSSIS Presentation
SSIS Presentation
BarbaraBederman
 
Microsoft Data Platform - What's included
Microsoft Data Platform - What's includedMicrosoft Data Platform - What's included
Microsoft Data Platform - What's included
James Serra
 
Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...
Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...
Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...
Vishal Pawar
 
ssis lab
ssis labssis lab
ssis lab
rasheedam
 
Architecture of integration services
Architecture of integration servicesArchitecture of integration services
Architecture of integration services
Slava Kokaev
 
Achieving Lakehouse Models with Spark 3.0
Achieving Lakehouse Models with Spark 3.0Achieving Lakehouse Models with Spark 3.0
Achieving Lakehouse Models with Spark 3.0
Databricks
 
Sql server basics
Sql server basicsSql server basics
Sql server basics
VishalJharwade
 
MS SQL SERVER: SSIS and data mining
MS SQL SERVER: SSIS and data miningMS SQL SERVER: SSIS and data mining
MS SQL SERVER: SSIS and data mining
DataminingTools Inc
 
Dimensional modeling in oracle sql developer
Dimensional modeling in oracle sql developerDimensional modeling in oracle sql developer
Dimensional modeling in oracle sql developer
Jeff Smith
 
Introduction to snowflake
Introduction to snowflakeIntroduction to snowflake
Introduction to snowflake
Sunil Gurav
 
Azure data factory
Azure data factoryAzure data factory
Azure data factory
BizTalk360
 
SSIS control flow
SSIS control flowSSIS control flow
SSIS control flow
Slava Kokaev
 
Building a modern data warehouse
Building a modern data warehouseBuilding a modern data warehouse
Building a modern data warehouse
James Serra
 
Data Discovery at Databricks with Amundsen
Data Discovery at Databricks with AmundsenData Discovery at Databricks with Amundsen
Data Discovery at Databricks with Amundsen
Databricks
 
Microsoft SQL Server - SQL Server Migrations Presentation
Microsoft SQL Server - SQL Server Migrations PresentationMicrosoft SQL Server - SQL Server Migrations Presentation
Microsoft SQL Server - SQL Server Migrations PresentationMicrosoft Private Cloud
 
Building Lakehouses on Delta Lake with SQL Analytics Primer
Building Lakehouses on Delta Lake with SQL Analytics PrimerBuilding Lakehouses on Delta Lake with SQL Analytics Primer
Building Lakehouses on Delta Lake with SQL Analytics Primer
Databricks
 
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Mark Ginnebaugh
 
Building an Effective Data Warehouse Architecture
Building an Effective Data Warehouse ArchitectureBuilding an Effective Data Warehouse Architecture
Building an Effective Data Warehouse Architecture
James Serra
 
Azure Data Factory
Azure Data FactoryAzure Data Factory
Azure Data Factory
HARIHARAN R
 

What's hot (20)

SSIS Presentation
SSIS PresentationSSIS Presentation
SSIS Presentation
 
Microsoft Data Platform - What's included
Microsoft Data Platform - What's includedMicrosoft Data Platform - What's included
Microsoft Data Platform - What's included
 
Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...
Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...
Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...
 
ssis lab
ssis labssis lab
ssis lab
 
Architecture of integration services
Architecture of integration servicesArchitecture of integration services
Architecture of integration services
 
Achieving Lakehouse Models with Spark 3.0
Achieving Lakehouse Models with Spark 3.0Achieving Lakehouse Models with Spark 3.0
Achieving Lakehouse Models with Spark 3.0
 
Sql server basics
Sql server basicsSql server basics
Sql server basics
 
MS SQL SERVER: SSIS and data mining
MS SQL SERVER: SSIS and data miningMS SQL SERVER: SSIS and data mining
MS SQL SERVER: SSIS and data mining
 
Dimensional modeling in oracle sql developer
Dimensional modeling in oracle sql developerDimensional modeling in oracle sql developer
Dimensional modeling in oracle sql developer
 
Introduction to snowflake
Introduction to snowflakeIntroduction to snowflake
Introduction to snowflake
 
Azure data factory
Azure data factoryAzure data factory
Azure data factory
 
SSIS control flow
SSIS control flowSSIS control flow
SSIS control flow
 
Building a modern data warehouse
Building a modern data warehouseBuilding a modern data warehouse
Building a modern data warehouse
 
Data Discovery at Databricks with Amundsen
Data Discovery at Databricks with AmundsenData Discovery at Databricks with Amundsen
Data Discovery at Databricks with Amundsen
 
Microsoft SQL Server - SQL Server Migrations Presentation
Microsoft SQL Server - SQL Server Migrations PresentationMicrosoft SQL Server - SQL Server Migrations Presentation
Microsoft SQL Server - SQL Server Migrations Presentation
 
Building Lakehouses on Delta Lake with SQL Analytics Primer
Building Lakehouses on Delta Lake with SQL Analytics PrimerBuilding Lakehouses on Delta Lake with SQL Analytics Primer
Building Lakehouses on Delta Lake with SQL Analytics Primer
 
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
Microsoft SQL Server Analysis Services (SSAS) - A Practical Introduction
 
Building an Effective Data Warehouse Architecture
Building an Effective Data Warehouse ArchitectureBuilding an Effective Data Warehouse Architecture
Building an Effective Data Warehouse Architecture
 
Data migration
Data migrationData migration
Data migration
 
Azure Data Factory
Azure Data FactoryAzure Data Factory
Azure Data Factory
 

Similar to SQL Server Reporting Services

Ssrs 2008 R2 webinar
Ssrs 2008 R2   webinarSsrs 2008 R2   webinar
Ssrs 2008 R2 webinar
Snigdha Chotani
 
Agile Methodology Approach to SSRS Reporting
Agile Methodology Approach to SSRS ReportingAgile Methodology Approach to SSRS Reporting
Agile Methodology Approach to SSRS Reporting
Danielson Samuel
 
Deliver Dynamic and Interactive Web Content in J2EE Applications
Deliver Dynamic and Interactive Web Content in J2EE ApplicationsDeliver Dynamic and Interactive Web Content in J2EE Applications
Deliver Dynamic and Interactive Web Content in J2EE Applications
infopapers
 
MSBI-SQL Server Reporting Services
MSBI-SQL Server Reporting ServicesMSBI-SQL Server Reporting Services
MSBI-SQL Server Reporting Services
Thejaswi shasthri
 
Using ssr swithsqlexpress
Using ssr swithsqlexpressUsing ssr swithsqlexpress
Using ssr swithsqlexpress
guestc3c6593
 
Ssrs 2005 Reporting Services
Ssrs 2005 Reporting ServicesSsrs 2005 Reporting Services
Ssrs 2005 Reporting Services
Bala Subra
 
Reporting For Duty - Best Practices for Reporting Services With Sharepoint
Reporting For Duty - Best Practices for Reporting Services With SharepointReporting For Duty - Best Practices for Reporting Services With Sharepoint
Reporting For Duty - Best Practices for Reporting Services With Sharepoint
John White
 
Share point summit_2010_ssrs
Share point summit_2010_ssrsShare point summit_2010_ssrs
Share point summit_2010_ssrs
gmaric
 
Kathryn Birstein: SharePoint 2010 Business Intelligence-Bringing it All Together
Kathryn Birstein: SharePoint 2010 Business Intelligence-Bringing it All TogetherKathryn Birstein: SharePoint 2010 Business Intelligence-Bringing it All Together
Kathryn Birstein: SharePoint 2010 Business Intelligence-Bringing it All TogetherSharePoint Saturday NY
 
Kathryn Birstein: SharePoint 2010 Business Intelligence-Brining It All Together
Kathryn Birstein: SharePoint 2010 Business Intelligence-Brining It All TogetherKathryn Birstein: SharePoint 2010 Business Intelligence-Brining It All Together
Kathryn Birstein: SharePoint 2010 Business Intelligence-Brining It All TogetherSharePoint Saturday NY
 
Bus intelligence bringing_it_all_together
Bus intelligence bringing_it_all_togetherBus intelligence bringing_it_all_together
Bus intelligence bringing_it_all_togetherTIAA-CREF
 
Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2
Eduardo Castro
 
Enabling End User And Ad Hoc Reporting With M S S Q L Server 2005 R...
Enabling  End  User And  Ad  Hoc  Reporting  With  M S  S Q L  Server 2005  R...Enabling  End  User And  Ad  Hoc  Reporting  With  M S  S Q L  Server 2005  R...
Enabling End User And Ad Hoc Reporting With M S S Q L Server 2005 R...Joseph Lopez
 
MS Sql Server: Reporting introduction
MS Sql Server: Reporting introductionMS Sql Server: Reporting introduction
MS Sql Server: Reporting introduction
DataminingTools Inc
 
MS Sql Server: Reporting introduction
MS Sql Server: Reporting introductionMS Sql Server: Reporting introduction
MS Sql Server: Reporting introduction
sqlserver content
 
Sql Server 2005 Reporting Services
Sql Server 2005 Reporting ServicesSql Server 2005 Reporting Services
Sql Server 2005 Reporting Services
abercius24
 
Whats New Sql Server 2008 R2 Cw
Whats New Sql Server 2008 R2 CwWhats New Sql Server 2008 R2 Cw
Whats New Sql Server 2008 R2 Cw
Eduardo Castro
 
Peoplesoft PIA architecture
Peoplesoft PIA architecturePeoplesoft PIA architecture
Peoplesoft PIA architectureAmit rai Raaz
 

Similar to SQL Server Reporting Services (20)

Ssrs 2008 R2 webinar
Ssrs 2008 R2   webinarSsrs 2008 R2   webinar
Ssrs 2008 R2 webinar
 
REPORT ON (1)
REPORT ON (1)REPORT ON (1)
REPORT ON (1)
 
Agile Methodology Approach to SSRS Reporting
Agile Methodology Approach to SSRS ReportingAgile Methodology Approach to SSRS Reporting
Agile Methodology Approach to SSRS Reporting
 
Deliver Dynamic and Interactive Web Content in J2EE Applications
Deliver Dynamic and Interactive Web Content in J2EE ApplicationsDeliver Dynamic and Interactive Web Content in J2EE Applications
Deliver Dynamic and Interactive Web Content in J2EE Applications
 
MSBI-SQL Server Reporting Services
MSBI-SQL Server Reporting ServicesMSBI-SQL Server Reporting Services
MSBI-SQL Server Reporting Services
 
Using ssr swithsqlexpress
Using ssr swithsqlexpressUsing ssr swithsqlexpress
Using ssr swithsqlexpress
 
Ssrs 2005 Reporting Services
Ssrs 2005 Reporting ServicesSsrs 2005 Reporting Services
Ssrs 2005 Reporting Services
 
Reporting For Duty - Best Practices for Reporting Services With Sharepoint
Reporting For Duty - Best Practices for Reporting Services With SharepointReporting For Duty - Best Practices for Reporting Services With Sharepoint
Reporting For Duty - Best Practices for Reporting Services With Sharepoint
 
Share point summit_2010_ssrs
Share point summit_2010_ssrsShare point summit_2010_ssrs
Share point summit_2010_ssrs
 
Kathryn Birstein: SharePoint 2010 Business Intelligence-Bringing it All Together
Kathryn Birstein: SharePoint 2010 Business Intelligence-Bringing it All TogetherKathryn Birstein: SharePoint 2010 Business Intelligence-Bringing it All Together
Kathryn Birstein: SharePoint 2010 Business Intelligence-Bringing it All Together
 
Kathryn Birstein: SharePoint 2010 Business Intelligence-Brining It All Together
Kathryn Birstein: SharePoint 2010 Business Intelligence-Brining It All TogetherKathryn Birstein: SharePoint 2010 Business Intelligence-Brining It All Together
Kathryn Birstein: SharePoint 2010 Business Intelligence-Brining It All Together
 
Bus intelligence bringing_it_all_together
Bus intelligence bringing_it_all_togetherBus intelligence bringing_it_all_together
Bus intelligence bringing_it_all_together
 
Rtc user en
Rtc user enRtc user en
Rtc user en
 
Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2Whats New Sql Server 2008 R2
Whats New Sql Server 2008 R2
 
Enabling End User And Ad Hoc Reporting With M S S Q L Server 2005 R...
Enabling  End  User And  Ad  Hoc  Reporting  With  M S  S Q L  Server 2005  R...Enabling  End  User And  Ad  Hoc  Reporting  With  M S  S Q L  Server 2005  R...
Enabling End User And Ad Hoc Reporting With M S S Q L Server 2005 R...
 
MS Sql Server: Reporting introduction
MS Sql Server: Reporting introductionMS Sql Server: Reporting introduction
MS Sql Server: Reporting introduction
 
MS Sql Server: Reporting introduction
MS Sql Server: Reporting introductionMS Sql Server: Reporting introduction
MS Sql Server: Reporting introduction
 
Sql Server 2005 Reporting Services
Sql Server 2005 Reporting ServicesSql Server 2005 Reporting Services
Sql Server 2005 Reporting Services
 
Whats New Sql Server 2008 R2 Cw
Whats New Sql Server 2008 R2 CwWhats New Sql Server 2008 R2 Cw
Whats New Sql Server 2008 R2 Cw
 
Peoplesoft PIA architecture
Peoplesoft PIA architecturePeoplesoft PIA architecture
Peoplesoft PIA architecture
 

Recently uploaded

Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
Alpen-Adria-Universität
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
Alex Pruden
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
Neo4j
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
Matthew Sinclair
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
Neo4j
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
Adtran
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
DianaGray10
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
RinaMondal9
 
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AIEnchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Vladimir Iglovikov, Ph.D.
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
Neo4j
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 

Recently uploaded (20)

Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex ProofszkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
zkStudyClub - Reef: Fast Succinct Non-Interactive Zero-Knowledge Regex Proofs
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
Free Complete Python - A step towards Data Science
Free Complete Python - A step towards Data ScienceFree Complete Python - A step towards Data Science
Free Complete Python - A step towards Data Science
 
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AIEnchancing adoption of Open Source Libraries. A case study on Albumentations.AI
Enchancing adoption of Open Source Libraries. A case study on Albumentations.AI
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 

SQL Server Reporting Services

  • 1. SQL Server Reporting Services Dot Net Team-TDG-Injazat Ahmed Elbaz
  • 2. Agenda Introducing Reporting Reporting Platform Reporting Life Cycle Reporting Services Architecture SharePoint Integrated Mode Installing Reporting Services Configuring Reporting Services Report Builder 2.0 Report Designer
  • 3. Introducing Reporting A report is a structured arrangement of information. The report information comes from data in a business application. The report information can be derived from a variety of sources. Reports were available only as part of the business applications.
  • 4. Introducing Reporting (cont’d) Preprogrammed reports rarely answered all the questions that business users needed answered. Report-generation tools with the applications. Deliver reports to a large number of users, expensive, complex to implement and manage, and difficult to integrate into custom applications and technical infrastructures.
  • 5. A Reporting Platform SSRS was introduced in 2004 as an additional component of Microsoft SQL Server 2000. SSRS is a platform of technologies rather than a single application. SSRS is an integrated set of applications. Report development, management, and viewing. Different roles and skill sets to work with some aspect of Reporting Services. A report developer, IT administrator, or business user.
  • 6. One of the primary reasons that organizationsimplement Reporting Services is to provide managed reports to a large number of internal users
  • 7. SSRS Report Types Managed Report: detailed operational data. gathered from a variety of data sources. organized into a central repository. Standard formatting. Ad hoc Report: Report Builder. users with limited technical skills. simple reports saved privately or shared. Embedded Report: portals or custom applications.
  • 8. ReportingLifeCycle The report from creation to delivery. SSRS supports 3 phases of the reporting life cycle: report development. management of the report server. report access by user Rendering: reproduce a report in a variety of formats.
  • 9. ReportDevelopment Selecting data for the report from variety of data sources. Organizing the report layout and formatting. Interactive features: Sorting, parameters, hide/ show details, links and document map. Preview the report for testing. Deploy managed reports to the report server or to a Microsoft Office SharePoint Server 2007 Web site. Store ad hoc reports on your computer, or deploy it to the report server or a SharePoint site.
  • 10. ReportAdministration manage the technical environment for the reporting platform. configure the report server: change the data source connection information optionally integrate the report server with SharePoint. fine-tune the report server performance. manage the location, security, and execution properties of reports: cache the report for faster viewing. multiple snapshots of a report. place the related reports in a folder. apply security to the report or the folder.
  • 11. ReportAccess The most common way to use a browser and navigate to a central report repository. Portal application with links to guide users to reports in Reporting Services. Corporate applications/embedded reports. Store a selection of reports in a personal folder. Subscription to a report to receive it on a scheduled basis in an e-mail inbox, a network file share, or a SharePoint document library. A report rendered in HTML, PDF, TIFF, CSV or XML.
  • 12. ReportingServicesArchitecture A variety of components, extensions, and application programming interfaces (APIs) . A multi-tier architecture with data, application, and server tiers. Modular nature of the architecture and Flexibility: distribute components across multiple servers for scalability. Native mode (the default configuration): a stand-alone application server, Integrated mode, a SharePoint farm.
  • 14. SSRS Architecture (cont’d)DataTier consists of a pair of databases: The ReportServer database is the primary database for permanent storage of reports, report models, and other data related to the management of the report server. The ReportServerTempDB database stores session cache information and cached instances of reports. In a scale-out deployment of Reporting Services across multiple report servers, these two databases in the data tier are the only requirements. These databases do not need to be on the same server as the report server.
  • 15. SSRSArchitecture (cont’d) Application Tier Collection of tools that you use to develop reports and manage the reporting platform. Report Development Tools: Report Designer: full features, a project template available in SQL Server BI Dev Studio. Report Builder: ad hoc report, Report Builder 1.0 and Report Builder 2.0. Report Builder was first available in Reporting Services 2005. Using Report Builder 1.0, you can build a simple report that displays data from a single data source as defined by a report model. Report Builder 2.0 is new in Reporting Services 2008 . Model Designer: in BI Dev Studio to develop and publish a report model. SQL Server, Oracle, and Teradata databases. Programmatic Interface for Report Development: APIs that allow you to build a custom report development tool. Report Definition Language (RDL).
  • 16. SSRSArchitecture (cont’d) Report Viewers Report Manager: native mode, Web application. page through a large report, search, zoom in or out to resize a report, render a report to a new format, print the report, and change report parameters. SharePoint: Integrated mode. open the report in document library or in a Web Part. search, zoom, render, print, and select parameters. Programmatic Interface for Viewing or Delivering Reports: custom application by using the Reporting Services API or by accessing reports using URL endpoints. extend standard functionality by customizing security, data processing, rendering, or delivery options. you cannot use both tools in the same instance.
  • 17. SSRS Architecture (cont’d) ManagementTools Reporting Services Configuration Manager: configure a local or remote Reporting Services installation. assign service accounts for running the service and for processing reports for schedule operations. configure the URLs to be used by the Reporting Service application. create the report server databases to host the application data. convert a report server to native mode or integrated mode. configure e-mail delivery of reports,. connect a report server to a scale-out deployment. SQL Server Management Studio: the management interface for many of the server components in SQL Server. manage the report server.
  • 18. SSRS Architecture (cont’d) ManagementTools (cont’d) SQL Server Configuration Manager: start or stop the report server Windows service. Report Manager: native mode . Organize, configure and secure reports. report model management and subscription management. Note : in SharePoint integrated mode, you perform these same tasks using the SharePoint interface. Programmatic Interface for Management a custom application using the Reporting Services API.
  • 19. Demo SQL Server Configuration Manager.
  • 20. SSRSArchitecture (cont’d) Server Tier The central layer of the Reporting Services architecture. Processor Components, respond to and process requests to the report server. Server Extensions, subcomponents delegate very specific functions. These components are implemented as a Windows service. Processor Components: Report Processor, receives all requests that require execution and rendering of reports. Scheduling and Delivery Processor, receives all requests for scheduled events such as snapshots and subscriptions.
  • 21. SSRS Architecture (cont’d) Server Tier (cont’d) Report Processor: An on-demand report, calls a data processing extension to execute the report queries and then merges the query results into a temporary format. A cached report, stored in the ReportServerTempDB database in the temporary format. A report snapshot, stored in the ReportServer database in the temporary format. Rendering Extension. Scheduling and Delivery Processor: A user creates a snapshot or subscription schedule for a report. The Scheduling and Delivery Processor creates a SQL Server Agent job. When the job executes, SQL Server Agent sends a request to the Scheduling and Delivery Processor. The Scheduling and Delivery Processor forwards the request to the Report Processor to execute and render the report. The Report Processor returns the finished report to the Scheduling and Delivery Processor. the Scheduling and Delivery Processor calls a delivery extension to e-mail the report or store it on a network share.
  • 22. SSRS Architecture (cont’d) ServerExtensions The processor components that perform very specific tasks. Modular approach, disable an extension or add your own extension. SSRS includes 5 types of server extensions: authentication, data processing, report processing, rendering, and delivery. Authentication Extension: By default, Windows authentication. only one active authentication extension per report server instance. custom security extension. Data Processing Extension: connects to a data source, executes a query and returns the query results. SSRS includes data processing extensions for: SQL Server, Analysis Services, Hyperion Essbase, Oracle, SAP Netweaver Business Intelligence, Teradata, Object Linking and Embedding Database (OLE DB), and Open Database Connectivity (ODBC).
  • 23. SSRS Architecture (cont’d) ServerExtensions (cont’d) Report Processing Extension: an optional component used to process custom report items from third-party vendors. For example, you can obtain charting or mapping add-ins to enhance your reports. Rendering Extension: Convert a report in temporary format into a finished format for the user. The rendering extensions include: HTML, Excel, CSV, XML, Image, PDF, and Microsoft Office Word. Develop your own rendering extension.
  • 24. Delivery Extension: handle scheduled report requests. The e-mail delivery extension: the report embedded in the report body, attached as a file, or referenced as a URL link to the report on a report server. The file share delivery extension: saves a report in a specified format to a network share. The null delivery provider: a mechanism for caching a report in advance. Custom delivery extension: a fax device or printer, or to another application. SSRS Architecture (cont’d) ServerExtensions (cont’d)
  • 25. InstallingReportingServices SSRS is one of the features included in SQL Server. All editions except SQL Server 2008 Express and SQL Server Compact. Each edition supports a different set of features to meet specific scalability, performance, and pricing requirements. SQL Server 2008 Express with Advanced Services. SQL Server 2008 Web. SQL Server 2008 Workgroup. SQL Server 2008 Standard. SQL Server 2008 Enterprise. SQL Server 2008 Developer. SQL Server 2008 Evaluation.
  • 26. Notes about Modes You cannot migrate any reports that you have previously published to the report server, so you must keep a copy of the report definitions to publish again after switching the report server to a different mode.
  • 27. Notes about Modes (cont’d) You can use a SQL Server 2000 or SQL Server 2005 database for Reporting Services in native mode, you must use a SQL Server 2008 database if you plan to run Reporting Services in SharePoint integrated mode.
  • 28. Notes about Modes (cont’d) You can still use a native-mode report server with SharePoint by using SharePoint WebParts in a partial integration mode
  • 31. ReportDesigner Multiple reports. The report server project used as a container of reports. Shared data source. Data regions: Tables. Matrixes. Lists. Charts.