SSRS and a report of 3,000,000 rows

I have SQL Server 2008 R2 with SSRS. I have created an SSRS report that may contain up to 3,000,000 rows.
When I tried to generate such huge report I saw the following picture:
The stored procedure (one that brings the data into the Report) worked 50 seconds
After this the SSRS ReportingServivesService.exe started to consume a lot of memory. It's Working Set grew up to 11 GB. It took 6 minutes; and then the report generation failed with the following error message:
An error has occurred during report processing. (rsProcessingAborted)
There is not enough space on the disk.
“There is not enough space on the disk.” – this was probably about the disk drive on that server where the Windows page file was mapped into. The drive had 14 GB of free space.
A NOTE: the report was not designed as a single-page report. It is divided on pages by 40 rows. When I try to generate the same report with 10,000 rows – it takes just 1 minute.
The question is: can this be fixed somehow?

I have an MS SQL Server 2008 R2 with SSRS. I have created an SSRS report that may contain up to 3,000,000 rows.
When I tried to generate such huge report I saw the following picture:
-          The stored procedure (one that brings the data into the Report) worked 50 seconds
-          After this the SSRS ReportingServivesService.exe started to consume a lot of memory. Its Working Set grew up to 11 GB. It took 6 minutes; and then the report generation failed with the following error message:
An error has occurred during report processing. (rsProcessingAborted)
There is not enough space on the disk.
“There is not enough space on the disk.” – this was probably about the disk drive on that server where the Windows page file was mapped into. The drive had 14 GB of free space.
A NOTE: the Report was not designed as a single-page report. It is divided on pages by 40 rows. When I try to generate the same Report with  10,000 rows – it takes just 1 minute.
The question is: can this be fixed somehow?

