Quantcast
Channel: SQLServerCentral » Reporting Services » SSRS 2012 » Latest topics
Viewing all 534 articles
Browse latest View live

Expression help - dates for conditions

$
0
0
So I currently have it so that if the date is the current month, then a red line goes around the column within the matrix report that I have.What I actually now want is if the date is the 1st, 2nd or 3rd of the current month, then I need the red line to be around the previous month only. If it is past the 3rd of the month then a red line around the current month.So I previously had this:[code="vb"]=iif(Fields!THEYEAR.Value = CSTR(YEAR(TODAY)), IIF(Fields!THEMONTH.Value = CSTR(MONTH(TODAY)),"Red", "LightGrey"),"LightGrey")[/code]I have a date column that is 01-mm-yyyy format.I have worked out I probably need some combination of:[code="vb"]=dateadd("m",0,dateserial(year(Today),month(Today),1)) and=dateadd("m",-1,dateserial(year(Today),month(Today),1)) [/code]but am having issues structuring it.Any help/pointers are appreciated, apologies for it being late on a Friday :-D

SSRS Performance issue

$
0
0
Hi,I am developing report where my data source is Oracle. I am not using SP and currently not a parameter in a query, Just select statement.Now my issue is that query in oracle is running in 7 seconds but when same query in SSRS i am integrating, SSRS report is taking a time, even i tried 4-5 times and waited almost for 10 mins but not data displaed so i aborted the same.Please help as this task is on high priority.ThanksAbhas.

How to make report in ssrs like this ?

$
0
0
[img]http://i1286.photobucket.com/albums/a615/Emadkhanqai/Question_zpsrlqvlv9l.png[/img]As you can see that each activity is grouped with phase, and from activity start and end date its specific bar chart is generated and merged in the form of months in months section. and where there is no start date and end date , then no bar is created in bluePlease tell me how to create report like this.Million thanks for taking interest.

passing Multi-valued parameter to a stored procedure

$
0
0
Sorry, maybe this is only tangentially related to SSRS. I know I can set a parameter to be multi-valued in SSRS and filter inside SSRS, but what if I want to pass that back to a stored procedure?i'm sure you all know the drill... I have a stored procedure, like this:CREATE PROC getMyRecords @ProtocolNo VARCHAR(20)ASSELECT <field list>FROM <table>WHERE ProtocolNo = @ProtocolNo;If I want to pass a multi-valued parameter, can I use DelimitedSplit8K to do it?Something likeSELECT *FROM <table>CROSS APPLY (DelimitedSplit8K(@ParamList)Apologies if I'm asking a dumb question... just point me at the article/post that explains how to do it. No extra words necessary.. I know I'm missing something really simple...(Maybe I just have to read Jeff's article when I'm more awake?)Thanks,Pieter

Edit: Anscheinend war es BeetHoven und nicht Mozart

