Need example of a SSDT report for TFS 2015 - reporting-services

I'm a newbie when it comes to SSDT and connecting to TFS to create reports. One of the reports that I generate twice a day is a very manual process. I'd like to automate it or at least try. I'm having a hard time finding a step by step guide that shows how to use SSDT to connect to TFS 2015 and use WIT queries.
The example that anyone sends me can be very simple. I have some workitem queries in TFS that return the data.
One query returns all Critical 1 bugs and the other query returns High 2 bugs.
How to I use those queries to build the report in SSRS? Do I connect to the TFS_Datawarehouse or to the TFS_Analysis in the reporting server?

If you mean custom reports with SSRS, then you can reference below samples:
Using Custom Reports in TFS: Part 3 – How to set up my reporting
environment and structure
TFS Reports using SSRS
More information about the TFS report you can refer to below links:
Create and manage Reporting Services reports
Add reports to a team project
How To: Create a Custom Report for Visual Studio Team Foundation
Server
Creating and Customizing TFS Reports

Related

PerformancePoint services 2013 with SQL Server 2008

I am trying to use performancepoint 2013 services to create a report that simple displays a set of columns from SQL Server Table.
Apparently, PerformancePoint services can only display data from tables when used with analysis services (which i do not have on my SQL Server 2008).
I am looking for a way to make this work:
- Being able to display few columns from a SQL Server table as a report on Sharepoint 2013 using performancepoint services. Is it even possible?
If not, then what are my alternatives?
Please help.
Regards
The analytical reports in PPS only support Analysis Services as you mentioned. However what you can try is to connect to your data source using Excel and then build a PowerPivot model using that data. Upload the Excel spreadsheet containing the PowerPivot model to SharePoint and create a new Multidimensional data source that points to your spreadsheet, http://technet.microsoft.com/en-us/library/ff191197(v=office.15).aspx.
Another option would be to use Reporting Services or just simply Excel Services without PowePivot.

Cannot find Microsoft Dynamics CRM Fetch Type in SSRS

I'm trying to create a report in SSRS (Visual Studio 2012) for Dynamics 2011 using fetchXML. I have downloaded and installed the Microsoft Dynamics CRM 2011 Report Authoring Extension (with SQL Server Data Tools support) but I cannot find the Microsoft Dynamics CRM Fetch Type when I try to create a report, please, does any one have any suggestions?
Probably you are trying to create the report in some already existed project, I had the same issue with VS2010 in that case.
To make Fetch XML data source be visible you must create new project in Visual Studio. If all installations were successful, you must be able to create project with Business Intelligence/Report Server Project template, than create new report and in Report Data window (if it not appears automatically - just click on any place on report, go to View menu and find Report Data window) right click on Datasets, than pick "Use a dataset embeded in my report", click "New..." button near Data source drop down and there you should see Microsoft Dynamics CRM Fetch connection type.
Have no possibility to test this with VS2012, hope this will help.
As far as I know the latest version of SQL is SQL 2012 and BIDS for it is done using VS2010. So answer is quite simple - you would not be able to build a report using VS2012, you will have to use VS2010.
You're missing the Report Authoring Extensions. Install these and you'll have the FetchXML in the list.
If you've upgraded to a later CRM version since this post, just search on that version of extension installer instead (2013/2015/2016).

SSRS 2012 Report Models

I am preparing a SSRS 2008 R2 commercial demo for my company, using Report Model to produce a kind of "BO Universe" data model to use with Report Builder, to show how users can produce their own reports by using a data model already created by a developer. I found out that Report Models are deprecated in SSRS 2012, is there any new tool to create a data model to deploy on report server, usable by users to produce reports?
Thanks in advance,
Daniele
Semantic modeling language (SMDL) report models are deprecated. Although you can you continue to use existing report models as data sources in SQL Server 2012 Reporting Services reports you should consider updating your reports to remove their dependency on report models.
SQL Server 2012 Reporting Services does not include tools for creating or updating report models.
SQL Server Data Tools (SSDT) no longer supports report model projects. The Report Model designer is not available in SQL Server 2012 Reporting Services (SSRS). You cannot create new Report Model projects or open existing projects in SQL Server Data Tools (SSDT) and you cannot create or update report models. To update report models, you can use SQL Server 2008 R2 Reporting Services or earlier tools. You can continue to use report models as data sources in reports authored in SQL Server 2012 Reporting Services (SSRS) tools such as Report Builder and Report Designer. The query designer that you use to create queries to extract report data from report models continues to be available in SQL Server 2012 Reporting Services.
Sources: here and (mainly) here
You can try exploring power view.
You can create a tabular model and then explore it via power view.

Is there a way to automate creation of subscriptions in SSRS 2008?

I have development, test, demo and production systems. They all need to have the same set of reports (easily deployed via Visual Studio, multiple reports at the same time if needed) and the same set of report subscriptions. At this time I have to manually go through the sequence of up to 7 steps in web UI for report manager to deploy or modify each subscription on each system.
Is there a way to automate/improve creation/modification of report subscriptions? I use SSRS 2008.
I've cheated in the past and manipulated the reporting database in SQL Server, you could dig around in there and see if you can figure out the records you need to add.

Newbie Building Reports with Microsoft Reporting Services

I have an Access db file, and I need to slice and dice the data for various reports that my boss wants.
Is Microsoft Reporting Services a tool that is appropriate for this kind of activity?
If so, would I import the Access data in SQL Server, then the reporting services is a tool that works on SQL Server, allowing the report builder to build custom reports?
SSRS is great for what your trying to do if you wish to stick with Micrsoft tech.
SQL Server Express Adv edition comes with report server. There are plenty of guides out there for install / set up but once going you can use a little application called Report Builder that lets you design the layout of the reports themselves.
Reporting server esentially generates reports from templates you produce in report builder app.
The free edition of report server that comees with SQL Express Adv can export reports into three types, word files, excell or PDFs and does a very good job at it. It also exposes a webservice with a whole myrad of web methods thats very very usefull. ASP.Net also has a control which you can drop into your apps which will render a report.
So in short, yes :)
Hope this helps.