Error in sql 2008 reporting services with sharepoint 2013

i have database sql 2008r2 and sharepoint 2013 enterprise
database is in cluster server and sharepoint have 2 servers one for webfront end and one for services.
im tring to configer ssrs in the web front end server for sharepoint and i install sql 2008 add on for sharepoint 2010  but still have this error
The configuration parameter SharePointIntegrated is set to True but Share
Point Object Model cannot be loaded. The error was:
System.IO.FileNotFoundException: Could not load file or assembly
'Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral,
PublicKeyToken=71e9bce111e9429c' or one of its dependencies. The system cannot
find the file specified. File name: 'Microsoft.SharePoint, Version=14.0.0.0,
Culture=neutral, PublicKeyToken=71e9bce111e9429c' at
Microsoft.ReportingServices.SharePoint.Objects.RSSPImpSecurity.set_StaticCatchAccessDeniedException(Boolean
value) at
Microsoft.ReportingServices.SharePoint.Server.SharePointServiceHelper..ctor() at
Microsoft.ReportingServices.SharePoint.Server.SharePointServiceHelperFactory.get_ServiceHelper()
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]. .
(rsSharePointObjectModelNotInstalled)
and befour that i was install sql 2012 add on for sharepoint 2013 but was the same error so i did uninstall for it
this error when i try to open reporting services url
Thanks for any help :) my blog is: http://www.waelk.com

