... "shared data source" to use).
You might be able to get this working with a shared data source but in our case the shared data source didn't have the correct database (initial catalog) specified despite ...
...
Method #3
And a further enhancement which lists the different datatypes, is_nullable, maxlength and collations side-by-side:
-- all columns side by side
SELECT
t1.TABLE_CATALOG AS [DB1_Name],
t2.TABLE_CATALOG ...
... entry and the end-user will be none the wiser.
OLD: Dataset to populate the dropdown
SELECT
Name,
ItemID
FROM
Catalog
WHERE
Type = 2
ORDER BY
Name ASC
NEW: ...
... e.TimeStart, e.TimeEnd) [Total Time]
,RANK() OVER (ORDER BY e.[TimeStart] DESC) [Rank]
FROM
[ReportServer].[dbo].[ExecutionLogStorage] e
INNER JOIN
[ReportServer].[dbo].[Catalog] ...
...
e.TimeDataRetrieval + e.TimeProcessing + e.TimeRendering AS TotalTime
FROM
[ExecutionLog] e
INNER JOIN [Catalog] c ON c.ItemID=e.ReportID
WHERE c.Name='My Amazing Report' -- just change the value ...
... ,a.[Status]
,a.[ByteCount]
,a.[RowCount]
FROM [ReportServer].[dbo].[ExecutionLog] a
INNER JOIN [ReportServer].[dbo].[Catalog] b
ON a.ReportID = b.ItemID
The Top 5 Most ...
...
Catalog.Name AS ReportName,
DATEPART(dayofyear, ExecutionLogStorage.TimeStart) AS DayOfYearRun,
DATEPART(week, ExecutionLogStorage.TimeStart) AS WeekRun,
DATEPART(year, ExecutionLogStorage.TimeStart) ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.