$
0
0
[url=https://www.nso.upenn.edu/sites/default/files/game_jets-vs-49ers-live-stream-nfl-football-game-online-broadcast.pdf]Jets vs 49ers Live Streaming[/url][url=https://www.nso.upenn.edu/sites/default/files/footy_saints-vs-buccaneers-live-stream-nfl-football-game-online-broadcast.pdf]Saints vs Buccaneers Live Streaming[/url][url=https://www.nso.upenn.edu/sites/default/files/game_falcons-vs-rams-live-stream-nfl-football-game-online-broadcast.pdf]Falcons vs Rams Live Streaming[/url][url=https://www.nso.upenn.edu/sites/default/files/game_seahawks-vs-packers-live-stream-nfl-football-game-online-broadcast.pdf]Seahawks vs Packers Live Streaming[/url]

How do I use 'DECLARE' from SQL query in SSRS 2012?

$
0
0
Hi,This will be my first report to be created with 'DECLARE' in the SQL query and try creating reports.How do I use or convert this in SSRS? Should I convert this to Stored Procedure? If so, do I need to create SP in SSRS or SSMS?If anyone can provide a sample of the converted SP from below query and show how to use that in SSRS, would be of great help.Here is the SQL Query -[code="sql"]Declare @Current_College_year Varchar(20),@Prior_College_year Varchar(20)Set @Current_College_year = '2015-16'set @Prior_College_year = '2014-15'select CYR.College_YEAR,CYR.SPE_ALT as CYR_EStatus,CYR.College_DIS_CODE,DIST.DIS_NAME,PYR.College_YEAR,PYR.SPE_ALT as PYR_EStatus,PYR.College_DIS_CODE,ISNULL(CYR_COUNT,0) as CYR_COUNT,ISNULL(PYR_COUNT,0) as PYR_COUNT,(ISNULL(CYR_COUNT,0)-ISNULL(PYR_COUNT,0)) as Count_Diff,case when ISNULL(PYR_COUNT,0) = 0 then 0 else cast((CYR_COUNT-PYR_COUNT)/cast(PYR_COUNT as numeric(8,2)) as numeric(8,2)) end *100 AS Percent_Difffrom (select ml.SPE_ALT,ml.SPE_SORT,College_DIS_CODE,College_YEAR,count(distinct s_key) AS CYR_COUNTfrom TELECOLL_R.ML_ATTEND as ml WITH (NOLOCK)where College_year = @Current_College_yearand enrolled_fs_id = 'Yes'group by ml.SPE_ALT,ml.SPE_SORT,College_DIS_CODE,College_YEAR)CYRleft join (select ml.SPE_ALT,ml.SPE_SORT,College_DIS_CODE,College_YEAR,count(distinct s_key) AS PYR_COUNTfrom TELECOLL_R.ML_ATTEND as ml WITH (NOLOCK)where 1=1and College_year = @Prior_College_yearand enrolled_fs_id = 'Yes'group by ml.SPE_ALT,ml.SPE_SORT,College_DIS_CODE,College_YEAR)PYRon CYR.College_DIS_CODE = PYR.College_DIS_CODEand CYR.SPE_ALT = PYR.SPE_ALTleft join [TELECOLL_USRDATA].[XL_DIS] as DIS WITH (NOLOCK)on CYR.College_DIS_CODE = dist.DIS_IDorder by Percent_Diff[/code]I am not getting pass the First step which is when I use the above query it throws me "The Declare SQL construct or statement is not supported." and even if I just ignore this step, it throws me the next error message -"Could not create a list of fields for the query. Verify that you can connect to the data source and that your query syntax is correct" - An item with the same key has already been added.In SQL Query - If I try removing 'Declare' it throws me syntax error.Should I first work on modifying the sql query? (this query is owned by someone else and i do not have rights to do that)

rsCollationDetectionFailed Warning.

$
0
0
Hi Everyone, Ok, so this is a warning, the RS solution deploys ok, but this is really bugging me. I have Googled and Bing-ed, but I'm not coming up with anything regarding this. How can I get rid of it?Warning 1 [rsCollationDetectionFailed] The data extension used for the data source ‘MyDataSource’ failed to detect the default collation properties for the connection. Details: System.InvalidCastException: Specified cast is not valid. at Microsoft.ReportingServices.DataExtensions.SqlGetCollationProperties.GetCollationProperties(IDbCommand command, CultureInfo& culture, Boolean& caseSensitive, Boolean& accentSensitive, Boolean& kanatypeSensitive, Boolean& widthSensitive) at Microsoft.ReportingServices.DataExtensions.SqlConnectionWrapperBase.GetCollationProperties(String& cultureName, Boolean& caseSensitive, Boolean& accentSensitive, Boolean& kanatypeSensitive, Boolean& widthSensitive) at Microsoft.ReportingServices.OnDemandProcessing.RuntimeDataSource.MergeAutoCollationSettings(IDbConnection connection) C:\Users\Username\Documents\Visual Studio 2010\Projects\MyProjectName\ProjectName\MyReport.rdl 0 0 I cannot see anything I can change in or around the report in regards to this. Thanks for any help or theories.Regards,D.

External Image in RDLC

$
0
0
I am getting issue on image printed on my RDLC through VB project.First I add a new parameter(ImgPath).Then inside image property, I give the value(Parameters!ImgPath.Value).After that I added those codes inside my vb[code]Dim report As New LocalReport() report.ReportPath = Application.StartupPath & "\Report.rdlc" report.DataSources.Add(New ReportDataSource("dataset", GetData(IDNo))) report.EnableExternalImages = True Dim param As ReportParameter = New ReportParameter("ImgPath", "C:\sample.jpg") report.SetParameters(param) report.Refresh()[/code]But I having error in Local report processing when I run the code.Any suggestions where I did wrong?Since my win form project doesn't include report viewer, I have added my codes like this. [img]http://i63.tinypic.com/15ow3rk.jpg[/img]

Reporting service not responding after regedit modification

$
0
0
The reporting service is still not responding even after I have changed decimal to 60000 in service time out. May I know how do you solve that issue???

Rendering issue for RDLC web application view different with exported view

$
0
0
I am getting different alignments for my RDLC in Web view and exported view. :( Anyone faced with this issue before? How could I achieve the same alignment for both web app view and exported view(pdf) ?Any idea?

Limiting number of rows to be displayed per page

$
0
0
Hi all,Can I have some insight on how to limit the number of rows(x)to be displayed in Tablix per page regardless of the grouping inside and add a page break after that number of rows(x) ?I have done some research about it and most of the article are talking about the simple tablix which doesn't have any grouping inside, and so can easily set row limit [code] =CEILING(RowNumber(Nothing)/50) [/code]where 50 is the number of records to be displayed per page. However my scenario is different I have two grouping inside. So, it makes complicated to limit the number of rows to be displayed per page.Can it be achievable?

five-game winning streak.

$
0
0
[url=http://us.bertazzoni.com/sites/default/files/cv/CBS-TV-Dolpins-vs-Bills-live-streaming-NFL-New-Era-Field-Online-HD.pdf]Dolpins vs Bills Live Stream[/url][url=http://us.bertazzoni.com/sites/default/files/cv/Vikings-vs-Packers-live-stream-NFL-Wk-16-Online-FOX-TV.pdf]Vikings vs Packers Live Stream[/url][url=http://us.bertazzoni.com/sites/default/files/cv/Bears-vs-Redskins-live-stream-NFL-wk-16-Online-Fox-TV.pdf]Bears vs Redskins Live Stream[/url][url=http://us.bertazzoni.com/sites/default/files/cv/HQQ-Green-Bay-Packers-vs-Minnesota-Vikings-Live-Streaming.pdf]Green Bay Packers vs Minnesota Vikings Live Stream[/url][url=http://us.bertazzoni.com/sites/default/files/cv/HDQ-TV-New-England-Patriots-vs-New-York-Jets-Live-Streaming-Free.pdf]New England Patriots vs New York Jets Live Stream[/url][url=http://us.bertazzoni.com/sites/default/files/cv/Packers-vs-Vikings-Live-NFL-Streaming-Online-TV-24.pdf]Packers vs Vikings Live Stream[/url][url=http://us.bertazzoni.com/sites/default/files/cv/Online-TV-Patriots-vs-Jets-Live-NFL-Streaming-Free-Gillette.pdf]Patriots vs Jets Live Stream[/url][url=http://us.bertazzoni.com/sites/default/files/cv/Patriots-vs-jets-live-streaming-NFL-24-Dec-2016-online-HD.pdf]Patriots vs Jets Live Stream[/url]

Picked a single political position HPOE

$
0
0
[url=http://us.bertazzoni.com/sites/default/files/cv/%5B%28STrEaM~lIvE%29%5D%20Bengals%20vs%20Texans%20Live%20Streaming%20Free%20NFL%20Football%20Gameday%2024%20Dec%202016.pdf]Bengals vs Texans Live Streaming[/url][url=http://us.bertazzoni.com/sites/default/files/cv/%5B%28NFL~lIvE%29%5D%20Texans%20vs%20Bengals%20Live%20Stream%20%28Sunday%20Night%20Football%29%20NFL%20Cast%20Online%20Gameday%2024%20Dec%202016.pdf]Texans vs Bengals Live Streaming[/url]

SSRS Project default date format

$
0
0
How on earth do you change the default date format for a project, or even a report for thath matter, away from USian? In earlier versions this was no problem, but it seems rather well hidden in the VS2012 IDE

Backup Up Encryption Key File - How to verify password is working?

$
0
0
We are running SQL Server 2012 EE SP3. I walked through the configuration of SSRS. At the 'Backup Encryption Key' Screen, I clicked the ellipsis (3 dots box) and entered the file location (including file name) and returned to the 'Backup Encryption Key' Screen. At this point, I was on the 'Backup Encryption Key' Screen and I changed the file name. Once completed with the SSRS Configuration, I went to look for the 'Backup Encryption Key' file and found that it was given the original name. So, now I am concerned about the password that is used to lock and unlock this Encryption Key file. Is there a way to verify that the password works without restoring the 'Backup Encryption Key' file?Is there a way to recreate the 'Backup Encryption Key' file without having to reconfigure the entire SSRS setup?Do you think the key file and password are okay?Thanks in advance.

Need Help with Stored Procedure Data type converting

$
0
0
This is my stored procedure using inside my RDL Report[code]USE [Invoice]GOSET ANSI_NULLS OFFGOSET QUOTED_IDENTIFIER OFFGOALTER PROCEDURE [dbo].[uspInvoiceLines]( @InInvoiceNbr int ,@InLinesPerPage int)ASDECLARE @TotalRows intDECLARE @Remainder intDECLARE @NumPages intDECLARE @NextPageRows intset @TotalRows= 0SELECT ROW_NUMBER() OVER( ORDER BY InvProduct ) as InvoiceRow, CoID, InvNo, InvProduct, InvDesc, InvQuantity, InvUOM, InvUnitPrice, InvAmtinto #tempInvoiceFROM Invoice_ProductsSET @TotalRows= @@ROWCOUNTIF @TotalRows=0 BEGIN WHILE @TotalRows < @InLinesPerPage -- Add Blank Rows will generate blank invoice. BEGIN SET @TotalRows= @TotalRows+1 INSERT #tempInvoice (InvoiceRow, CoID, InvNo, InvProduct, InvDesc, InvQuantity, InvUOM, InvUnitPrice, InvAmt ) VALUES (@TotalRows ,@InInvoiceNbr ,'' ,'' ,0 ,0 ,0 ,'' ,0 ,0) END ENDELSE BEGIN SET @Remainder = @TotalRows%@InLinesPerPage -- get remainder IF @Remainder !=0 BEGIN -- Get the current page increase by 1 becasue we have a remainder. SET @NumPages = @TotalRows/@InLinesPerPage +1 SET @NextPageRows = @NumPages * @InLinesPerPage WHILE @TotalRows < @NextPageRows -- Add Blank Rows BEGIN SET @TotalRows= @TotalRows+1 INSERT #tempInvoice (InvoiceRow, CoID, InvNo, InvProduct, InvDesc, InvQuantity, InvUOM, InvUnitPrice, InvAmt ) VALUES (@TotalRows ,@InInvoiceNbr ,'' ,'' ,0 ,0 ,0 ,'' ,0, 0) END END ENDSELECT * from #tempInvoice order by InvoiceRow ascreturn[/code]I can run without error in SSMS. However when I use this sp inside my RDLC, I[b] get Query execution failed for dataset Error converting data type varchar to numeric[/b] error. Where did I do wrong?I am guessing it is because my InvProduct is nvarchar type and it is supposed to be int type in order to get ROW_NUMBER function. Is there a way to convert it into numeric type? Kindly help!

dynamically select drillthrough report from parameter

$
0
0
Hello, this is a design/approach question because I'm still clueless as to SSRS capabilities.Dev environment: Visual Studio 2010 Shell, SQL Server 2012 on Windows Server 2012.I'm tasked with creating SSRS reports for about a dozen products from this facility.Each report represents batch data. Data generated when that batch of product was produced.User reqs: 1) User enters a date/time range using calendar widgets and selects a product.2) A list of batches for that product that occured in that time span is displayed.3) User clicks on a batch in the list and a new window is displayed containing details of that batch data - the batch data report.For each product a different set of query parameters is needed to mine the data.My first thought was - if I had a dozen csv files containing parameters for each of the product types then my code (of a single report) would cyle through that list and send a query for each line of the csv file. The end result of those queries would produce a dataset which would map to a table that was consistent across all the products.And used within a single report definition.But I don't think my csv idea is possible with SSRS. So I'll probably need to make a report for each product.I'm thinking a main report for the time range and product type selection.And then the main report offers a list of drillthrough report links.But can I dynamically choose which product report to use based upon the initial parameter selection of the product type?And can dynamic parameters be initially generated from a query? For example could I query the database for all products and offer that list to the user's initial selection? Although if a new product was entered in the DB *before* a respective report was built to handle it... I'm not sure how I'd handle that scenario.I know these aren't specific coding questions but any advice and insight is appreciated.Thanks

with suitable copyright licenses.

$
0
0
[url=http://fundacion.sevillafc.es/sites/default/files/webform/contacto-fundacion/freefilllliffoulluof2017.pdf]Dolphins vs Steelers Live Stream[/url][url=http://fundacion.sevillafc.es/sites/default/files/webform/contacto-fundacion/cbs-tv-steelers-vs-dolphins-live-streaming-nfl_wild-card-2017-heinz-field-online-hd.pdf]Steelers vs Dolphins Live Stream[/url]

Log in fail to Reporting Services

$
0
0
HiI am having problem in login to my report server via SQL Management Studio, as well as from Report Manager.I am using form authentication. I followed the steps from http://blog.dragonsoft.us/2011/10/14/installing-custom-security-extensions-for-ssrs/. But Stuck at no 3 onwards when testing the sample.Anyone ever come across this sort of issue? How can I fix it?I cannot find any answer for that. Please help me resolve. Definitely database Log-in issue, I feel.Do I need to modify some sort of IIS thing?[img]http://i66.tinypic.com/16ar4n8.jpg[/img][img]http://i66.tinypic.com/307lyma.jpg[/img][img]http://i66.tinypic.com/2m5xq8h.png[/img]And here is my log file.[code]<Header> <Product>Microsoft SQL Server Reporting Services Version 2011.0110.5058.00 ((SQL11_PCU_Main).140514-1820 )</Product> <Locale>English (United Kingdom)</Locale> <TimeZone></TimeZone> <Path>C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfiles\ReportServerService__08_25_2016_07_15_57.log</Path> <SystemName>SERVERNAME</SystemName> <OSName>Microsoft Windows NT 6.2.9200</OSName> <OSVersion>6.2.9200</OSVersion> <ProcessID>320</ProcessID> <Virtualization>Hypervisor</Virtualization></Header><ProcessorArchitecture>AMD64</ProcessorArchitecture><ApplicationArchitecture>AMD64</ApplicationArchitecture>dbpolling!WindowsService_2!9cc!08/25/2016-07:15:57:: i INFO: Skipping unreliable IsPollingWorking check.library!WindowsService_2!fe0!08/25/2016-07:15:58:: i INFO: Call to CleanBatch()rshost!rshost!1528!08/25/2016-07:15:58:: i INFO: Currently registered url http://+:80/ReportServer/ on endpoint 2rshost!rshost!1528!08/25/2016-07:15:58:: i INFO: Currently registered url http://+:80/Reports/ on endpoint 3rshost!rshost!1528!08/25/2016-07:15:58:: i INFO: Endpoint 4 is disabled and no url is registered vdir=/ReportServer/ReportBuilder, pdir=C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\ReportBuilder.rshost!rshost!9cc!08/25/2016-07:15:58:: i INFO: Derived memory configuration based on physical memory as 2096672 KBappdomainmanager!DefaultDomain!9cc!08/25/2016-07:15:58:: i INFO: Appdomain:10 ReportServer_MSSQLSERVER_0-6-131164851613623819 unregistered.appdomainmanager!ReportServer_0-6!9cc!08/25/2016-07:15:58:: i INFO: Appdomain:10 ReportServer_MSSQLSERVER_0-6-131164851613623819 unloadingappdomainmanager!DefaultDomain!9cc!08/25/2016-07:15:58:: i INFO: Appdomain:9 ReportManager_MSSQLSERVER_0-5-131164840709813818 unregistered.appdomainmanager!ReportManager_0-5!9cc!08/25/2016-07:15:58:: i INFO: Appdomain:9 ReportManager_MSSQLSERVER_0-5-131164840709813818 unloadingservicecontroller!DefaultDomain!9cc!08/25/2016-07:15:58:: i INFO: Recycling the service from the default domaindbpolling!WindowsService_2!1528!08/25/2016-07:15:58:: i INFO: EventPolling polling service stoppeddbpolling!WindowsService_2!1528!08/25/2016-07:15:58:: i INFO: NotificationPolling polling service stoppeddbpolling!WindowsService_2!1528!08/25/2016-07:15:58:: i INFO: SchedulePolling polling service stoppeddbpolling!WindowsService_2!1528!08/25/2016-07:15:58:: i INFO: UpgradePolling polling service stoppedrunningjobs!WindowsService_2!9cc!08/25/2016-07:15:58:: e ERROR: Timer Database Cleanup (NT Service) still executing, breaking...library!WindowsService_2!fe0!08/25/2016-07:15:58:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_2!fe0!08/25/2016-07:15:58:: i INFO: Call to CleanBatch() endsrshost!rshost!9cc!08/25/2016-07:15:58:: i INFO: Application domain type WindowsService statistics: created: 3, unloaded: 3, failed: 0, timed out: 0.appdomainmanager!DefaultDomain!9cc!08/25/2016-07:15:58:: i INFO: Appdomain:11 WindowsService_3 started.library!WindowsService_3!9cc!08/25/2016-07:15:59:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!WindowsService_3!9cc!08/25/2016-07:15:59:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!WindowsService_3!9cc!08/25/2016-07:15:59:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!WindowsService_3!9cc!08/25/2016-07:15:59:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!WindowsService_3!9cc!08/25/2016-07:15:59:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesresourceutilities!WindowsService_3!9cc!08/25/2016-07:15:59:: i INFO: Reporting Services starting SKU: Developerservicecontroller!WindowsService_2!9cc!08/25/2016-07:15:59:: i INFO: Service controller exiting.appdomainmanager!DefaultDomain!9cc!08/25/2016-07:15:59:: i INFO: Appdomain:7 unregistered.appdomainmanager!DefaultDomain!9cc!08/25/2016-07:15:59:: i INFO: Appdomain:7 WindowsService_2 unloading.appdomainmanager!DefaultDomain!1df4!08/25/2016-07:15:59:: i INFO: AppDomain:7 0 pending unload(s)library!WindowsService_3!f10!08/25/2016-07:15:59:: i INFO: Catalog SQL Server Edition = Developercrypto!WindowsService_3!f10!08/25/2016-07:15:59:: i INFO: Initializing crypto as user: NT Service\ReportServercrypto!WindowsService_3!f10!08/25/2016-07:15:59:: i INFO: Exporting public keycrypto!WindowsService_3!f10!08/25/2016-07:15:59:: i INFO: Performing sku validationcrypto!WindowsService_3!f10!08/25/2016-07:15:59:: i INFO: Importing existing encryption keydbpolling!WindowsService_3!f10!08/25/2016-07:15:59:: i INFO: EventPolling polling service starteddbpolling!WindowsService_3!f10!08/25/2016-07:15:59:: i INFO: NotificationPolling polling service starteddbpolling!WindowsService_3!f10!08/25/2016-07:15:59:: i INFO: SchedulePolling polling service starteddbpolling!WindowsService_3!f10!08/25/2016-07:15:59:: i INFO: UpgradePolling polling service starteddbpolling!WindowsService_3!1528!08/25/2016-07:15:59:: i INFO: PollingMaintenance: Polling startedappdomainmanager!WindowsService_3!f10!08/25/2016-07:15:59:: i INFO: Appdomain:11 WindowsService_3 initialized.webserver!ReportServer_0-6!eb4!08/25/2016-09:32:56:: i INFO: Reporting Web Server stoppedappdomainmanager!DefaultDomain!ca8!08/25/2016-09:33:01:: i INFO: Appdomain:9 unregistered.rshost!rshost!ca8!08/25/2016-09:33:01:: i INFO: Application domain type ReportManager statistics: created: 3, unloaded: 3, failed: 0, timed out: 0.appdomainmanager!DefaultDomain!ca8!08/25/2016-09:33:06:: i INFO: Appdomain:10 unregistered.rshost!rshost!ca8!08/25/2016-09:33:06:: i INFO: Application domain type ReportServer statistics: created: 3, unloaded: 3, failed: 0, timed out: 0.appdomainmanager!DefaultDomain!1ffc!08/25/2016-09:40:12:: i INFO: Appdomain:12 ReportServer_MSSQLSERVER_0-7-131165628120411866 started.appdomainmanager!ReportServer_0-7!1ffc!08/25/2016-09:40:15:: i INFO: RS authentication mode is 16; effective ASP.NET authentication mode is Forms. vdir=/ReportServer.appdomainmanager!DefaultDomain!1ffc!08/25/2016-09:40:15:: i INFO: Appdomain:12 ReportServer_MSSQLSERVER_0-7-131165628120411866 initialized (#4).webserver!ReportServer_0-7!1ffc!08/25/2016-09:40:16:: i INFO: Reporting Web Server startedlibrary!ReportServer_0-7!1ffc!08/25/2016-09:40:16:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!ReportServer_0-7!1ffc!08/25/2016-09:40:16:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!ReportServer_0-7!1ffc!08/25/2016-09:40:16:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!ReportServer_0-7!1ffc!08/25/2016-09:40:16:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!ReportServer_0-7!1ffc!08/25/2016-09:40:16:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesresourceutilities!ReportServer_0-7!1ffc!08/25/2016-09:40:16:: i INFO: Reporting Services starting SKU: Developerui!ReportServer_0-7!1ffc!08/25/2016-09:40:16:: i INFO: Registering with Software Usage Metrics Product:SQL Server 2012, Role:Microsoft SQL Server Reporting Services, RoleGuid:8cc0ac85-40f7-4886-9dab-021519800418ui!ReportServer_0-7!1ffc!08/25/2016-09:40:16:: e ERROR: Software Usage Metrics initialize failedlibrary!ReportServer_0-7!1ffc!08/25/2016-09:40:17:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;library!ReportServer_0-7!1ffc!08/25/2016-09:40:18:: i INFO: Catalog SQL Server Edition = Developercrypto!ReportServer_0-7!1ffc!08/25/2016-09:40:18:: i INFO: Initializing crypto as user: NT Service\ReportServercrypto!ReportServer_0-7!1ffc!08/25/2016-09:40:18:: i INFO: Exporting public keycrypto!ReportServer_0-7!1ffc!08/25/2016-09:40:18:: i INFO: Performing sku validationcrypto!ReportServer_0-7!1ffc!08/25/2016-09:40:18:: i INFO: Importing existing encryption keywebserver!ReportServer_0-7!1ffc!08/25/2016-09:40:40:: e ERROR: System.Exception: An error occurred while attempting to verify the user.A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 25 - Connection string is not valid) at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationUtilities.VerifyPassword(String suppliedUserName, String suppliedPassword) at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.LogonUser(String userName, String password, String authority) at Microsoft.ReportingServices.WebServer.RSCustomAuthentication.LogonUser(String userName, String password, String authority) at Microsoft.ReportingServices.WebServer.RsSoapBase.InternalLogonUser(String userName, String password, String authority) at Microsoft.ReportingServices.WebServer.ReportingService2010.LogonUser(String userName, String password, String authority)library!ReportServer_0-7!1ffc!08/25/2016-09:40:55:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;library!WindowsService_3!fe0!08/25/2016-09:40:58:: i INFO: Call to CleanBatch()library!WindowsService_3!fe0!08/25/2016-09:40:58:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!fe0!08/25/2016-09:40:58:: i INFO: Call to CleanBatch() endswebserver!ReportServer_0-7!1ffc!08/25/2016-09:41:13:: e ERROR: System.Exception: An error occurred while attempting to verify the user.A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 25 - Connection string is not valid) at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationUtilities.VerifyPassword(String suppliedUserName, String suppliedPassword) at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.LogonUser(String userName, String password, String authority) at Microsoft.ReportingServices.WebServer.RSCustomAuthentication.LogonUser(String userName, String password, String authority) at Microsoft.ReportingServices.WebServer.RsSoapBase.InternalLogonUser(String userName, String password, String authority) at Microsoft.ReportingServices.WebServer.ReportingService2010.LogonUser(String userName, String password, String authority)appdomainmanager!DefaultDomain!1df4!08/25/2016-09:47:46:: i INFO: Appdomain:13 ReportManager_MSSQLSERVER_0-8-131165632665643806 started.appdomainmanager!ReportManager_0-8!1df4!08/25/2016-09:47:48:: i INFO: RS authentication mode is 16; effective ASP.NET authentication mode is Forms. vdir=/Reports.appdomainmanager!DefaultDomain!1df4!08/25/2016-09:47:48:: i INFO: Appdomain:13 ReportManager_MSSQLSERVER_0-8-131165632665643806 initialized (#4).library!ReportManager_0-8!1df4!08/25/2016-09:47:48:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!ReportManager_0-8!1df4!08/25/2016-09:47:48:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!ReportManager_0-8!1df4!08/25/2016-09:47:48:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!ReportManager_0-8!1df4!08/25/2016-09:47:48:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!ReportManager_0-8!1df4!08/25/2016-09:47:48:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesui!ReportManager_0-8!1df4!08/25/2016-09:47:48:: i INFO: Registering with Software Usage Metrics Product:SQL Server 2012, Role:Microsoft SQL Server Reporting Services, RoleGuid:8cc0ac85-40f7-4886-9dab-021519800418ui!ReportManager_0-8!1df4!08/25/2016-09:47:48:: e ERROR: Software Usage Metrics initialize failedlibrary!ReportServer_0-7!410!08/25/2016-09:47:53:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;library!WindowsService_3!fe0!08/25/2016-09:50:59:: i INFO: Call to CleanBatch()library!WindowsService_3!fe0!08/25/2016-09:50:59:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!fe0!08/25/2016-09:50:59:: i INFO: Call to CleanBatch() endslibrary!WindowsService_3!eb4!08/25/2016-10:00:58:: i INFO: Call to CleanBatch()library!WindowsService_3!eb4!08/25/2016-10:00:58:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!eb4!08/25/2016-10:00:58:: i INFO: Call to CleanBatch() endslibrary!WindowsService_3!eb4!08/25/2016-10:10:59:: i INFO: Call to CleanBatch()library!WindowsService_3!eb4!08/25/2016-10:11:00:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!eb4!08/25/2016-10:11:00:: i INFO: Call to CleanBatch() endslibrary!WindowsService_3!fe0!08/25/2016-10:20:58:: i INFO: Call to CleanBatch()library!WindowsService_3!fe0!08/25/2016-10:20:58:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!fe0!08/25/2016-10:20:58:: i INFO: Call to CleanBatch() endslibrary!WindowsService_3!eb4!08/25/2016-10:30:58:: i INFO: Call to CleanBatch()library!WindowsService_3!eb4!08/25/2016-10:30:58:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!eb4!08/25/2016-10:30:58:: i INFO: Call to CleanBatch() endslibrary!WindowsService_3!eb4!08/25/2016-10:40:59:: i INFO: Call to CleanBatch()library!WindowsService_3!eb4!08/25/2016-10:40:59:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!eb4!08/25/2016-10:40:59:: i INFO: Call to CleanBatch() endslibrary!WindowsService_3!fe0!08/25/2016-10:50:58:: i INFO: Call to CleanBatch()library!WindowsService_3!fe0!08/25/2016-10:50:58:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!fe0!08/25/2016-10:50:58:: i INFO: Call to CleanBatch() endslibrary!ReportServer_0-7!13b0!08/25/2016-10:53:06:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;library!WindowsService_3!eb4!08/25/2016-11:01:00:: i INFO: Call to CleanBatch()library!WindowsService_3!eb4!08/25/2016-11:01:00:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!eb4!08/25/2016-11:01:00:: i INFO: Call to CleanBatch() endslibrary!ReportServer_0-7!1df4!08/25/2016-11:03:56:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;library!WindowsService_3!fe0!08/25/2016-11:10:59:: i INFO: Call to CleanBatch()library!WindowsService_3!fe0!08/25/2016-11:10:59:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!fe0!08/25/2016-11:10:59:: i INFO: Call to CleanBatch() endslibrary!WindowsService_3!fe0!08/25/2016-11:21:00:: i INFO: Call to CleanBatch()library!WindowsService_3!fe0!08/25/2016-11:21:00:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!fe0!08/25/2016-11:21:00:: i INFO: Call to CleanBatch() endslibrary!ReportServer_0-7!d28!08/25/2016-11:23:30:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;library!WindowsService_3!eb4!08/25/2016-11:30:59:: i INFO: Call to CleanBatch()library!WindowsService_3!eb4!08/25/2016-11:30:59:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!eb4!08/25/2016-11:30:59:: i INFO: Call to CleanBatch() endslibrary!WindowsService_3!fe0!08/25/2016-11:41:01:: i INFO: Call to CleanBatch()library!WindowsService_3!fe0!08/25/2016-11:41:01:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_3!fe0!08/25/2016-11:41:01:: i INFO: Call to CleanBatch() endsconfigmanager!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Handling File Changeslibrary!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing ConnectionType to '0' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing SecureConnectionLevel to '0' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing DisableSecureFormsAuthenticationCookie to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing CleanupCycleMinutes to '10' minute(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing MaxActiveReqForOneUser to '20' requests(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing DatabaseQueryTimeout to '120' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing RunningRequestsScavengerCycle to '60' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing RunningRequestsDbCycle to '60' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing RunningRequestsAge to '30' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing MaxScheduleWait to '5' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing DisplayErrorLink to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing WebServiceUseFileShareStorage to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing WatsonFlags to '1064' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing WatsonDumpOnExceptions to 'Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingException' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing WatsonDumpExcludeIfContainsExceptions to 'System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderException' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing AuthenticationTypes to '4' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing RSWindowsExtendedProtectionLevel to 'Off' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing RSWindowsExtendedProtectionScenario to 'Proxy' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing EnableAuthPersistence to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing IsSchedulingService to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing IsNotificationService to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing IsEventService to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing PollingInterval to '10' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing WindowsServiceUseFileShareStorage to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing MemorySafetyMargin to '80' percent as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing MemoryThreshold to '90' percent as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing RecycleTime to '720' minute(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing MaxAppDomainUnloadTime to '30' minute(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing MaxQueueThreads to '0' thread(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: w WARN: Initializing UrlRoot to default value of '' because it was incorrectly specified in Configuration file as ''.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing IsWebServiceEnabled to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing IsReportManagerEnabled to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing MaxConnections to '2' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing Timeout to '10' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing AppID to '(Default)' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Initializing CacheLevel to 'Default' as specified in Configuration file.configmanager!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Using report server internal url http://localhost:80/ReportServer.configmanager!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Using report server external url http://SERVERNAME:80/ReportServer.configmanager!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: Using url root http://SERVERNAME:80/ReportServer.rpcserver!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: RPC Server stopped.servicecontroller!DefaultDomain!3e8!08/25/2016-11:47:42:: i INFO: RPC Server stopped. rshost!rshost!d28!08/25/2016-11:47:43:: i INFO: Currently registered url http://+:80/ReportServer/ on endpoint 2rshost!rshost!d28!08/25/2016-11:47:43:: i INFO: Currently registered url http://+:80/Reports/ on endpoint 3rshost!rshost!d28!08/25/2016-11:47:43:: i INFO: Endpoint 4 is disabled and no url is registered vdir=/ReportServer/ReportBuilder, pdir=C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\ReportBuilder.rshost!rshost!9cc!08/25/2016-11:47:43:: i INFO: Derived memory configuration based on physical memory as 2096672 KBappdomainmanager!DefaultDomain!9cc!08/25/2016-11:47:43:: i INFO: Appdomain:12 ReportServer_MSSQLSERVER_0-7-131165628120411866 unregistered.appdomainmanager!DefaultDomain!9cc!08/25/2016-11:47:43:: i INFO: Appdomain:13 ReportManager_MSSQLSERVER_0-8-131165632665643806 unregistered.servicecontroller!DefaultDomain!9cc!08/25/2016-11:47:43:: i INFO: Recycling the service from the default domaindbpolling!WindowsService_3!d28!08/25/2016-11:47:43:: i INFO: EventPolling polling service stoppeddbpolling!WindowsService_3!d28!08/25/2016-11:47:43:: i INFO: NotificationPolling polling service stoppeddbpolling!WindowsService_3!d28!08/25/2016-11:47:43:: i INFO: SchedulePolling polling service stoppeddbpolling!WindowsService_3!d28!08/25/2016-11:47:43:: i INFO: UpgradePolling polling service stoppedrshost!rshost!9cc!08/25/2016-11:47:43:: i INFO: Application domain type WindowsService statistics: created: 4, unloaded: 4, failed: 0, timed out: 0.appdomainmanager!DefaultDomain!9cc!08/25/2016-11:47:43:: i INFO: Appdomain:14 WindowsService_4 started.library!WindowsService_4!9cc!08/25/2016-11:47:43:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!WindowsService_4!9cc!08/25/2016-11:47:43:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!WindowsService_4!9cc!08/25/2016-11:47:43:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!WindowsService_4!9cc!08/25/2016-11:47:43:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!WindowsService_4!9cc!08/25/2016-11:47:43:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesresourceutilities!WindowsService_4!9cc!08/25/2016-11:47:43:: i INFO: Reporting Services starting SKU: Developerservicecontroller!WindowsService_3!9cc!08/25/2016-11:47:43:: i INFO: Service controller exiting.appdomainmanager!DefaultDomain!9cc!08/25/2016-11:47:43:: i INFO: Appdomain:11 unregistered.appdomainmanager!DefaultDomain!9cc!08/25/2016-11:47:43:: i INFO: Appdomain:11 WindowsService_3 unloading.library!WindowsService_4!1d44!08/25/2016-11:47:43:: i INFO: Catalog SQL Server Edition = Developerappdomainmanager!DefaultDomain!dcc!08/25/2016-11:47:43:: i INFO: AppDomain:11 0 pending unload(s)crypto!WindowsService_4!1d44!08/25/2016-11:47:43:: i INFO: Initializing crypto as user: NT Service\ReportServercrypto!WindowsService_4!1d44!08/25/2016-11:47:43:: i INFO: Exporting public keycrypto!WindowsService_4!1d44!08/25/2016-11:47:43:: i INFO: Performing sku validationcrypto!WindowsService_4!1d44!08/25/2016-11:47:43:: i INFO: Importing existing encryption keydbpolling!WindowsService_4!1d44!08/25/2016-11:47:44:: i INFO: EventPolling polling service starteddbpolling!WindowsService_4!1d44!08/25/2016-11:47:44:: i INFO: NotificationPolling polling service starteddbpolling!WindowsService_4!1d44!08/25/2016-11:47:44:: i INFO: SchedulePolling polling service starteddbpolling!WindowsService_4!1d44!08/25/2016-11:47:44:: i INFO: UpgradePolling polling service starteddbpolling!WindowsService_4!d28!08/25/2016-11:47:44:: i INFO: PollingMaintenance: Polling startedrpcserver!DefaultDomain!1d44!08/25/2016-11:47:44:: i INFO: RPC Server started.servicecontroller!DefaultDomain!1d44!08/25/2016-11:47:44:: i INFO: RPC Server started. Endpoint name ='ReportingServices$MSRS11.MSSQLSERVER'appdomainmanager!WindowsService_4!1d44!08/25/2016-11:47:44:: i INFO: Appdomain:14 WindowsService_4 initialized.appdomainmanager!DefaultDomain!ca8!08/25/2016-11:47:48:: i INFO: Appdomain:13 unregistered.rshost!rshost!ca8!08/25/2016-11:47:48:: i INFO: Application domain type ReportManager statistics: created: 4, unloaded: 4, failed: 0, timed out: 0.webserver!ReportServer_0-7!1d44!08/25/2016-11:48:13:: i INFO: Reporting Web Server stoppedappdomainmanager!DefaultDomain!ca8!08/25/2016-11:48:18:: i INFO: Appdomain:12 unregistered.rshost!rshost!ca8!08/25/2016-11:48:18:: i INFO: Application domain type ReportServer statistics: created: 4, unloaded: 4, failed: 0, timed out: 0.library!DefaultDomain!1528!08/25/2016-11:48:48:: i INFO: Catalog SQL Server Edition = Developerappdomainmanager!DefaultDomain!17dc!08/25/2016-11:48:52:: i INFO: Appdomain:15 ReportManager_MSSQLSERVER_0-9-131165705321179051 started.appdomainmanager!ReportManager_0-9!17dc!08/25/2016-11:48:54:: i INFO: RS authentication mode is 4; effective ASP.NET authentication mode is Windows. vdir=/Reports.appdomainmanager!DefaultDomain!17dc!08/25/2016-11:48:54:: i INFO: Appdomain:15 ReportManager_MSSQLSERVER_0-9-131165705321179051 initialized (#5).library!ReportManager_0-9!17dc!08/25/2016-11:48:58:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!ReportManager_0-9!17dc!08/25/2016-11:48:58:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!ReportManager_0-9!17dc!08/25/2016-11:48:58:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!ReportManager_0-9!17dc!08/25/2016-11:48:58:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!ReportManager_0-9!17dc!08/25/2016-11:48:58:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesui!ReportManager_0-9!17dc!08/25/2016-11:48:58:: i INFO: Registering with Software Usage Metrics Product:SQL Server 2012, Role:Microsoft SQL Server Reporting Services, RoleGuid:8cc0ac85-40f7-4886-9dab-021519800418ui!ReportManager_0-9!17dc!08/25/2016-11:48:58:: e ERROR: Software Usage Metrics initialize failedappdomainmanager!DefaultDomain!4d8!08/25/2016-11:49:01:: i INFO: Appdomain:16 ReportServer_MSSQLSERVER_0-10-131165705417169986 started.appdomainmanager!ReportServer_0-10!4d8!08/25/2016-11:49:03:: i INFO: RS authentication mode is 4; effective ASP.NET authentication mode is Windows. vdir=/ReportServer.appdomainmanager!DefaultDomain!4d8!08/25/2016-11:49:03:: i INFO: Appdomain:16 ReportServer_MSSQLSERVER_0-10-131165705417169986 initialized (#5).webserver!ReportServer_0-10!4d8!08/25/2016-11:49:23:: i INFO: Reporting Web Server startedlibrary!ReportServer_0-10!4d8!08/25/2016-11:49:23:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!ReportServer_0-10!4d8!08/25/2016-11:49:23:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!ReportServer_0-10!4d8!08/25/2016-11:49:23:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!ReportServer_0-10!4d8!08/25/2016-11:49:23:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!ReportServer_0-10!4d8!08/25/2016-11:49:23:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesresourceutilities!ReportServer_0-10!4d8!08/25/2016-11:49:23:: i INFO: Reporting Services starting SKU: Developerui!ReportServer_0-10!4d8!08/25/2016-11:49:23:: i INFO: Registering with Software Usage Metrics Product:SQL Server 2012, Role:Microsoft SQL Server Reporting Services, RoleGuid:8cc0ac85-40f7-4886-9dab-021519800418ui!ReportServer_0-10!4d8!08/25/2016-11:49:23:: e ERROR: Software Usage Metrics initialize failedlibrary!ReportServer_0-10!4d8!08/25/2016-11:49:23:: i INFO: Call to GetItemTypeAction(/).library!ReportServer_0-10!4d8!08/25/2016-11:49:24:: i INFO: Catalog SQL Server Edition = Developercrypto!ReportServer_0-10!4d8!08/25/2016-11:49:24:: i INFO: Initializing crypto as user: NT Service\ReportServercrypto!ReportServer_0-10!4d8!08/25/2016-11:49:24:: i INFO: Exporting public keycrypto!ReportServer_0-10!4d8!08/25/2016-11:49:24:: i INFO: Performing sku validationcrypto!ReportServer_0-10!4d8!08/25/2016-11:49:24:: i INFO: Importing existing encryption keylibrary!ReportServer_0-10!4d8!08/25/2016-11:49:25:: i INFO: Call to ListParentsAction(/).library!ReportServer_0-10!4d8!08/25/2016-11:49:25:: i INFO: Call to ListChildrenAction(/, False).webserver!ReportServer_0-10!4d8!08/25/2016-11:49:25:: i INFO: Processed folder '/'library!ReportServer_0-10!12f8!08/25/2016-11:49:26:: i INFO: Call to GetPermissionsAction(/).library!ReportServer_0-10!10e0!08/25/2016-11:49:26:: i INFO: Call to GetPropertiesAction(/, PathBased).library!ReportServer_0-10!12f8!08/25/2016-11:49:26:: i INFO: Call to GetPropertiesAction(/, PathBased).library!ReportServer_0-10!12f8!08/25/2016-11:49:26:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!10e0!08/25/2016-11:49:26:: i INFO: Call to ListChildrenAction(/, False).library!ReportServer_0-10!10e0!08/25/2016-11:49:26:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!12f8!08/25/2016-11:49:27:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!12f8!08/25/2016-11:49:27:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!196c!08/25/2016-11:49:36:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!196c!08/25/2016-11:49:36:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!196c!08/25/2016-11:49:36:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1484!08/25/2016-11:49:39:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1484!08/25/2016-11:49:39:: i INFO: Call to GetSystemPoliciesAction().library!ReportServer_0-10!1484!08/25/2016-11:49:39:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1484!08/25/2016-11:49:48:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1484!08/25/2016-11:49:49:: i INFO: Call to ListRolesAction(System).library!ReportServer_0-10!1484!08/25/2016-11:49:49:: i INFO: Call to GetSystemPoliciesAction().library!ReportServer_0-10!1484!08/25/2016-11:49:49:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1484!08/25/2016-11:49:54:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1484!08/25/2016-11:49:54:: i INFO: Call to ListRolesAction(System).library!ReportServer_0-10!1484!08/25/2016-11:49:54:: i INFO: Call to GetSystemPoliciesAction().library!ReportServer_0-10!1484!08/25/2016-11:49:54:: i INFO: Call to SetSystemPoliciesAction().library!ReportServer_0-10!1484!08/25/2016-11:49:54:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!17dc!08/25/2016-11:49:54:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!17dc!08/25/2016-11:49:54:: i INFO: Call to GetSystemPoliciesAction().library!ReportServer_0-10!17dc!08/25/2016-11:49:54:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1484!08/25/2016-11:50:02:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1484!08/25/2016-11:50:02:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1484!08/25/2016-11:50:02:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1d6c!08/25/2016-11:50:05:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1d6c!08/25/2016-11:50:05:: i INFO: Call to GetSystemPoliciesAction().library!ReportServer_0-10!1d6c!08/25/2016-11:50:05:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1484!08/25/2016-11:50:07:: i INFO: Call to GetPermissionsAction(/).library!ReportServer_0-10!1484!08/25/2016-11:50:07:: i INFO: Call to GetPropertiesAction(/, PathBased).library!ReportServer_0-10!1484!08/25/2016-11:50:07:: i INFO: Call to GetPropertiesAction(/, PathBased).library!ReportServer_0-10!1484!08/25/2016-11:50:07:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1484!08/25/2016-11:50:07:: i INFO: Call to ListChildrenAction(/, False).library!ReportServer_0-10!1484!08/25/2016-11:50:07:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1484!08/25/2016-11:50:07:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1484!08/25/2016-11:50:07:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!17dc!08/25/2016-11:50:09:: i INFO: Call to GetSystemPermissionsAction().extensionfactory!ReportServer_0-10!17dc!08/25/2016-11:50:09:: e ERROR: Exception caught instantiating TERADATA report server extension: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.IO.FileNotFoundException: Could not load file or assembly 'Teradata.Client.Provider, Version=12.0.0.0, Culture=neutral, PublicKeyToken=76b417ee2e04956c' or one of its dependencies. The system cannot find the file specified.File name: 'Teradata.Client.Provider, Version=12.0.0.0, Culture=neutral, PublicKeyToken=76b417ee2e04956c' at System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) at System.Reflection.Assembly.Load(String assemblyString) at Microsoft.ReportingServices.DataExtensions.TeradataConnectionWrapper.LoadTdAssembly() at Microsoft.ReportingServices.DataExtensions.TeradataConnectionWrapper.GetTdConnectionType() at Microsoft.ReportingServices.DataExtensions.TeradataConnectionWrapper..ctor()WRN: Assembly binding logging is turned OFF.To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.Note: There is some performance penalty associated with assembly bind failure logging.To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog]. --- End of inner exception stack trace --- at System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandle& ctor, Boolean& bNeedSecurityCheck) at System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean fillCache) at System.RuntimeType.CreateInstanceImpl(Boolean publicOnly, Boolean skipVisibilityChecks, Boolean fillCache) at System.Activator.CreateInstance(Type type, Boolean nonPublic) at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) at Microsoft.ReportingServices.Diagnostics.ExtensionClassFactory.<>c__DisplayClass2.<CreateExtensionObject>b__0() at Microsoft.ReportingServices.Diagnostics.RevertImpersonationContext.<>c__DisplayClass1.<Run>b__0(Object state) at System.Security.SecurityContext.runTryCode(Object userData) at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData) at System.Security.SecurityContext.Run(SecurityContext securityContext, ContextCallback callback, Object state) at Microsoft.ReportingServices.Diagnostics.RevertImpersonationContext.Run(ContextBody callback) at Microsoft.ReportingServices.Diagnostics.ExtensionClassFactory.CreateExtensionObject(Extension extConfig, Boolean typeOnly).extensionfactory!ReportServer_0-10!17dc!08/25/2016-11:50:10:: e ERROR: Exception caught instantiating SQLPDW report server extension: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ArgumentException: Unable to find the requested .Net Framework Data Provider. It may not be installed. at System.Data.Common.DbProviderFactories.GetFactory(String providerInvariantName) at Microsoft.ReportingServices.DataExtensions.SqlDwConnectionWrapper..ctor() --- End of inner exception stack trace --- at System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandle& ctor, Boolean& bNeedSecurityCheck) at System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean fillCache) at System.RuntimeType.CreateInstanceImpl(Boolean publicOnly, Boolean skipVisibilityChecks, Boolean fillCache) at System.Activator.CreateInstance(Type type, Boolean nonPublic) at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) at Microsoft.ReportingServices.Diagnostics.ExtensionClassFactory.<>c__DisplayClass2.<CreateExtensionObject>b__0() at Microsoft.ReportingServices.Diagnostics.RevertImpersonationContext.<>c__DisplayClass1.<Run>b__0(Object state) at System.Security.SecurityContext.runTryCode(Object userData) at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData) at System.Security.SecurityContext.Run(SecurityContext securityContext, ContextCallback callback, Object state) at Microsoft.ReportingServices.Diagnostics.RevertImpersonationContext.Run(ContextBody callback) at Microsoft.ReportingServices.Diagnostics.ExtensionClassFactory.CreateExtensionObject(Extension extConfig, Boolean typeOnly).library!ReportServer_0-10!17dc!08/25/2016-11:50:10:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!17dc!08/25/2016-11:50:10:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!4d8!08/25/2016-11:50:36:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1d6c!08/25/2016-11:50:36:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!196c!08/25/2016-11:50:51:: i INFO: Call to ListRolesAction(Catalog).library!ReportServer_0-10!196c!08/25/2016-11:50:57:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!196c!08/25/2016-11:50:57:: i INFO: Call to ().library!ReportServer_0-10!196c!08/25/2016-11:51:01:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!196c!08/25/2016-11:51:01:: i INFO: Call to ListSchedulesAction().library!ReportServer_0-10!1d6c!08/25/2016-11:51:28:: i INFO: Call to GetPermissionsAction(/).library!ReportServer_0-10!1d6c!08/25/2016-11:51:28:: i INFO: Call to GetPropertiesAction(/, PathBased).library!ReportServer_0-10!1d6c!08/25/2016-11:51:28:: i INFO: Call to GetPropertiesAction(/, PathBased).library!ReportServer_0-10!1d6c!08/25/2016-11:51:28:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1d6c!08/25/2016-11:51:28:: i INFO: Call to ListChildrenAction(/, False).library!ReportServer_0-10!1d6c!08/25/2016-11:51:28:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1d6c!08/25/2016-11:51:28:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1d6c!08/25/2016-11:51:28:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1884!08/25/2016-11:52:07:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1884!08/25/2016-11:52:07:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1884!08/25/2016-11:52:07:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!196c!08/25/2016-11:52:09:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!196c!08/25/2016-11:52:09:: i INFO: Call to GetSystemPoliciesAction().library!ReportServer_0-10!196c!08/25/2016-11:52:09:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1884!08/25/2016-11:53:20:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1884!08/25/2016-11:53:20:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1884!08/25/2016-11:53:20:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!17dc!08/25/2016-11:53:23:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!17dc!08/25/2016-11:53:23:: i INFO: Call to GetSystemPoliciesAction().library!ReportServer_0-10!17dc!08/25/2016-11:53:23:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1884!08/25/2016-11:53:25:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1884!08/25/2016-11:53:25:: i INFO: Call to ListSchedulesAction().library!ReportServer_0-10!1884!08/25/2016-11:53:25:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1884!08/25/2016-11:53:26:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1884!08/25/2016-11:53:26:: i INFO: Call to GetSystemPoliciesAction().library!ReportServer_0-10!1884!08/25/2016-11:53:26:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!10e0!08/25/2016-11:53:35:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!10e0!08/25/2016-11:53:35:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!10e0!08/25/2016-11:53:35:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1d6c!08/25/2016-11:53:37:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1d6c!08/25/2016-11:53:37:: i INFO: Call to ListSchedulesAction().library!ReportServer_0-10!1d6c!08/25/2016-11:53:37:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!10e0!08/25/2016-11:53:39:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!10e0!08/25/2016-11:53:39:: i INFO: Call to GetSystemPoliciesAction().library!ReportServer_0-10!10e0!08/25/2016-11:53:39:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1d6c!08/25/2016-11:53:42:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1d6c!08/25/2016-11:53:42:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1d6c!08/25/2016-11:53:42:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!12e0!08/25/2016-11:53:51:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!12e0!08/25/2016-11:53:51:: i INFO: Call to GetSystemPoliciesAction().library!ReportServer_0-10!12e0!08/25/2016-11:53:51:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!ddc!08/25/2016-11:53:52:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!ddc!08/25/2016-11:53:52:: i INFO: Call to ListSchedulesAction().library!ReportServer_0-10!ddc!08/25/2016-11:53:52:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1884!08/25/2016-11:54:25:: i INFO: Call to GetPermissionsAction(/).library!ReportServer_0-10!1884!08/25/2016-11:54:25:: i INFO: Call to GetPropertiesAction(/, PathBased).library!ReportServer_0-10!1884!08/25/2016-11:54:25:: i INFO: Call to GetPropertiesAction(/, PathBased).library!ReportServer_0-10!1884!08/25/2016-11:54:25:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1884!08/25/2016-11:54:25:: i INFO: Call to ListChildrenAction(/, False).library!ReportServer_0-10!1884!08/25/2016-11:54:25:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1884!08/25/2016-11:54:25:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1884!08/25/2016-11:54:25:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1068!08/25/2016-11:54:26:: i INFO: Call to GetPermissionsAction(/).library!ReportServer_0-10!1068!08/25/2016-11:54:26:: i INFO: Call to GetPropertiesAction(/, PathBased).library!ReportServer_0-10!1068!08/25/2016-11:54:26:: i INFO: Call to GetPropertiesAction(/, PathBased).library!ReportServer_0-10!1068!08/25/2016-11:54:26:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1068!08/25/2016-11:54:26:: i INFO: Call to ListChildrenAction(/, False).library!ReportServer_0-10!1068!08/25/2016-11:54:27:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1068!08/25/2016-11:54:27:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!1068!08/25/2016-11:54:27:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!2c4!08/25/2016-11:55:02:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1884!08/25/2016-11:55:29:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!1884!08/25/2016-11:55:29:: i INFO: Call to ListRolesAction(Catalog).library!ReportServer_0-10!1884!08/25/2016-11:55:29:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!2c4!08/25/2016-11:57:11:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!2c4!08/25/2016-11:57:11:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!2c4!08/25/2016-11:57:14:: i INFO: Call to GetSystemPermissionsAction().library!ReportServer_0-10!2c4!08/25/2016-11:57:14:: i INFO: Call to ListRolesAction(Catalog).library!ReportServer_0-10!2c4!08/25/2016-11:57:14:: i INFO: Call to GetSystemPropertiesAction().library!WindowsService_4!fe0!08/25/2016-11:57:45:: i INFO: Call to CleanBatch()library!WindowsService_4!fe0!08/25/2016-11:57:45:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_4!fe0!08/25/2016-11:57:45:: i INFO: Call to CleanBatch() endslibrary!ReportServer_0-10!2c4!08/25/2016-11:58:04:: i INFO: Call to GetSystemPropertiesAction().library!ReportServer_0-10!2c4!08/25/2016-11:58:04:: i INFO: Call to GetSystemPropertiesAction().dbpolling!WindowsService_4!9cc!08/25/2016-12:33:35:: i INFO: Skipping unreliable IsPollingWorking check.dbpolling!WindowsService_4!9cc!08/25/2016-12:48:25:: i INFO: Skipping unreliable IsPollingWorking check.appdomainmanager!DefaultDomain!ca8!08/25/2016-12:48:30:: i INFO: Appdomain:15 ReportManager_MSSQLSERVER_0-9-131165705321179051 unregistered.rshost!rshost!ca8!08/25/2016-12:48:30:: i INFO: Application domain type ReportManager statistics: created: 5, unloaded: 5, failed: 0, timed out: 0.appdomainmanager!DefaultDomain!1884!08/25/2016-12:49:14:: i INFO: Appdomain:17 ReportManager_MSSQLSERVER_0-11-131165741537392049 started.appdomainmanager!DefaultDomain!1884!08/25/2016-12:49:15:: e ERROR: AppDomain ReportManager_MSSQLSERVER_0 failed to start. Error: Could not load file or assembly 'ReportingServicesWebServer' or one of its dependencies. The system cannot find the file specified. (C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager\web.config line 20)library!DefaultDomain!1884!08/25/2016-12:49:15:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeInternalException: Failed to create HTTP Runtime, Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeInternalException: An internal or system error occurred in the HTTP Runtime object for application domain ReportManager_MSSQLSERVER_0. ---> System.Web.HttpException: Could not load file or assembly 'ReportingServicesWebServer' or one of its dependencies. The system cannot find the file specified. (C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager\web.config line 20) ---> System.Configuration.ConfigurationErrorsException: Could not load file or assembly 'ReportingServicesWebServer' or one of its dependencies. The system cannot find the file specified. (C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager\web.config line 20) ---> System.IO.FileNotFoundException: Could not load file or assembly 'ReportingServicesWebServer' or one of its dependencies. The system cannot find the file specified.File name: 'ReportingServicesWebServer' at System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) at System.Reflection.Assembly.Load(String assemblyString) at System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective)WRN: Assembly binding logging is turned OFF.To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.Note: There is some performance penalty associated with assembly bind failure logging.To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog]. --- End of inner exception stack trace --- at System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) at System.Web.Configuration.CompilationSection.LoadAssembly(AssemblyInfo ai) at System.Web.Configuration.AssemblyInfo.get_AssemblyInternal() at System.Web.Compilation.BuildManager.GetReferencedAssemblies(CompilationSection compConfig) at System.Web.Compilation.BuildProvidersCompiler..ctor(VirtualPath configPath, Boolean supportLocalization, String outputAssemblyName) at System.Web.Compilation.ApplicationBuildProvider.GetGlobalAsaxBuildResult(Boolean isPrecompiledApp) at System.Web.Compilation.BuildManager.CompileGlobalAsax() at System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled() --- End of inner exception stack appdomainmanager!ReportManager_0-11!1884!08/25/2016-12:49:15:: i INFO: Appdomain:17 ReportManager_MSSQLSERVER_0-11-131165741537392049 unloadinglibrary!DefaultDomain!1884!08/25/2016-12:49:15:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerAppDomainManagerException: Failed to create Report Server HTTP Runtime, Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerAppDomainManagerException: An error occurred when attempting to start the application domain ReportManager within the Report Server service. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeInternalException: An internal or system error occurred in the HTTP Runtime object for application domain ReportManager_MSSQLSERVER_0. ---> System.Web.HttpException: Could not load file or assembly 'ReportingServicesWebServer' or one of its dependencies. The system cannot find the file specified. (C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager\web.config line 20) ---> System.Configuration.ConfigurationErrorsException: Could not load file or assembly 'ReportingServicesWebServer' or one of its dependencies. The system cannot find the file specified. (C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager\web.config line 20) ---> System.IO.FileNotFoundException: Could not load file or assembly 'ReportingServicesWebServer' or one of its dependencies. The system cannot find the file specified. --- End of inner exception stack trace ---;rshost!rshost!1884!08/25/2016-12:49:15:: e ERROR: Failed to create HttpRuntime 80131500.rshost!rshost!1884!08/25/2016-12:49:15:: e ERROR: Failed to get appdomain 80131500, pipeline=0x00000000F00A32D0.rshost!rshost!1884!08/25/2016-12:49:15:: e ERROR: Error state. Internal abort for pipeline=0x00000000F00A32D0 ...library!ReportServer_0-10!1884!08/25/2016-12:49:19:: i INFO: Call to GetItemTypeAction(/).library!ReportServer_0-10!1884!08/25/2016-12:49:19:: i INFO: Call to ListParentsAction(/).library!ReportServer_0-10!1884!08/25/2016-12:49:19:: i INFO: Call to ListChildrenAction(/, False).webserver!ReportServer_0-10!1884!08/25/2016-12:49:19:: i INFO: Processed folder '/'appdomainmanager!DefaultDomain!ca8!08/25/2016-12:49:21:: i INFO: Appdomain:17 ReportManager_MSSQLSERVER_0-11-131165741537392049 unregistered.rshost!rshost!ca8!08/25/2016-12:49:21:: i INFO: Application domain type ReportManager statistics: created: 6, unloaded: 6, failed: 0, timed out: 0.configmanager!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Handling File Changeslibrary!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing ConnectionType to '0' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing SecureConnectionLevel to '0' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing DisableSecureFormsAuthenticationCookie to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing CleanupCycleMinutes to '10' minute(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing MaxActiveReqForOneUser to '20' requests(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing DatabaseQueryTimeout to '120' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing RunningRequestsScavengerCycle to '60' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing RunningRequestsDbCycle to '60' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing RunningRequestsAge to '30' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing MaxScheduleWait to '5' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing DisplayErrorLink to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing WebServiceUseFileShareStorage to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing WatsonFlags to '1064' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing WatsonDumpOnExceptions to 'Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingException' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing WatsonDumpExcludeIfContainsExceptions to 'System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderException' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing AuthenticationTypes to '16' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing RSWindowsExtendedProtectionLevel to 'Off' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing RSWindowsExtendedProtectionScenario to 'Proxy' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing EnableAuthPersistence to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing IsSchedulingService to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing IsNotificationService to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing IsEventService to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing PollingInterval to '10' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing WindowsServiceUseFileShareStorage to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing MemorySafetyMargin to '80' percent as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing MemoryThreshold to '90' percent as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing RecycleTime to '720' minute(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing MaxAppDomainUnloadTime to '30' minute(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing MaxQueueThreads to '0' thread(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: w WARN: Initializing UrlRoot to default value of '' because it was incorrectly specified in Configuration file as ''.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing IsWebServiceEnabled to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing IsReportManagerEnabled to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing loginUrl to '/Pages/UILogon.aspx' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing UseSSL to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing ReportServerUrl to 'http://servername/ReportServer' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing MaxConnections to '2' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing Timeout to '10' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing AppID to '(Default)' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Initializing CacheLevel to 'Default' as specified in Configuration file.configmanager!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Using report server internal url http://servername/ReportServer.configmanager!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Using report server external url http://SERVERNAME:80/ReportServer.configmanager!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: Using url root http://SERVERNAME:80/ReportServer.rpcserver!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: RPC Server stopped.servicecontroller!DefaultDomain!3e8!08/25/2016-12:50:06:: i INFO: RPC Server stopped. rshost!rshost!1528!08/25/2016-12:50:06:: i INFO: Currently registered url http://+:80/ReportServer/ on endpoint 2rshost!rshost!2c4!08/25/2016-12:50:06:: i INFO: Currently registered url http://+:80/Reports/ on endpoint 3rshost!rshost!100!08/25/2016-12:50:06:: i INFO: Endpoint 4 is disabled and no url is registered vdir=/ReportServer/ReportBuilder, pdir=C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\ReportBuilder.rshost!rshost!9cc!08/25/2016-12:50:06:: i INFO: Derived memory configuration based on physical memory as 2096672 KBappdomainmanager!DefaultDomain!9cc!08/25/2016-12:50:06:: i INFO: Appdomain:16 ReportServer_MSSQLSERVER_0-10-131165705417169986 unregistered.servicecontroller!DefaultDomain!9cc!08/25/2016-12:50:06:: i INFO: Recycling the service from the default domaindbpolling!WindowsService_4!2c4!08/25/2016-12:50:06:: i INFO: EventPolling polling service stoppeddbpolling!WindowsService_4!2c4!08/25/2016-12:50:06:: i INFO: NotificationPolling polling service stoppeddbpolling!WindowsService_4!2c4!08/25/2016-12:50:06:: i INFO: SchedulePolling polling service stoppeddbpolling!WindowsService_4!2c4!08/25/2016-12:50:06:: i INFO: UpgradePolling polling service stoppedrshost!rshost!9cc!08/25/2016-12:50:06:: i INFO: Application domain type WindowsService statistics: created: 5, unloaded: 5, failed: 0, timed out: 0.appdomainmanager!DefaultDomain!9cc!08/25/2016-12:50:06:: i INFO: Appdomain:18 WindowsService_5 started.library!WindowsService_5!9cc!08/25/2016-12:50:07:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!WindowsService_5!9cc!08/25/2016-12:50:07:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!WindowsService_5!9cc!08/25/2016-12:50:07:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!WindowsService_5!9cc!08/25/2016-12:50:07:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!WindowsService_5!9cc!08/25/2016-12:50:07:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesresourceutilities!WindowsService_5!9cc!08/25/2016-12:50:07:: i INFO: Reporting Services starting SKU: Developerservicecontroller!WindowsService_4!9cc!08/25/2016-12:50:07:: i INFO: Service controller exiting.appdomainmanager!DefaultDomain!9cc!08/25/2016-12:50:07:: i INFO: Appdomain:14 unregistered.appdomainmanager!DefaultDomain!9cc!08/25/2016-12:50:07:: i INFO: Appdomain:14 WindowsService_4 unloading.appdomainmanager!DefaultDomain!100!08/25/2016-12:50:07:: i INFO: AppDomain:14 0 pending unload(s)library!WindowsService_5!d28!08/25/2016-12:50:07:: i INFO: Catalog SQL Server Edition = Developercrypto!WindowsService_5!d28!08/25/2016-12:50:07:: i INFO: Initializing crypto as user: NT Service\ReportServercrypto!WindowsService_5!d28!08/25/2016-12:50:07:: i INFO: Exporting public keycrypto!WindowsService_5!d28!08/25/2016-12:50:07:: i INFO: Performing sku validationcrypto!WindowsService_5!d28!08/25/2016-12:50:07:: i INFO: Importing existing encryption keydbpolling!WindowsService_5!d28!08/25/2016-12:50:07:: i INFO: EventPolling polling service starteddbpolling!WindowsService_5!d28!08/25/2016-12:50:07:: i INFO: NotificationPolling polling service starteddbpolling!WindowsService_5!d28!08/25/2016-12:50:07:: i INFO: SchedulePolling polling service starteddbpolling!WindowsService_5!d28!08/25/2016-12:50:07:: i INFO: UpgradePolling polling service starteddbpolling!WindowsService_5!2c4!08/25/2016-12:50:07:: i INFO: PollingMaintenance: Polling startedrpcserver!DefaultDomain!d28!08/25/2016-12:50:07:: i INFO: RPC Server started.servicecontroller!DefaultDomain!d28!08/25/2016-12:50:07:: i INFO: RPC Server started. Endpoint name ='ReportingServices$MSRS11.MSSQLSERVER'appdomainmanager!WindowsService_5!d28!08/25/2016-12:50:07:: i INFO: Appdomain:18 WindowsService_5 initialized.library!DefaultDomain!1528!08/25/2016-12:50:34:: i INFO: Catalog SQL Server Edition = Developerwebserver!ReportServer_0-10!100!08/25/2016-12:50:36:: i INFO: Reporting Web Server stoppedappdomainmanager!DefaultDomain!17dc!08/25/2016-12:50:37:: i INFO: Appdomain:19 ReportManager_MSSQLSERVER_0-12-131165742367640073 started.appdomainmanager!ReportManager_0-12!17dc!08/25/2016-12:50:40:: i INFO: RS authentication mode is 16; effective ASP.NET authentication mode is Forms. vdir=/Reports.appdomainmanager!DefaultDomain!17dc!08/25/2016-12:50:40:: i INFO: Appdomain:19 ReportManager_MSSQLSERVER_0-12-131165742367640073 initialized (#6).library!ReportManager_0-12!17dc!08/25/2016-12:50:40:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!ReportManager_0-12!17dc!08/25/2016-12:50:40:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!ReportManager_0-12!17dc!08/25/2016-12:50:40:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!ReportManager_0-12!17dc!08/25/2016-12:50:40:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!ReportManager_0-12!17dc!08/25/2016-12:50:40:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesui!ReportManager_0-12!17dc!08/25/2016-12:50:40:: i INFO: Registering with Software Usage Metrics Product:SQL Server 2012, Role:Microsoft SQL Server Reporting Services, RoleGuid:8cc0ac85-40f7-4886-9dab-021519800418ui!ReportManager_0-12!17dc!08/25/2016-12:50:40:: e ERROR: Software Usage Metrics initialize failedappdomainmanager!DefaultDomain!ca8!08/25/2016-12:50:41:: i INFO: Appdomain:16 unregistered.rshost!rshost!ca8!08/25/2016-12:50:41:: i INFO: Application domain type ReportServer statistics: created: 5, unloaded: 5, failed: 0, timed out: 0.appdomainmanager!DefaultDomain!b00!08/25/2016-12:50:45:: i INFO: Appdomain:20 ReportServer_MSSQLSERVER_0-13-131165742447203603 started.appdomainmanager!ReportServer_0-13!b00!08/25/2016-12:50:46:: i INFO: RS authentication mode is 16; effective ASP.NET authentication mode is Forms. vdir=/ReportServer.appdomainmanager!DefaultDomain!b00!08/25/2016-12:50:46:: i INFO: Appdomain:20 ReportServer_MSSQLSERVER_0-13-131165742447203603 initialized (#6).webserver!ReportServer_0-13!b00!08/25/2016-12:50:47:: i INFO: Reporting Web Server startedlibrary!ReportServer_0-13!b00!08/25/2016-12:50:47:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!ReportServer_0-13!b00!08/25/2016-12:50:47:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!ReportServer_0-13!b00!08/25/2016-12:50:47:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!ReportServer_0-13!b00!08/25/2016-12:50:47:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!ReportServer_0-13!b00!08/25/2016-12:50:47:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesresourceutilities!ReportServer_0-13!b00!08/25/2016-12:50:47:: i INFO: Reporting Services starting SKU: Developerui!ReportServer_0-13!b00!08/25/2016-12:50:47:: i INFO: Registering with Software Usage Metrics Product:SQL Server 2012, Role:Microsoft SQL Server Reporting Services, RoleGuid:8cc0ac85-40f7-4886-9dab-021519800418ui!ReportServer_0-13!b00!08/25/2016-12:50:47:: e ERROR: Software Usage Metrics initialize failedlibrary!ReportServer_0-13!214!08/25/2016-12:50:48:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;library!ReportServer_0-13!214!08/25/2016-12:50:48:: i INFO: Catalog SQL Server Edition = Developercrypto!ReportServer_0-13!214!08/25/2016-12:50:48:: i INFO: Initializing crypto as user: NT Service\ReportServercrypto!ReportServer_0-13!214!08/25/2016-12:50:48:: i INFO: Exporting public keycrypto!ReportServer_0-13!214!08/25/2016-12:50:48:: i INFO: Performing sku validationcrypto!ReportServer_0-13!214!08/25/2016-12:50:48:: i INFO: Importing existing encryption keylibrary!WindowsService_5!1d44!08/25/2016-12:17:40:: i INFO: Call to CleanBatch()library!WindowsService_5!1d44!08/25/2016-12:17:40:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_5!1d44!08/25/2016-12:17:40:: i INFO: Call to CleanBatch() endslibrary!ReportServer_0-13!1528!08/25/2016-13:13:11:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;appdomainmanager!DefaultDomain!ca8!08/25/2016-13:13:22:: i INFO: Appdomain:19 ReportManager_MSSQLSERVER_0-12-131165742367640073 unregistered.rshost!rshost!ca8!08/25/2016-13:13:22:: i INFO: Application domain type ReportManager statistics: created: 7, unloaded: 7, failed: 0, timed out: 0.appdomainmanager!DefaultDomain!214!08/25/2016-13:13:36:: i INFO: Appdomain:21 ReportManager_MSSQLSERVER_0-14-131165756164264458 started.appdomainmanager!ReportManager_0-14!214!08/25/2016-13:13:38:: i INFO: RS authentication mode is 16; effective ASP.NET authentication mode is Forms. vdir=/Reports.appdomainmanager!DefaultDomain!214!08/25/2016-13:13:38:: i INFO: Appdomain:21 ReportManager_MSSQLSERVER_0-14-131165756164264458 initialized (#7).library!ReportManager_0-14!214!08/25/2016-13:13:38:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!ReportManager_0-14!214!08/25/2016-13:13:38:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!ReportManager_0-14!214!08/25/2016-13:13:38:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!ReportManager_0-14!214!08/25/2016-13:13:38:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!ReportManager_0-14!214!08/25/2016-13:13:38:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesui!ReportManager_0-14!214!08/25/2016-13:13:38:: i INFO: Registering with Software Usage Metrics Product:SQL Server 2012, Role:Microsoft SQL Server Reporting Services, RoleGuid:8cc0ac85-40f7-4886-9dab-021519800418ui!ReportManager_0-14!214!08/25/2016-13:13:38:: e ERROR: Software Usage Metrics initialize failedlibrary!ReportServer_0-13!214!08/25/2016-13:14:47:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;appdomainmanager!DefaultDomain!ca8!08/25/2016-13:15:00:: i INFO: Appdomain:21 ReportManager_MSSQLSERVER_0-14-131165756164264458 unregistered.rshost!rshost!ca8!08/25/2016-13:15:00:: i INFO: Application domain type ReportManager statistics: created: 8, unloaded: 8, failed: 0, timed out: 0.appdomainmanager!DefaultDomain!214!08/25/2016-13:15:05:: i INFO: Appdomain:22 ReportManager_MSSQLSERVER_0-15-131165757053241520 started.appdomainmanager!ReportManager_0-15!214!08/25/2016-13:15:07:: i INFO: RS authentication mode is 16; effective ASP.NET authentication mode is Forms. vdir=/Reports.appdomainmanager!DefaultDomain!214!08/25/2016-13:15:07:: i INFO: Appdomain:22 ReportManager_MSSQLSERVER_0-15-131165757053241520 initialized (#8).library!ReportManager_0-15!214!08/25/2016-13:15:07:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!ReportManager_0-15!214!08/25/2016-13:15:07:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!ReportManager_0-15!214!08/25/2016-13:15:07:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!ReportManager_0-15!214!08/25/2016-13:15:07:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!ReportManager_0-15!214!08/25/2016-13:15:07:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesui!ReportManager_0-15!214!08/25/2016-13:15:07:: i INFO: Registering with Software Usage Metrics Product:SQL Server 2012, Role:Microsoft SQL Server Reporting Services, RoleGuid:8cc0ac85-40f7-4886-9dab-021519800418ui!ReportManager_0-15!214!08/25/2016-13:15:07:: e ERROR: Software Usage Metrics initialize failedlibrary!ReportServer_0-13!18dc!08/25/2016-13:16:43:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;appdomainmanager!DefaultDomain!ca8!08/25/2016-13:16:56:: i INFO: Appdomain:22 ReportManager_MSSQLSERVER_0-15-131165757053241520 unregistered.rshost!rshost!ca8!08/25/2016-13:16:56:: i INFO: Application domain type ReportManager statistics: created: 9, unloaded: 9, failed: 0, timed out: 0.appdomainmanager!DefaultDomain!17dc!08/25/2016-13:16:59:: i INFO: Appdomain:23 ReportManager_MSSQLSERVER_0-16-131165758189576484 started.appdomainmanager!ReportManager_0-16!17dc!08/25/2016-13:17:00:: i INFO: RS authentication mode is 16; effective ASP.NET authentication mode is Forms. vdir=/Reports.appdomainmanager!DefaultDomain!17dc!08/25/2016-13:17:00:: i INFO: Appdomain:23 ReportManager_MSSQLSERVER_0-16-131165758189576484 initialized (#9).library!ReportManager_0-16!17dc!08/25/2016-13:17:01:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!ReportManager_0-16!17dc!08/25/2016-13:17:01:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!ReportManager_0-16!17dc!08/25/2016-13:17:01:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!ReportManager_0-16!17dc!08/25/2016-13:17:01:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!ReportManager_0-16!17dc!08/25/2016-13:17:01:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesui!ReportManager_0-16!17dc!08/25/2016-13:17:01:: i INFO: Registering with Software Usage Metrics Product:SQL Server 2012, Role:Microsoft SQL Server Reporting Services, RoleGuid:8cc0ac85-40f7-4886-9dab-021519800418ui!ReportManager_0-16!17dc!08/25/2016-13:17:01:: e ERROR: Software Usage Metrics initialize failedlibrary!WindowsService_5!100!08/25/2016-13:18:55:: i INFO: Call to CleanBatch()library!WindowsService_5!100!08/25/2016-13:18:55:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_5!100!08/25/2016-13:18:55:: i INFO: Call to CleanBatch() endslibrary!ReportServer_0-13!1528!08/25/2016-13:19:07:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;appdomainmanager!DefaultDomain!ca8!08/25/2016-13:19:18:: i INFO: Appdomain:23 ReportManager_MSSQLSERVER_0-16-131165758189576484 unregistered.rshost!rshost!ca8!08/25/2016-13:19:18:: i INFO: Application domain type ReportManager statistics: created: 10, unloaded: 10, failed: 0, timed out: 0.appdomainmanager!DefaultDomain!1d74!08/25/2016-13:19:21:: i INFO: Appdomain:24 ReportManager_MSSQLSERVER_0-17-131165759612264702 started.appdomainmanager!ReportManager_0-17!1d74!08/25/2016-13:19:23:: i INFO: RS authentication mode is 16; effective ASP.NET authentication mode is Forms. vdir=/Reports.appdomainmanager!DefaultDomain!1d74!08/25/2016-13:19:23:: i INFO: Appdomain:24 ReportManager_MSSQLSERVER_0-17-131165759612264702 initialized (#10).library!ReportManager_0-17!1d74!08/25/2016-13:19:23:: i INFO: SQLDump flags: ReferencedMemory, AllThreads, SendToWatsonlibrary!ReportManager_0-17!1d74!08/25/2016-13:19:23:: i INFO: MiniDump flags: DataSegs, UnloadedModules, ProcessThreadDatalibrary!ReportManager_0-17!1d74!08/25/2016-13:19:23:: i INFO: Dump on: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingExceptionlibrary!ReportManager_0-17!1d74!08/25/2016-13:19:23:: i INFO: Do not dump on: System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderExceptionlibrary!ReportManager_0-17!1d74!08/25/2016-13:19:23:: i INFO: Minidump location: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\Logfilesui!ReportManager_0-17!1d74!08/25/2016-13:19:23:: i INFO: Registering with Software Usage Metrics Product:SQL Server 2012, Role:Microsoft SQL Server Reporting Services, RoleGuid:8cc0ac85-40f7-4886-9dab-021519800418ui!ReportManager_0-17!1d74!08/25/2016-13:19:23:: e ERROR: Software Usage Metrics initialize failedconfigmanager!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Handling File Changeslibrary!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing ConnectionType to '0' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing SecureConnectionLevel to '0' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing DisableSecureFormsAuthenticationCookie to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing CleanupCycleMinutes to '10' minute(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing MaxActiveReqForOneUser to '20' requests(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing DatabaseQueryTimeout to '120' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing RunningRequestsScavengerCycle to '60' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing RunningRequestsDbCycle to '60' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing RunningRequestsAge to '30' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing MaxScheduleWait to '5' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing DisplayErrorLink to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing WebServiceUseFileShareStorage to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing WatsonFlags to '1064' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing WatsonDumpOnExceptions to 'Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingException' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing WatsonDumpExcludeIfContainsExceptions to 'System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderException' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing AuthenticationTypes to '16' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing RSWindowsExtendedProtectionLevel to 'Off' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing RSWindowsExtendedProtectionScenario to 'Proxy' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing EnableAuthPersistence to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing IsSchedulingService to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing IsNotificationService to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing IsEventService to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing PollingInterval to '10' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing WindowsServiceUseFileShareStorage to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing MemorySafetyMargin to '80' percent as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing MemoryThreshold to '90' percent as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing RecycleTime to '720' minute(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing MaxAppDomainUnloadTime to '30' minute(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing MaxQueueThreads to '0' thread(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: w WARN: Initializing UrlRoot to default value of '' because it was incorrectly specified in Configuration file as ''.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing IsWebServiceEnabled to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing IsReportManagerEnabled to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing loginUrl to '/Pages/UILogon.aspx' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing UseSSL to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing ReportServerUrl to 'http://servername/ReportServer' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing MaxConnections to '2' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing Timeout to '10' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing AppID to '(Default)' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Initializing CacheLevel to 'Default' as specified in Configuration file.configmanager!DefaultDomain!3e8!08/25/2016-13:23:06:: i INFO: Properties are unchanged from previous settings.library!ReportServer_0-13!1a34!08/25/2016-13:24:19:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;configmanager!DefaultDomain!3e8!08/25/2016-13:25:59:: i INFO: Handling File Changeslibrary!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing ConnectionType to '0' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing SecureConnectionLevel to '0' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing DisableSecureFormsAuthenticationCookie to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing CleanupCycleMinutes to '10' minute(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing MaxActiveReqForOneUser to '20' requests(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing DatabaseQueryTimeout to '120' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing RunningRequestsScavengerCycle to '60' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing RunningRequestsDbCycle to '60' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing RunningRequestsAge to '30' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing MaxScheduleWait to '5' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing DisplayErrorLink to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing WebServiceUseFileShareStorage to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing WatsonFlags to '1064' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing WatsonDumpOnExceptions to 'Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException,Microsoft.ReportingServices.ReportProcessing.UnhandledReportRenderingException' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing WatsonDumpExcludeIfContainsExceptions to 'System.Threading.ThreadAbortException,System.Web.UI.ViewStateException,System.OutOfMemoryException,System.Web.HttpException,System.IO.IOException,System.IO.FileLoadException,Microsoft.SharePoint.SPException,Microsoft.ReportingServices.WmiProvider.WMIProviderException' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing AuthenticationTypes to '16' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing RSWindowsExtendedProtectionLevel to 'Off' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing RSWindowsExtendedProtectionScenario to 'Proxy' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing EnableAuthPersistence to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing IsSchedulingService to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing IsNotificationService to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing IsEventService to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing PollingInterval to '10' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing WindowsServiceUseFileShareStorage to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing MemorySafetyMargin to '80' percent as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing MemoryThreshold to '90' percent as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing RecycleTime to '720' minute(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing MaxAppDomainUnloadTime to '30' minute(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing MaxQueueThreads to '0' thread(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: w WARN: Initializing UrlRoot to default value of '' because it was incorrectly specified in Configuration file as ''.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing IsWebServiceEnabled to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing IsReportManagerEnabled to 'True' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing loginUrl to '/Pages/UILogon.aspx' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing UseSSL to 'False' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing ReportServerUrl to 'http://servername/ReportServer' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing MaxConnections to '2' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing Timeout to '10' second(s) as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing AppID to '(Default)' as specified in Configuration file.library!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Initializing CacheLevel to 'Default' as specified in Configuration file.configmanager!DefaultDomain!3e8!08/25/2016-13:26:00:: i INFO: Properties are unchanged from previous settings.library!ReportServer_0-13!4cc!08/25/2016-13:26:20:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;library!WindowsService_5!100!08/25/2016-13:28:56:: i INFO: Call to CleanBatch()library!WindowsService_5!100!08/25/2016-13:28:56:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_5!100!08/25/2016-13:28:56:: i INFO: Call to CleanBatch() endslibrary!WindowsService_5!1d44!08/25/2016-13:38:54:: i INFO: Call to CleanBatch()library!WindowsService_5!1d44!08/25/2016-13:38:54:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_5!1d44!08/25/2016-13:38:54:: i INFO: Call to CleanBatch() endslibrary!WindowsService_5!1d44!08/25/2016-13:48:55:: i INFO: Call to CleanBatch()library!WindowsService_5!1d44!08/25/2016-13:48:55:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_5!1d44!08/25/2016-13:48:55:: i INFO: Call to CleanBatch() endslibrary!WindowsService_5!1d44!08/25/2016-13:58:54:: i INFO: Call to CleanBatch()library!WindowsService_5!1d44!08/25/2016-13:58:55:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_5!1d44!08/25/2016-13:58:55:: i INFO: Call to CleanBatch() endslibrary!WindowsService_5!1d44!08/25/2016-14:08:56:: i INFO: Call to CleanBatch()library!WindowsService_5!1d44!08/25/2016-14:08:56:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_5!1d44!08/25/2016-14:08:56:: i INFO: Call to CleanBatch() endslibrary!ReportServer_0-13!1e4!08/25/2016-14:17:25:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: , Microsoft.ReportingServices.Diagnostics.Utilities.AuthenticationExtensionException: The Authentication Extension threw an unexpected exception or returned a value that is not valid: . ---> System.NullReferenceException: Anonymous logon is not configured. userIdentity should not be null! at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.GetUserInfo(IIdentity& userIdentity, IntPtr& userId) at Microsoft.ReportingServices.WebServer.WebServiceHelper.ConstructRSServiceObjectFromSecurityExtension() --- End of inner exception stack trace ---;webserver!ReportServer_0-13!1e4!08/25/2016-14:17:50:: e ERROR: System.Exception: An error occurred while attempting to verify the user.A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 25 - Connection string is not valid) at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationUtilities.VerifyPassword(String suppliedUserName, String suppliedPassword) at Microsoft.Samples.ReportingServices.CustomSecurity.AuthenticationExtension.LogonUser(String userName, String password, String authority) at Microsoft.ReportingServices.WebServer.RSCustomAuthentication.LogonUser(String userName, String password, String authority) at Microsoft.ReportingServices.WebServer.RsSoapBase.InternalLogonUser(String userName, String password, String authority) at Microsoft.ReportingServices.WebServer.ReportingService2010.LogonUser(String userName, String password, String authority)library!WindowsService_5!100!08/25/2016-14:18:55:: i INFO: Call to CleanBatch()library!WindowsService_5!100!08/25/2016-14:18:55:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams, 0 segments, 0 segment mappings, 0 edit sessions.library!WindowsService_5!100!08/25/2016-14:18:55:: i INFO: Call to CleanBatch() ends[/code]

Add T&C Page to SSRS report

$
0
0
Hi all,Have you ever tried adding Terms and Condition Page in side your RDLC/RDL report. In my scenario, the Terms and Condition page will show in every even page, it is especially for duplex printing. To simplify, on 1st page it will show the invoice data, on 2nd page it will show the Terms and Conditions , on 3rd page, it will show continuation of invoice data, on 3rd page, it will show Terms and Conditions. Can we achieve it with SSRS designing itself? Kindly shed some light.
Viewing all 534 articles
Browse latest View live