SharePoint 2013 only supports SSRS 2012 SP1 - http://msdn.microsoft.com/en-us/library/gg492257.aspx. You'll need to upgrade your SSRS instance to 2012 SP1.
Trevor Seward
Follow or contact me at...
&nbsp&nbsp
This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Similar Messages

  • Use parameters in SQL Server reporting services with sharepoint lists

    I want to make report from sharepoint 2010 list and forms library in sql server reporting services.
    but also want to apply parameters.
    I tried but parameters but it is not working.
    How I can apply sharepoint lists parameters in sql server reporting services ?
    How to run or view report of sharepoint lists or form library in sqlserver reporting services with required parameters?

    Hi John,
    When we use SharePoint list as datasource in SSRS it has two method to add parameter. Suppose we have a dataset (DataSet1) get data from SharePoint list. Please refer to the methods below.
    Method 1: We can add parameter in the Query Designer dialog box to add parameter.
    Click “Add Filter” icon in the “Applied filters” dialog box in Query Designer.
    Select the corresponding field (Title), fill with specific conditions, and select Parameter option in the end of the row.
    Create a dataset (DataSet2) fill with Title field.
    Double click the parameter we create above, set the available values from DataSet2 field Title.
    (Note: In the situation, we are get the single-value parameter.)
    Method 2: It is a general method to add parameter in SSRS report.
     Create another dataset (DataSet2) in the report fill with Title field.
    Add a parameter (Title) get available values from DataSet2 Title field.
    Add filter in the DataSet1.
    (Note: This method, we can configure multi-values parameter.)
    Reference:
    http://technet.microsoft.com/en-us/library/aa337432(v=sql.105).aspx
    If you have any questions, please feel free to let me know.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Forms Authentication - SQL 2008 Reporting services

    Hi Experts, 
    I am trying to implement a forms authentication in SQL 2008 reporting services based on this article, 
    http://msdn.microsoft.com/en-us/library/ms160724(v=SQL.100).aspx#2
    Everything worked fine, but the display page is not loading the default reports, connections etc.
    Have attached screen shot, any suggestions appreciated.
    Thank you,
    Satwick
    satwick

    Hi satwick,
    Thank you for your question.
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated.
    Thank you for your understanding and support.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.

  • SQL 2008 Reporting Services

    Has anyone been able to get Xcelsius Enterprise to work with SQL 2008 Reporting Services?

    Hi Ronelle,
    The
    BackgroundRepeat property indicates how the background image fills the available space. So if set the property to
    Clip in Reporting Services 2008 or NoRepeat in Reporting Services 2005, the background image will not repeat in both horizontal and vertical in current page, but it will be displayed as background in every
    page.
    However, as you mentioned, the background image only print on the first page as you desired in your report in Reporting Services 2005. If you achieve this just by setting the
    BackgroundRepeat property to NoRepeat, could please post the specific version of your Reporting Services 2005 which you can find it in the bottom of your Report Server pages? It will be helpful for us to provide you
    further assistance.
    If you have any question, please feel free to ask.
    Best Regards,
    Tony Chain

  • Implementing SQL Server Reporting Services with a Java EE Application

    Hi All,
    I need to find some tutorial on
    "Implementing SQL Server Reporting Services with a Java EE Application"
    for my j2EE application.
    Until now i have searched a lot of sites but have not any thing related to this topic.
    I am using apache axis along with SQL Server Report Manager for creating the sql server reports.
    I have done upto :
    Creating the webservice with the help of report manager.
    Now i want to connect it through my j2EE application and want to retrieve some data from that web service.
    I have got stuck on the following BOLD lines in my code .
    code:
    public CatalogItem[] getData(String res, String searchStr) throws RemoteException     {
                  ReportingService2005Soap port = null;
                  ReportingService2005Locator loc = new ReportingService2005Locator();
                  // Retrieve a port from the service locator
                  try {
                       port = loc.getReportingService2005Soap(new java.net.URL(res));
                  } catch (MalformedURLException e) {
                       // TODO Auto-generated catch block
                       e.printStackTrace();
                  } catch (ServiceException e) {
                       // TODO Auto-generated catch block
                       e.printStackTrace();
                  org.apache.axis.client.Stub stub = (org.apache.axis.client.Stub) port;
                  stub.setUsername("localhost\\Administrator");
                  stub.setPassword("servWIN@2007");
                  // Retrieve a port from the service locator
                  SearchCondition condition = new SearchCondition();
                  condition.setCondition(ConditionEnum.Contains);
                  condition.setName("Name");
                  if (searchStr != null)
                  condition.setValue(searchStr);
                  else
                  condition.setValue("");
        //           Create an array of SearchConditions which will contain our single search condition
                  SearchCondition[] conditions;
                  conditions = new SearchCondition[1];
                  conditions[0] = condition;
        //           Call the Web service with the appropriate CatalogItem[] returnedItems;
                  CatalogItem[] returnedItems = null;
                  port.findItems("foldername",BooleanOperatorEnum.Or, conditions);
                  return returnedItems;
             }i.e. while executing the findItems() method i got the following exception :
    System.Web.Services.Protocols.SoapException: The item '/reportingservices' cannot be found. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/reportingservices' cannot be found.
    at Microsoft.ReportingServices.Library.RSService.FindItems(String folder, String operation, SearchCondition[] properties)
    at Microsoft.ReportingServices.WebServer.ReportingService2005Impl.FindItems(String Folder, BooleanOperatorEnum BooleanOperator, SearchCondition[] Conditions, CatalogItem[]& Items)
    Any any body has any idea please help me.
    I need it urgently.
    Regards.

    The above example is mentioned in msdn virtual lab that teaches how to connect to reporting services from a j2ee application.
    I have done the same thing .. but i am not able to render the report programmatically .. if anybody knows pls let me know the solution.

  • SSRS 2012 report integrated with SharePoint 2013 issue :Report refreshing after some idle time

    we have SSRS 2012 report integrated with SharePoint 2013  , when we click on any toggle item after some idle time of 60 secs and try again to expand
    another toggle item then  complete report is getting refreshed and  if we are in child report it is redirecting to parent report. . we didn’t set any refreshing property at report level. I hope there will be some idle time setting at sharepoint site
    level.
    what we observed.
    1. there is no problem when we expand toggle items without any idle time.
    2. when we open the report and expand few toggles and keep idle for 60 seconds and try
    again to expand another toggle item then  complete report is getting refreshed (all toggle items are collapsing).
    3. If you keep idle for 60 minutes and if you didn’t do any action like expanding toggle
    items it is not refreshing.
    why it is happening and how to stop that complete refresh.
    Surendra Thota

    Hi Surendra,
    I have tested on my local environment and the issue can be caused by the session time out ,the time out of the report precessing, database timeout,DataSet query execution timeout and so on.
    I would like to confirm that the refresh you have mentioned is the page refresh or the report reloading?
    Please reference to the setting below to don't limit the timeout values if you got the report reloading:
    Point to a report in the library.
    Click the down arrow, and select Manage processing options.
    In Processing Time-out, select Do not time out report processing or
    Limit report processing in seconds if you want to override that value with no time-out or different time-out values.
    If you got the session timeout that refresh the page, please reference to the setting in below article:
    http://msdn.microsoft.com/en-us/library/gg492284.aspx#bkmk_session_settings_section
    Details information in the article below about the timeout setting for your reference:
    Set Processing Options (Reporting Services in SharePoint Integrated Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Error while running SSRS 2012 report integrated with SharePoint 2013

    Hi,
    Our reporting services environment has SSRS 2012 integrated with SharePoint 2013. The SharePoint 2013 farm has 2 web front ends, 1 app server and a separate server for reporting services i.e SSRS 2012 .
    We have created a https web application in SharePoint 2013 and all the SSRS 2012 reports are deployed into a "Report Library" residing in its root site collection.
    The simple reports are running well. But there is a report where we have 3 multi-value parameters. On running this report in IE or Chrome, we get the error "Sys.WebForms.PageRequestManagerParserErrorException: The message received from the
    server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled. Details: Error parsing near ' <!DOCTYPE html PUB'."
    Some of the forums suggested to add the below entry in the web config of the SharePoint web app where the SSRS reports are deployed. We did that too, still the error is appearing. Please can anyone help .
    <appSettings>
    <add key="aspnet:MaxHttpCollectionKeys" value="100000" />
    </appSettings>
    Thanks

    Hi Surendra,
    I have tested on my local environment and the issue can be caused by the session time out ,the time out of the report precessing, database timeout,DataSet query execution timeout and so on.
    I would like to confirm that the refresh you have mentioned is the page refresh or the report reloading?
    Please reference to the setting below to don't limit the timeout values if you got the report reloading:
    Point to a report in the library.
    Click the down arrow, and select Manage processing options.
    In Processing Time-out, select Do not time out report processing or
    Limit report processing in seconds if you want to override that value with no time-out or different time-out values.
    If you got the session timeout that refresh the page, please reference to the setting in below article:
    http://msdn.microsoft.com/en-us/library/gg492284.aspx#bkmk_session_settings_section
    Details information in the article below about the timeout setting for your reference:
    Set Processing Options (Reporting Services in SharePoint Integrated Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Adding Reporting services in sharepoint 2013

    Hi,
    I am migrating my site from MOSS environment to share point 2013. Moss site is using the Reporting services for  display of the reports. In the old project there is one dll called
    microsoft.reportingservices.sharepoint.ui.webparts.dll
    I have copied that dll from Moss server to my sp2013 server. Because I am unable to locate this dll in my sp2013 server.
    We have Sql server 2008 installed in the server. As per the below link we cant use theSQL server 2008 for  reporting services in sp 2013.
    Is this is for the Native based services or the sharepoint based sharepoint services?
    Is there any way to use the ReportingServices in SP2013 with sql server 2008?

    You have hit incompatibility issues between products.
    SP2013 only supports Reporting Services 2012.
    This link explains it very well:
    http://msdn.microsoft.com/en-us/library/gg492257.aspx(Supported Combinations of SharePoint and Reporting Services Components)
    More explanations here:
    http://blogs.technet.com/b/sammykailini/archive/2013/02/12/3551486.aspx
    To answer your question, this is for both modes. There is no supported way to use SP2013 with SSRS 2008 R2. Sorry.
    I hope that clarifies it for you.
    Independant SharePoint Consultant. Feel free to contact me. Blog:
    http://www.sharepoint.bg/radi Twitter:
    @RadiAtanassov

  • SQL 2012 SP1 Reporting Services for SharePoint (2013) - Install-SPRSService Not Available

    So, at this point, I've blown away an otherwise functional SP2013 + SQL2012SP1 multi-server farm trying to get this to work, only to end up with the same results. Irrespective of whether I install Reporting Services before or after the SP2013 server is in
    a farm, SSRS does not seem to be enabled in the farm. I cannot add a new SSRS service application (the menu item does not exist); I cannot start the SSRS service on server (because it isn't here); I cannot execute the Install-SPRSService cmd in SP (yes, the
    SharePoint) Powershell (PS comes back with this error:
    Install-SPRSservice : The term 'Install-SPRSservice' is not recognized as the
    name of a cmdlet, function, script file, or operable program. Check the
    spelling of the name, or if a path was included, verify that the path is
    correct and try again.
    At line:1 char:1
    + Install-SPRSservice
    + ~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (Install-SPRSservice:String) [],
        CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    Quite simply, something's broken. I've followed a couple of detailed how-to's on technet and elsewhere... Right at the point when I should be able to create the SSRS service application, the wheels come off the cart. I've tried Import-Module'ing the SQLCMDLETS
    and SQLPS PS modules...nothing... The strange thing is that after the installation of the SSRS, if I happen to go into the General Application Settings in Central Admin, I see a new item after Content Deployment:
    $Resources:ReportServerResources,AdminReportServerGroupTitle; 
    $Resources:ReportServerResources,ManageIntegrationSettings; | 
    $Resources:ReportServerResources,AddTrustedAccounts; | 
    $Resources:ReportServerResources,SetServerDefaults; 
    When I uninstall, this goes away.
    Greatly appreciate any suggestions you can offer because this is driving me crazy, and I have tried everything I can think of to get this going...

    Make sure you are running SharePoint 2010 Management Shell not PowerShell.
    Also make sure you are running SharePoint 2010 Management Shell with administrator privileges. Right click the icon and click, "Run As Administrator".
    You must have installed "Reporting
    Services add-in for SharePoint Products" on the server where you are executing "Install-SPService".
    You also may be interested to check this tutorial: Install
    Reporting Services SharePoint Mode for SharePoint 2013

  • SQL 2008 Reporting Services: Setting BackgroundRepeat = NoRepeat in SQL 2008

    Good day
    I have an report that has a background image set.  The BackgroundRepeat property = Clip (which is the alternative to 2005 NoRepeat). This background image is only suppose to print on the first page. When the report was still in SQL 2005 it printed fine,
    with the image displaying on the first page but NOT on the second page.  After the conversion to SQL 2008 I noticed that the image is now printing on both pages. 
    Please advise on the way forward.  Is there another property that I need to provide to make the image only print on the first page?
    Your response will be much appresiated.
    Kind Regards
    Ronelle

    Hi Ronelle,
    The
    BackgroundRepeat property indicates how the background image fills the available space. So if set the property to
    Clip in Reporting Services 2008 or NoRepeat in Reporting Services 2005, the background image will not repeat in both horizontal and vertical in current page, but it will be displayed as background in every
    page.
    However, as you mentioned, the background image only print on the first page as you desired in your report in Reporting Services 2005. If you achieve this just by setting the
    BackgroundRepeat property to NoRepeat, could please post the specific version of your Reporting Services 2005 which you can find it in the bottom of your Report Server pages? It will be helpful for us to provide you
    further assistance.
    If you have any question, please feel free to ask.
    Best Regards,
    Tony Chain

  • SQL Server Report integrate with SharePoint slow

    Dear Team,
    I have SQL Server report servie integrate with SharePoint mode, create several reports and deployed to SharePoint, use SharePoint sql server report viewer web part to view the report.
    the report contain about 8 parametes, it takes half a minute to load the report parameters, which is not accepted.
    What can I do to improve the performance.
    Thanks,

    Hi, qq_w
    First of all I suggest catching the result
    query  and running it with the "View execution plan" option so you can understand what is slowing you down. Perhaps you miss some indexes or something.
    Secondly, it will be good to run it with tuning advisor.

  • Sql Server Reporting  services with ORACLE

    We are thinking of using Sql Server Reporting servicesvwith an ORACLE DB.
    I will like to know the pros and cons.
    Any advice would be appreciated..
    Thanks alot.

    Hello,
    You'll find many doc, examples, demos ... on OTN :
    http://www.oracle.com/technology/products/reports/index.html
    http://www.oracle.com/technology/documentation/reports.html
    http://www.oracle.com/technology/products/reports/htdocs/search.html?cat=ALP&col=ALC&submit=Search
    For the Ref Cursors :
    Oracle® Reports Building Reports
    10g Release 2 (10.1.2)
    B13895-01
    40 Building a Paper Report with REF CURSORs
    Regards

  • SQL Server Standard Edition with Sharepoint 2013 Enterprise

    Hi there,
    I need some help figuring out what will be the ideal SQL Server Standard Edition that can run all features for SharePoint 2013 Enterprise Edition. I ordered CAL licenses for a Sharepoint 2013 Enterprise Server (Supports 500 users). Now I need to find out
    if it is worth upgrading SQL server to the following:
    Upgrade to SQL Server Standard R2 2012 or upgrade to SQL Server Standard 2014? Basically, I am looking for the pros and cons?
    -Esteban
    Microsoft manager to programmer: You start coding. I'll go find out what they want ...

    Hello,
    PowerPivot for SharePoint is a feature available only if SQL Server Enterprise Edition and Business Intelligence Edition is used. Reporting Services of SQL Server Standard has also some limitations that will impact SharePoint 2013.
    Additionally, SQL Server Standard Edition do not offer AlwaysON, database snapshots and online index rebuild.
    To me, the biggest difference between SQL Server 2012 Standard Edition and SQL Server 2014 Standard Edition is that SQL 2014 Standard now supports 128 GB of RAM. SQL Server 2012 Standard is limited to 64 GB.
    https://msdn.microsoft.com/en-us/library/cc645993.aspx#CrossBoxScale
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • SSRS reports integration with sharepoint 2010

    Hi Friends,
    Any one can u pls tell me what are the  prerequisites for integrating SSRS Reports with Sharepoint.
    This is the first time im going to integrate SSRS reports with Sharepoint. Any one pls help me on this.
    Thanks in advance.
    Regards,
    LuckyAbdul

    Hi LuckyAbdul,
    We can integrate Microsoft SQL Server Reporting Services with SharePoint Foundation 2010 or SharePoint Server 2010 by configuring a report server to run in SharePoint integrated mode. There are some prerequisites for integrating SSRS Reports with SharePoint,
    including Report server requirement, SharePoint Products and Technology requirements and Database server requirements in SQL 2008 R2.
    The Reporting Services Configuration Manager is no longer required or supported to configure and administer Reporting Services SharePoint mode in SQL 2012. Use SharePoint Central Administration to configure a report server in SharePoint mode.
    The configuration steps for this version you need to do in Reporting Services Configuration Manager and In Central Administration, please see the following articles:
    2008 R2:
    http://technet.microsoft.com/en-us/library/bb283190(v=sql.105).aspx
    http://sharepointtaskmaster.blogspot.in/2010/11/intergration-reporting-service-with.html
    2012:
    http://technet.microsoft.com/en-us/library/47efa72e-1735-4387-8485-f8994fb08c8c
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SQL Reporting services installing sharepoint mode - Error while installing

    Hi I have SharePoint 2013 environment and now i am trying to install SSRS sharepoint mode.
    I use SQL server enterprise version 2012 SP1.
    While installing this i got and error at the end.
    TITLE: Microsoft SQL Server 2012 Service Pack 1 Setup
    The following error has occurred:
    Could not load file or assembly 'System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.
    1- Now i am not able to uninstall this
    2- I also don't see the service application in Central admin under New.
    Please help me to resolve this issue.
    My name is yogendra

    Hi,
    According to your post, my understanding is that you failed to install SSRS sharepoint mode.
    Please make sure you install Reporting Services SharePoint Mode for SharePoint 2013
    correctly.
    You can refer to:
    Install Reporting Services SharePoint Mode for SharePoint 2013
    Installing and configuring SQL Reporting services on SharePoint 2013
    In addition, please install Windows Management Framework 3.0 on the
    build server.
    More information:
    Exception
    Message: Could not load file or assembly 'System.Management.Automation, PublicKeyToken=31bf3856ad364e35'
    How to use SQL Server in Windows and Windows Server environments
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for