Similar Messages

  • Displaying a report with 250 000 rows in BI Publisher 11.1.1.6 == very slow

    Hi,
    I try to display a report with 250 000 rows in bi publisher 11.1.1.6.
    Running the SQL Request in TOAD take 20s.
    From bi publisher 11.1.1.6 this operation take more than 2 hour without result.
    The temp file show an xml file which increase (53 M to 70M to 100 M)
    I configure jvm (1.6_029) with the following parameters : Xms512m - Xmx2048 -XX:MaxPermSize=3072m
    My configuration is the following :
    REHL5 64bits
    8G RAM
    100G file system and 50 GB tmp file for bi publisher
    4 CPU
    Jdk Parameters:
    Xms512m -Xmx2048m -XX:MaxPermSize=3072m -XX:UseParallelGC.
    Total CPU usage : 25%
    Live Threads : 85 threads
    Used : 665 Mb
    Commited : 908 Mb
    GC time :
    8.047 s on PS MarkSweep (3 collections)
    8.625 s on PS Scavenge (242 collections)
    Any idea to increase performance or other will be appreciate.
    Thank you
    Mams

    If you are generating a PDF output, select "PDF Compression" option in the properties. Ensure you reduce all the log levels to "Low". Ensure there are no (or minimal) calculations/formulas in the report template.

  • Best practice for making a report of 10,000 to 20,000 rows(OBIEE 10.3.4.1)

    My Scenario is like this:*
    Hi i have 2 fact tables fact1 and fact 2 and four dimension tables D1,D2,D3 ,D4 & D1.1 ,D1.2 the relations in the data model is like this :
    NOTE: D1.1 and D1.2 are derived from D1 So D1 might be snow Flake.
    [( D1.. 1:M..> Fact 1 , D1.. 1:M..> Fact 2 ), (D2.. 1:M..> Fact 1 , D2.. 1:M..> Fact 2 ), ( D3.. 1: M.> Fact 1 , D3.. 1:M..> Fact 2 ),( D4.. 1:M..> Fact 1 , D4 ... 1:M..> Fact 2 )]
    Now from D1 there is a child level like this: [D1 --(1:M)..> D1.1 and from D1.1.. 1:M..> D1.2.. 1:M..> D4]
    Please help me in modeling these for making a report of 10,000 rows and also let me know for which tables do i need to enable cache?
    PS: There shouldn't be performance issue so please help me in modeling this.
    Thanks in Advance for the Experts who are helping me for a while.

    Shudn't be much problem with just these many rows...
    Model something like this only Re: URGENT MODELING SNOW FLAKE SCHEMA
    There are various ways of handling performance issues if any in OBIEE.
    Go for caching strategy for complete warehouse. Make sure to purge it after every data load..If you have aggr calculations at higher level then you can also go for aggregated tables in OBIEE for better performance.
    http://www.rittmanmead.com/2007/10/using-the-obiee-aggregate-persistence-wizard/
    Hope this is clear...Go ahead with actual implementation and lets us know incase you encounter any major issues.
    Cheers

  • Processing a cursor of 11,000 rows and Query completed with errors

    So I have 3rd party data that I have loaded into a SQL Server Table. I am trying to determine if the 3rd party Members reside in our database by using a cursor and going through all 11,000 rows...substituting the #Parameter Values in a LIKE statement...trying
    to keep it pretty broad. I tried running this in SQL Server Management Studio and it chunked for about 5 minutes and then just quit. I kind of figured I was pushing the buffer limits within SQL Server Management Studio. So instead I created it as a Stored
    Procedure and changed my Query Option/Results and checked Discard results after execution. This time it chunked away for 38 minutes and then stopped saying
    Query completed with errors. I did throw a COMMIT in there thinking that the COMMIT would hit and free up resources and I'd see the Table being loaded in chunks. But that didn't seem to work.
    I'm kind of at a loss here in terms of trying to tie back this data.
    Can anyone suggest anything on this???
    Thanks for your review and am hopeful for a reply.
    WHILE (@@FETCH_STATUS=0)
    BEGIN
    SET @SQLString = 'INSERT INTO [dbo].[FBMCNameMatch]' + @NewLineChar;
    SET @SQLString = ' (' + @NewLineChar;
    SET @SQLString = ' [FBMCMemberKey],' + @NewLineChar;
    SET @SQLString = ' [HFHPMemberNbr]' + @NewLineChar;
    SET @SQLString = ' )' + @NewLineChar;
    SET @SQLString = 'SELECT ';
    SET @SQLString = @SQLString + CAST(@FBMCMemberKey AS VARCHAR) + ',' + @NewLineChar;
    SET @SQLString = @SQLString + ' [member].[MEMBER_NBR]' + @NewLineChar;
    SET @SQLString = @SQLString + 'FROM [Report].[dbo].[member] ' + @NewLineChar;
    SET @SQLString = @SQLString + 'WHERE [member].[NAME_FIRST] LIKE ' + '''' + '%' + @FirstName + '%' + '''' + ' ' + @NewLineChar;
    SET @SQLString = @SQLString + 'AND [member].[NAME_LAST] LIKE ' + '''' + '%' + @LastName + '%' + '''' + ' ' + @NewLineChar;
    EXEC (@SQLString)
    --SELECT @SQLReturnValue
    SET @CountFBMCNameMatchINSERT = @CountFBMCNameMatchINSERT + 1
    IF @CountFBMCNameMatchINSERT = 100
    BEGIN
    COMMIT;
    SET @CountFBMCNameMatchINSERT = 0;
    END
    FETCH NEXT
    FROM FBMC_Member_Roster_Cursor
    INTO @MemberIdentity,
    @FBMCMemberKey,
    @ClientName,
    @MemberSSN,
    @FirstName,
    @MiddleInitial,
    @LastName,
    @AddressLine1,
    @AddressLine2,
    @City,
    @State,
    @Zipcode,
    @TelephoneNumber,
    @BirthDate,
    @Gender,
    @EmailAddress,
    @Relation
    END
    --SELECT *
    --FROM [#TempTable_FBMC_Name_Match]
    CLOSE FBMC_Member_Roster_Cursor;
    DEALLOCATE FBMC_Member_Roster_Cursor;
    GO

    Hi ITBobbyP,
    As Erland suggested, you can compare all rows at once. Basing on my understanding on your code, the below code can lead to the same output as yours but have a better performance than cursor I believe.
    CREATE TABLE [MemberRoster]
    MemberKey INT,
    FirstName VARCHAR(99),
    LastName VARCHAR(99)
    INSERT INTO [MemberRoster]
    VALUES
    (1,'Eric','Zhang'),
    (2,'Jackie','Cheng'),
    (3,'Bruce','Lin');
    CREATE TABLE [yourCursorTable]
    MemberNbr INT,
    FirstName VARCHAR(99),
    LastName VARCHAR(99)
    INSERT INTO [yourCursorTable]
    VALUES
    (1,'Bruce','Li'),
    (2,'Jack','Chen');
    SELECT * FROM [MemberRoster]
    SELECT * FROM [yourCursorTable]
    --INSERT INTO [dbo].[NameMatch]
    --[MemberNbr],
    --[MemberKey]
    SELECT y.MemberNbr,
    n.[MemberKey]
    FROM [dbo].[MemberRoster] n
    JOIN [yourCursorTable] y
    ON n.[FirstName] LIKE '%'+y.FirstName+'%'
    AND n.[LastName] LIKE '%'+y.LastName+'%'
    DROP TABLE [MemberRoster], [yourCursorTable]
    If you have any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • HT4314 There is a defect in SpellTower.  I was in the middle of a game of Puzzle Mode on my iPhone and had passed the 63,000  point level.  The game then disappeared without any record.  My wife had a similar problem on her iPad in Tower mode. Fibonacci44

    Has anyone else had the following problem with Spell Tower?  I was in the middle of a game in Puzzle mode on my iPhone and had passed the 63,000 point mark. I paused the game (as I had many times before).  When I tried to resume the game, the game had vanished without any record.  My wife had a similar problem in Tower Mode.  In addition, the Apple support page says that, to report an issue, one should click on a specified link at the bottom of the information page for the App in question.  There is no such link on the SpellTower information page.  Fibonacci44

    There are two separate issues here.
    1.  There is a potential problem with the game Spelltower.  That needs to be discussed directly with Spelltower.  My attempted emails to Spelltower have been bounced.
    2.  Apple, on its own webpage, purports to establish a procedure for reporting an issue with an app.  But that procedure does not work with Spelltower because someone at Apple neglected to include a link on the relevant information page.  I have been trying to find that contact info without success.  Apple should take ownership of supplying that contact info.

  • 15 000 rows in reports Cisco Prime Infrastructure 2.2???

    Hi all!!! There is a problem with reports exports in csv, pdf formats.The report is divided into several csv or pdf files with max number of rows in the file - 15 000 rows. Can be done to a report generated by a single file (csv or pdf) without limiting the number of rows?
    At the 2.0 the csv file was about 20mb per day big. Now at 2.2 i get csv.zip file with the size of about 4mb, and in the zip file there are about 8-10 csv files with about 2-3mb. I have looked in csv file, there are now only exact 15 000 rows.
    Is this changed?

    That does seem to be a change between PI 2.1 and 2.2.
    You basically have to combine those CSV files to re-create a full report.

  • Excel and OpenOfficeSpreadSheet is Crashing when There are 1,50,000 Rows

    I want to know the behaviour of Excel and OpenOfficeCalc when the Report having more than 1,50,000 row. Whether it will split into two sheets? or Is it possible to get it a single sheet.
    Kindly Reply as soon as possible.
    Awaiting for the positive response

    It is not possible to have in a single sheet due to the limitation of maximum rows on a single XLSX sheet at 1,048,576.
    This is a limitation of the Microsoft XLSX Excel format.
    However, there are ways using the Spudsoft emitter for XLSX to set page breaks for a specific number of rows.

  • Is it possible to increase/remove the 20,000 row limit on the AV reports?

    When running a report for Logins and Logoffs for the last month, the report returns 20,000 records and informs me that there are more than 20,000. Does anyone know of a way to either remove the limit or to increase it?
    regards,
    Iain Barr
    Ategrity Solutions Ltd.

    Hi Iain:
    At this time, the out-of-the-box reports in Audit Vault are limited to 20,000 rows in code. There is no configurable way to change this limit.
    However, the Admin Guide does document the schema extensively, so it should be possible to point an external reporting tool, such as Oracle BI Publisher, to the schema, and query the data. Such reports will not be limited to 20,000 rows.

  • In SSRS , after exporting report in excel,wrap text property for cell and freeze column for SSRS table header not working in Excel

    I am working no one SSRS my table headers are freeze cangrow property is false and my report is working perfect while rendering data on RDL and i want same report after exporting in Excel also , i want my table header to be freeze and wrap text property
    to work after exporting in my report in excel but its not working ,is there any solution ? any patch ? any other XML code for different rendering ? 

    Hi Amol,
    According to your description, you find the wrap text property and fix column is not working after exporting into Excel. Right?
    In Reporting Services, when exporting to excel file, it has limitation for textbox.
    Text boxes are rendered within one Excel cell. Font size, font face, decoration, and font style are the only formatting that is supported on individual text within an Excel cell.
    Excel adds a default padding of approximately 3.75 points to the left and right sides of cells. If a text box’s padding settings are less than 3.75 points and is just barely wide enough to accommodate the text, the text may wrap in Excel.
    In this scenario, it supposed to be wrap text unless you merge cells. If cells are merged, word-wrap does not work correctly. If any merged cells exist on a row where a text box is rendered with the
    AutoSize property, autosize will not work. For the Fix Data Property, it can't be working in Excel. These are features when exporting to Excel. We can't change it because it's by design.
    Reference:
    Exporting to Microsoft Excel (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • I'm trying to open a 900kb Word doc (240pages) in Pages but get this error message:  Import Warning - A table was too big. Only the first 40 columns and 1,000 rows were imported.

    I'm trying to open a 900kb Word doc (240pages) in Pages but get this error message:  Import Warning - A table was too big. Only the first 40 columns and 1,000 rows were imported.

    Julian,
    Pages simply won't support a table with that many rows. If you need that many, you must use another application.
    Perhaps the originator could use a tabbed list rather than a table. That's the only way you will be able to contain a list that long in Pages. You can do the conversion yourself if you open the Word document in LibreOffice, Copy the Table, Paste the Table into Numbers, Export the Numbers doc to CSV, and import to Pages. In Pages Find and Replace the Commas with Tabs.
    There are probably other ways, but that's what comes to mind here.
    Jerry

  • Problem with SQL Server Reporting Services 2012 SP1 (SSRS) and SharePoint 2013 in a Multi-tenanted environment

    Hi All,
    I'm working on what appears to be a permissions issue with SSRS in a multi-tenented SharePoint 2013 environment.
    As part of my troubleshooting I've ignored the multitenented web application for the time being and stood up a dedicated web application with it's own host header called reporting.<domain>.local. I've created a site collection and added a Doc Library
    called Reporting.. And then the content types, made sure the features are up and everything tests ok. I mention this because it's not that I can't get this working.. I can't get this working in a Web Application configured for multi-tenancy running Host Named
    Site Collections.
    When I try redoing the above on a Tenant site I get the following:
    Sorry, something went wrong The permissions granted to user '<domain>\bprice' are insufficient for performing this operation. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user '<DOMAIN>\bprice'
    are insufficient for performing this operation.
    Correlation ID: 7f23ef9c-4b6a-7007-7e6f-0b32c731f7ed
    The problem here is that my account is a sysadmin in SQL, a local admin on all servers, a domain admin in AD and finally a Farm Admin in SharePoint. Access denied on my account is crazy. So it's unlikely to be perms in the traditional sence, more likely a denial
    by implication (as though I have not been granted access to something)
    When filtering the ULS Logs for that correlation ID I see the following log entries:
    WcfReceiveRequest: LocalAddress: 'http://homsssrs001. <domain>.local:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sqlserver/reporting/2011/06/01/ReportServer/Management/GetDataSourceContents'
    MessageId: 'urn:uuid:44f03f7a-69b3-426c-bcb6-1088f0ad560c'
    Non-OAuth request. IsAuthenticated=False, UserIdentityName=, ClaimsCount=0
    Cannot find site lookup info for request Uri http://homsssrs001:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc.
    Call to GetDataSourceContentsAction(https://shared.<domain>.local/sites/bf/Reporting/terst1.rsds).
    The current site is not in the SiteSubscription of the context site. SiteSubscriptionId: for current site = 96a49a95-8256-4585-9627-98206351efe3, for context site =
    Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: , Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user '<DOMAIN>\bprice' are insufficient for performing this operation.;
    A quick google on what I consider the most important of the above log errors (#5 mentioning Sitesubscription of the context site) returns:
    http://thesharepointfarm.com/2014/10/reporting-services-feature-pack/
    We aren't using feature packs at the moment. As far as I understand it all features are available to all subscriptions.
    Has anyone seen this issue? Can anyone point in the correct direction? There must be a config that's specific to SSRS and Multi-tenancy that I've overlooked but I genuinely can't get to the bottom of this.
    Kind Regards & Many Thanks
    Brett

    Morning Trevor, please find attached - if you can, any advice would be greatly appreciated.
    Kind Regards
    Brett
    03/05/2015 09:19:07.94 w3wp.exe (0x0148)                      
    0x0DD4
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (ExecuteWcfServerOperation). Parent No
    03/05/2015 09:19:07.94 w3wp.exe (0x0148)                      
    0x0DD4
    SharePoint Foundation         Topology                      
    e5mb Medium  
    WcfReceiveRequest: LocalAddress: 'http://homsssrs001.<domain>.local:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sqlserver/reporting/2011/06/01/ReportServer/Management/ListItemTypes'
    MessageId: 'urn:uuid:cdd5f8d1-cb0e-4e4b-8716-f62dd1aef75b'
    81b6ef9c-0b28-7007-7e6f-0e85d9c7097f
    03/05/2015 09:19:07.94 w3wp.exe (0x0148)                      
    0x0DD4
    SharePoint Foundation         Micro Trace                  
    uls4 Medium  
    Micro Trace Tags: 0 nasq,0 e5mb 81b6ef9c-0b28-7007-7e6f-0e85d9c7097f
    03/05/2015 09:19:07.94 w3wp.exe (0x0148)                      
    0x0DD4
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=0.4954
    81b6ef9c-0b28-7007-7e6f-0e85d9c7097f
    03/05/2015 09:19:08.02 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (ExecuteWcfServerOperation). Parent No
    03/05/2015 09:19:08.02 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Topology                      
    e5mb Medium  
    WcfReceiveRequest: LocalAddress: 'http://homsssrs001.<domain>.local:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sqlserver/reporting/2011/06/01/ReportServer/Management/ListItemTypes'
    MessageId: 'urn:uuid:e1f178b0-a85e-48e1-9b70-3fddd26e8790'
    81b6ef9c-eb2c-7007-7e6f-0e4ff9cf4e76
    03/05/2015 09:19:08.02 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Micro Trace                  
    uls4 Medium  
    Micro Trace Tags: 0 nasq,0 e5mb 81b6ef9c-eb2c-7007-7e6f-0e4ff9cf4e76
    03/05/2015 09:19:08.02 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=0.4614
    81b6ef9c-eb2c-7007-7e6f-0e4ff9cf4e76
    03/05/2015 09:19:08.02 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (ExecuteWcfServerOperation). Parent No
    03/05/2015 09:19:08.02 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Topology                      
    e5mb Medium  
    WcfReceiveRequest: LocalAddress: 'http://homsssrs001.<domain>.local:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sqlserver/reporting/2011/06/01/ReportServer/Management/GetDataSourceContents'
    MessageId: 'urn:uuid:a36edfc2-6593-44da-aa56-cb7052abd5f7'
    81b6ef9c-eb2c-7007-7e6f-0e4ff9cf4e76
    03/05/2015 09:19:08.02 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Authentication Authorization  
    agb9s Medium  
    Non-OAuth request. IsAuthenticated=False, UserIdentityName=, ClaimsCount=0
    81b6ef9c-eb2c-7007-7e6f-0e4ff9cf4e76
    03/05/2015 09:19:08.03 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         General                      
    adyrv High    
    Cannot find site lookup info for request Uri http://homsssrs001:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc.
    81b6ef9c-eb2c-7007-7e6f-0e4ff9cf4e76
    03/05/2015 09:19:08.03 w3wp.exe (0x0148)                      
    0x11EC
    SQL Server Reporting Services Report Server Catalog        
    00000 Medium  
    Call to GetDataSourceContentsAction(https://shared.<domain>.local/sites/bf/Reporting/test.rsds).
    81b6ef9c-eb2c-7007-7e6f-0e4ff9cf4e76
    03/05/2015 09:19:08.05 w3wp.exe (0x0148)                      
    0x11EC
    SQL Server Reporting Services Report Server Catalog        
    00000 Unexpected
    The current site is not in the SiteSubscription of the context site. SiteSubscriptionId: for current site = 96a49a95-8256-4585-9627-98206351efe3, for context site =
    81b6ef9c-eb2c-7007-7e6f-0e4ff9cf4e76
    03/05/2015 09:19:08.05 w3wp.exe (0x0148)                      
    0x11EC
    SQL Server Reporting Services Report Server Catalog        
    00000 Unexpected
    Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: , Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user '<domain>\bprice' are insufficient for performing this
    operation.; 81b6ef9c-eb2c-7007-7e6f-0e4ff9cf4e76
    03/05/2015 09:19:08.05 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Micro Trace                  
    uls4 Medium  
    Micro Trace Tags: 0 nasq,0 e5mb,0 agb9s,8 adyrv
    81b6ef9c-eb2c-7007-7e6f-0e4ff9cf4e76
    03/05/2015 09:19:08.05 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=32.8138
    81b6ef9c-eb2c-7007-7e6f-0e4ff9cf4e76
    03/05/2015 09:19:08.13 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (ExecuteWcfServerOperation). Parent No
    03/05/2015 09:19:08.13 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Topology                      
    e5mb Medium  
    WcfReceiveRequest: LocalAddress: 'http://homsssrs001.<domain>.local:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sqlserver/reporting/2011/06/01/ReportServer/Management/ListItemTypes'
    MessageId: 'urn:uuid:102cbef7-8be7-4781-87f8-1729748105ca'
    81b6ef9c-bb35-7007-7e6f-007a34676ded
    03/05/2015 09:19:08.13 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Micro Trace                  
    uls4 Medium  
    Micro Trace Tags: 0 nasq,0 e5mb 81b6ef9c-bb35-7007-7e6f-007a34676ded
    03/05/2015 09:19:08.13 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=1.4432
    81b6ef9c-bb35-7007-7e6f-007a34676ded
    03/05/2015 09:19:08.27 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (ExecuteWcfServerOperation). Parent No
    03/05/2015 09:19:08.27 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Topology                      
    e5mb Medium  
    WcfReceiveRequest: LocalAddress: 'http://homsssrs001.<domain>.local:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sqlserver/reporting/2011/06/01/ReportServer/Management/ListItemTypes'
    MessageId: 'urn:uuid:791edd35-00a7-4756-a013-915aabc504ea'
    81b6ef9c-9b39-7007-7e6f-01d1e9208dd3
    03/05/2015 09:19:08.27 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Micro Trace                  
    uls4 Medium  
    Micro Trace Tags: 0 nasq,0 e5mb 81b6ef9c-9b39-7007-7e6f-01d1e9208dd3
    03/05/2015 09:19:08.27 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=0.4652
    81b6ef9c-9b39-7007-7e6f-01d1e9208dd3
    03/05/2015 09:19:08.28 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (ExecuteWcfServerOperation). Parent No
    03/05/2015 09:19:08.28 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Topology                      
    e5mb Medium  
    WcfReceiveRequest: LocalAddress: 'http://homsssrs001.<domain>.local:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sqlserver/reporting/2011/06/01/ReportServer/Management/GetDataSourceContents'
    MessageId: 'urn:uuid:4ecdbd2f-f202-4bfb-bfd0-015b7719d1dd'
    81b6ef9c-9b39-7007-7e6f-01d1e9208dd3
    03/05/2015 09:19:08.28 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Authentication Authorization  
    agb9s Medium  
    Non-OAuth request. IsAuthenticated=False, UserIdentityName=, ClaimsCount=0
    81b6ef9c-9b39-7007-7e6f-01d1e9208dd3
    03/05/2015 09:19:08.30 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         General                      
    adyrv High    
    Cannot find site lookup info for request Uri http://homsssrs001:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc.
    81b6ef9c-9b39-7007-7e6f-01d1e9208dd3
    03/05/2015 09:19:08.30 w3wp.exe (0x0148)                      
    0x11EC
    SQL Server Reporting Services Report Server Catalog        
    00000 Medium  
    Call to GetDataSourceContentsAction(https://shared.<domain>.local/sites/bf/Reporting/test.rsds).
    81b6ef9c-9b39-7007-7e6f-01d1e9208dd3
    03/05/2015 09:19:08.30 w3wp.exe (0x0148)                      
    0x11EC
    SQL Server Reporting Services Report Server Catalog        
    00000 Unexpected
    The current site is not in the SiteSubscription of the context site. SiteSubscriptionId: for current site = 96a49a95-8256-4585-9627-98206351efe3, for context site =
    81b6ef9c-9b39-7007-7e6f-01d1e9208dd3
    03/05/2015 09:19:08.30 w3wp.exe (0x0148)                      
    0x11EC
    SQL Server Reporting Services Report Server Catalog        
    00000 Unexpected
    Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: , Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user '<domain>\bprice' are insufficient for performing this
    operation.; 81b6ef9c-9b39-7007-7e6f-01d1e9208dd3
    03/05/2015 09:19:08.30 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Micro Trace                  
    uls4 Medium  
    Micro Trace Tags: 0 nasq,0 e5mb,0 agb9s,5 adyrv
    81b6ef9c-9b39-7007-7e6f-01d1e9208dd3
    03/05/2015 09:19:08.30 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=21.2802
    81b6ef9c-9b39-7007-7e6f-01d1e9208dd3
    03/05/2015 09:19:08.41 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (ExecuteWcfServerOperation). Parent No
    03/05/2015 09:19:08.41 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Topology                      
    e5mb Medium  
    WcfReceiveRequest: LocalAddress: 'http://homsssrs001.<domain>.local:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sqlserver/reporting/2011/06/01/ReportServer/Management/ListItemTypes'
    MessageId: 'urn:uuid:caaecd7e-386e-436d-8276-a589cd7eac43'
    81b6ef9c-4b46-7007-7e6f-05cd3c364914
    03/05/2015 09:19:08.41 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Micro Trace                  
    uls4 Medium  
    Micro Trace Tags: 0 nasq,0 e5mb 81b6ef9c-4b46-7007-7e6f-05cd3c364914
    03/05/2015 09:19:08.41 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=0.4707
    81b6ef9c-4b46-7007-7e6f-05cd3c364914
    03/05/2015 09:19:08.49 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (ExecuteWcfServerOperation). Parent No
    03/05/2015 09:19:08.49 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Topology                      
    e5mb Medium  
    WcfReceiveRequest: LocalAddress: 'http://homsssrs001.<domain>.local:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sqlserver/reporting/2011/06/01/ReportServer/Management/ListItemTypes'
    MessageId: 'urn:uuid:c0b1675d-6244-46c7-9e50-904e5067cc30'
    81b6ef9c-3b4a-7007-7e6f-0ff7141ffd6a
    03/05/2015 09:19:08.49 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Micro Trace                  
    uls4 Medium  
    Micro Trace Tags: 0 nasq,0 e5mb 81b6ef9c-3b4a-7007-7e6f-0ff7141ffd6a
    03/05/2015 09:19:08.49 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=0.4514
    81b6ef9c-3b4a-7007-7e6f-0ff7141ffd6a
    03/05/2015 09:19:08.50 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (ExecuteWcfServerOperation). Parent No
    03/05/2015 09:19:08.50 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Topology                      
    e5mb Medium  
    WcfReceiveRequest: LocalAddress: 'http://homsssrs001.<domain>.local:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sqlserver/reporting/2011/06/01/ReportServer/Management/GetDataSourceContents'
    MessageId: 'urn:uuid:7845718a-b878-40f3-8698-270b377db7bc'
    81b6ef9c-3b4a-7007-7e6f-0ff7141ffd6a
    03/05/2015 09:19:08.50 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Authentication Authorization  
    agb9s Medium  
    Non-OAuth request. IsAuthenticated=False, UserIdentityName=, ClaimsCount=0
    81b6ef9c-3b4a-7007-7e6f-0ff7141ffd6a
    03/05/2015 09:19:08.50 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         General                      
    adyrv High    
    Cannot find site lookup info for request Uri http://homsssrs001:32843/04560e49d2664b64bc12d9ce7bc9f885/ReportingWebService.svc.
    81b6ef9c-3b4a-7007-7e6f-0ff7141ffd6a
    03/05/2015 09:19:08.50 w3wp.exe (0x0148)                      
    0x11EC
    SQL Server Reporting Services Report Server Catalog        
    00000 Medium  
    Call to GetDataSourceContentsAction(https://shared.<domain>.local/sites/bf/Reporting/test.rsds).
    81b6ef9c-3b4a-7007-7e6f-0ff7141ffd6a
    03/05/2015 09:19:08.52 w3wp.exe (0x0148)                      
    0x11EC
    SQL Server Reporting Services Report Server Catalog        
    00000 Unexpected
    The current site is not in the SiteSubscription of the context site. SiteSubscriptionId: for current site = 96a49a95-8256-4585-9627-98206351efe3, for context site =
    81b6ef9c-3b4a-7007-7e6f-0ff7141ffd6a
    03/05/2015 09:19:08.52 w3wp.exe (0x0148)                      
    0x11EC
    SQL Server Reporting Services Report Server Catalog        
    00000 Unexpected
    Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: , Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user '<domain>\bprice' are insufficient for performing this
    operation.; 81b6ef9c-3b4a-7007-7e6f-0ff7141ffd6a
    03/05/2015 09:19:08.52 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Micro Trace                  
    uls4 Medium  
    Micro Trace Tags: 0 nasq,0 e5mb,0 agb9s,0 adyrv
    81b6ef9c-3b4a-7007-7e6f-0ff7141ffd6a
    03/05/2015 09:19:08.52 w3wp.exe (0x0148)                      
    0x11EC
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (ExecuteWcfServerOperation). Execution Time=12.5869
    81b6ef9c-3b4a-7007-7e6f-0ff7141ffd6a
    03/05/2015 09:19:11.72 w3wp.exe (0x0148)                      
    0x12E8
    SharePoint Foundation         Database                      
    7t61 High    
    [Forced due to logging gap, cached @ 03/05/2015 09:19:03.46, Original Level: Verbose] {0}
    03/05/2015 09:19:11.72 w3wp.exe (0x0148)                      
    0x12E8
    SharePoint Foundation         Database                      
    7t61 High    
    [Forced due to logging gap, Original Level: Verbose] {0}

  • I need to add a new report to the application that is done using visual studio and SSRS and SQL Server 2008

    I have an application that is done using SSRS on visual studio and it connects to the report server on SQL server 2008 environment.
    I've been changing the existing reports using visual studio 2008 and modifying the reports on the report server. How do I add a new report to the application ? I created a new report and deployed it on the report server but it didn't show up in the application.
    I can access the application source code on visual studio 2010 and TFS (Team Foundation). Thanks. 

    Hi,
    I have a question. This application retrieves SSRS reports from the report sever. When I download the reports
    from the SQL Server I can open them in visual studio 2008 but they don't open in visual studio 2010. I can access the application files on visual studio 2010 and team foundation server 2010. I was unable to open team foundation server 2008 on visual studio
    2008. The issue is that I am unable to add a report with a new name to the application. I use visual studio 2008 to deploy the reports on the report server but it has to be the same name to be able to run the report from the application. I can deploy any report
    on the report server but I can't access it from the application unless it has to be the same name as the present reports. If I keep the report the same name then it will replace the old report and the new report will run from the application. But only if it's
     the same name. I guess when I add a new report to the application with a new name I am supposed to add a definition in the application C sharp files  on visual studio 2010 so that the new report will show in the application. What's your opinion
    ? I have attached 2 images of the application and team foundation server 2010 and the report server.
    Thanks. 

  • I downloaded and installed Photoshop Elements & Premiere Elements.  I then launched Photoshop Elements Organizer and imported approx. 28,000 photos (including some videos).  A window opened indicating that many of the photos had tags, and asking if I want

    I downloaded and installed Photoshop Elements & Premiere Elements.  I then launched Photoshop Elements Organizer and imported approx. 28,000 photos (including some videos).  A window opened indicating that many of the photos had tags, and asking if I wanted to add the tags.  I said yes, and the process began.  When it reached 60% a window opened indicating that "Elements 13 Organizer has stopped working", with the only option being to "Close program."
    I've since tried to open organizer several times, but it goes immediately to "Elements 13 Organizer has stopped working".  I was able to open Editor, and tried opening Organizer from Editor, but encountered the same problem.
    FYI, I have an open case (#0214505556), but have not received the help I need.

    This issue is with respect to Elements 13.

  • IDX2 and it gives me I::000 error

    Hi All,
    I am trying to import metadata using the IDX2 and it gives me I::000 error. I have checked the authorizations for the user RFCUSER on R/3 and it has
    SAP_ALL
    SAP_NEW
    I am not sure where can I check the log which can show me where could be the problem...
    Kind Regards,
    Praveen.

    Hi Praveen,
        Check if these threads give you some inputs:
    I::000 error in IDOC to IDOC scenario
    ::000 message no. SR053
    Regards,
    ravi

  • Separate Date and Time report parameters in SSRS 2012

    Hi Forumers'
    I m trying to design a report in SSRS with Separate date and time parameters
    I would like to have four parameter StartDate,EndDate,StartTime and EndTime.
    reports should be filter on all four parameter.
    can any one help me on this. i am using stored procedure to fetch data from db.
    GO
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE[dbo].[GetIVRTime]
    @StartDate varchar(50),
    @EndDate varchar(50),
    @StartTime Varchar(50),
    @EndTime Varchar (50)
    AS
    BEGIN
    DECLARE @Names VARCHAR(8000)
    BEGIN
    Select Convert(varchar(12),timestamp,105)As Date,CONVERT (VARCHAR(12), timestamp, 108) As Time,
    Count(cli)As TotalCall,
    SUM(case when ivrsuccess=1 then 1 else 0 end)as IVRSuccessfull,
    SUM(case when ivrsuccess=2 then 1 else 0 end)as IVRunsuccessfull,
    SUM(case when exitreason=1 then 1 else 0 end)as PBOTransferred,
    SUM(case language when'ENG'then 1 else 0 end)as EnglishCall,
    SUM(case language when'HIN'then 1 else 0 end)as HindiCall
    From tbl_ivrmaster
    where callstartdatetime>=@StartDate and callenddatetime<=dateadd(dd,1,@EndDate)
     and callstartdatetime>=@StartTime and callenddatetime<=@EndTime
    group by Convert(varchar(12),timestamp,105),CONVERT (VARCHAR(12), timestamp, 108)
    END
    END

    Hi Nirmal,
    I have tested on my local environment that as Visakh16 mentioned that you can use function like DATEADD(dd,DATEDIFF(dd,0,@StartDate),@StartTime) 
    to get the date/time value based on the date and time parameter you have selectted.
    There is also anoher method to add filter in the dataset but not in the query.Details information below for your reference;
    Please change the datatype of the @sartdate and @enddate from text to date, if you don't specify an availbel value for these two parameters, you will get an calender picker to select the date.
    I assumed the two time parameters will enter the value which format like:hh:mm or hh:mm:ssYou can conver the datetime field in the table to string and then compare with the conbine of the date and time field to filter the data
    like below:
    Filter add in the dataset like:
    Expression:=FormatDateTime(Fields!DateTime.Value)           (String type)
    Operator: Between
    Value:
    =Parameters!StartDate.Value &" "&Right(TimeValue(Parameters!StartTime.Value),8)
    =Parameters!EndDate.Value &" "&Right(TimeValue(Parameters!EndTime.Value),8)
    Preview the report:
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

Maybe you are looking for

  • View PDFs on the iphone via Mail

    So does anybody know why sometimes PDFs simply don't render on the iphone and you're left with a grey first page that's rendered? I don't appear to be able to establish a pattern for this behaviour.

  • AppleScript: Waiting for a user to enter user name and password

    I'm currently working on an AppleScript designed to automate binding a computer to Active Directory and another script to install a login certificate. While you can create a UNIX shell script for the Active Directory binding, I found that you have to

  • Java code check

    Hi Java Experts, Could anyone pls chk the code given below....when i try to run this code...it comes up with many errors.....pls help import java.awt.*; public class scrollimage extends java.applet.Applet implements Runnable { Image buf; Graphics gBu

  • MOVING PICTURES AROUND

    Hello everyone. I am new to this forum i have a question about dreamweaver 8. How do you move the pictures around? Because everytime i add a picture, it snaps to the last word of a sentence or line. I try to move it, it just snaps back! How do i coun

  • Lightroom 5.2 Update unknown to CC Desktop App

    I installed Lightroom 5 several weeks ago through Creative Cloud. Lightroom now tells me that version 5.2 is available, but Creative Cloud desktop app shows the Lightroom 5 app as "Up to Date". Does the CC app not work well with LR5? Jim