Published Books
Recommended Content
Recommended Blogs
-
Recent Posts
- SQL Performance Tips for MEMCM – Part 2
- SQL Performance Tips for MEMCM – Part 1
- Upgrade MEMCM site Windows Server 2012 to Server 2016 – Lessons learned
- Create the Optimize Database Solution using PowerShell and dbatools
- SQL Server recommendations for Microsoft Endpoint Configuration Manager environment Whitepaper Review
Visitor Info
Archives
- March 2022
- February 2022
- August 2021
- June 2020
- December 2019
- May 2019
- March 2019
- January 2019
- December 2018
- October 2018
- August 2018
- July 2018
- May 2018
- March 2018
- January 2018
- December 2017
- September 2017
- August 2017
- June 2017
- May 2017
- March 2017
- January 2017
- December 2016
- November 2016
- October 2016
- September 2016
- August 2016
- July 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- October 2015
- September 2015
- August 2015
- July 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- July 2013
- June 2013
- May 2013
- April 2013
- February 2013
Recent Comments
Categories
- 2015 Dev Connections
- Active Directory
- Always ON
- Android
- Azure
- Azure SQL Server
- ConfigMgr
- DBA
- GPO
- High Availability
- Intune
- Microsoft
- Migration
- MMS
- MMS 2013
- MMS 2014
- MMS 2018
- MMS 2019
- MSI
- MVP
- OSD
- Power BI Report Server
- PowerBI
- PowerShell
- SCCM
- Server 2012
- Softchoice
- Software Center
- SQL
- SQL Server
- SQL Server 2012
- SQL Server 2014
- SQL Server 2016
- SQL Server 2019
- SQLTuesday
- SSRS
- System Center 2012 R2
- T-SQL Tuesday
- TechEd 2014
- UD-B407
- Uncategorized
- VBScript
- Windows 10
- Windows 8
- Windows Server 2012
- WSUS
About
Category Archives: SSRS
SSRS ReportServer log file uncontrolled growth
When installing SSRS, there are two databases that get installed (default); ReportServer and ReporServerTempDB. With SSRS, whether for SCCM or reporting in general, by default the ReportServer database Recovery model is enabled as FULL. Which means that all activity in … Continue reading
Posted in SCCM, SQL Server, SSRS
Leave a comment
Create Custom Report User Role for ConfigMgr 2012 R2
Most of the information you need to create the Report User role is contained in Kent’s blog: http://blog.coretech.dk/kea/creating-the-reporting-user-role-in-configmgr-2012/ To make things a little easier, from the ConfigMgr console > Administration > Security > Security Roles, right click and import the … Continue reading
Posted in ConfigMgr, SSRS
Leave a comment
ConfigMgr 2012 – Identify Custom SSRS Reports
Working through an upgrade / migration on a client site and needed to be able to identify custom reports created within the ConfigMgr 2012 reporting structure. The following query will provide that information, change the DOMAIN below to match your … Continue reading
Posted in ConfigMgr, SQL, SQL Server, SSRS
Leave a comment
System Center 2012 Configuration Manager: A Practical Handbook for Reporting
Since I’ve had a number of people ask where they can find it, this book is now available on Amazon. Thank you for your support! http://www.amazon.com/dp/9187445174 Print only at this point, Kindle version should be available in a week or … Continue reading
Posted in ConfigMgr, SQL, SSRS
Leave a comment
Practical Handbook for Configuration Manager 2012 R2 Reporting
This project has been in the works for a few months, very proud of this work. More details to follow.
Posted in ConfigMgr, SQL Server, SQL Server 2012, SQL Server 2014, SSRS
10 Comments
2015 IT Dev Connections Session
It is official! Garth Jones (@GarthMJ) and I (@Steve_TSQL) and I will be presenting: Advanced SSRS reports for ConfigMgr 2012 Admins at IT/Dev Connections 2015 for more information and to register please visit, http://www.devconnections.com/ Watch our blogs and twitter … Continue reading
Posted in 2015 Dev Connections, SSRS
Leave a comment
How to list SSRS Report permissions
Have you ever needed to know which groups or users have access to your reports? Use the following query to get a comprehensive list of who has access to what. USE ReportServer GO select u.UserName, r.RoleName, r.Description, c.Path, c.Name … Continue reading
Posted in SQL, SQL Server, SQL Server 2012, SSRS
3 Comments
SCCM 2012 computer information query
I was recently asked to create a query based on the following requirements: On Windows XP systems only, provide the following information for each system: 1. Processor speed and type 2. Memory 3. Total disk space, free space 4. IP … Continue reading
Posted in ConfigMgr, SQL, SSRS
5 Comments
ConfigMgr 2012 SSRS fails after upgrade to SQL 2012
I don’t often re-blog other postings, but this particular issue had me puzzled and it is worth giving this exposure. After the upgrade from SQL Server 2008 R2 to SQL 2012, if you check any of the CM SSRS reports, … Continue reading
Posted in ConfigMgr, SQL, SSRS
3 Comments
ConfigMgr Software Update Summarization Task
By default the summarization task runs every 1 hour, on a very large sites it causes a large spike in CPU utilization. What follows is a summary of investigating this issue on a very large site of approximately 150,000 clients. … Continue reading
Posted in ConfigMgr, SQL Server, SSRS
1 Comment