Viewing 6 posts - 1 through 6 (of 6 total)
Michael L John (7/5/2016)
dclemens (7/5/2016)
July 5, 2016 at 10:06 am
Here is a query I have in my toolbox that should put you on the right track.
USE ReportServer
GO
;
WITH ReportEmailsInfo
AS (
SELECT S.[SubscriptionID]
,CONVERT(XML, N'<Root>' + CONVERT(NVARCHAR(MAX), S.[ExtensionSettings]) + N'</Root>') AS X
FROM ReportServer.dbo.[Subscriptions]...
January 26, 2016 at 1:07 pm
unit 527861 should contribute to the sum each month in year 2012 because it has a trc_startdate of12/31/2011 and a trc_retiredate of 12/31/2049
unit 525505 should contribute to the sum for...
January 23, 2013 at 1:51 pm
Sean Lange (1/23/2013)
January 23, 2013 at 12:48 pm
ScottPletcher- Thanks for the reply, although the results are not what i'm looking for.
ScottPletcher (1/23/2013)
SELECT
...
January 23, 2013 at 11:13 am
I use this; Run it against the reportserver db.
DECLARE @OldUserID uniqueidentifier
DECLARE @NewUserID uniqueidentifier
SELECT @OldUserID = UserID FROM dbo.Users WHERE UserName = '<NewUser/domain>'
SELECT @NewUserID = UserID FROM dbo.Users WHERE UserName =...
November 16, 2012 at 8:09 am
Viewing 6 posts - 1 through 6 (of 6 total)