In SSMS v17.4 they have a set of reports in <Database>/Reports/Standard reports. How to extract a source code for them? I tried to do something from DMV views but my results don't look identical to their.
Thanks
Those reports use the Report Viewer control and rdlc files. They are stored in the file Microsoft.SqlServer.Management.Reports.dll
You would need to use a .Net decompiler, view the resources and save the rdlc to some other directory and then you'd have your own copy of the rdlc file.
Sue