SharePoint 2010 & SQL Server Report Builder 3.0 - HTTP 404 Error

Hi all,
Apologies if this post is not in the correct forum. 
I have recently upgraded my SQL installation on my SharePoint server from Express 2008 R2 to Standard 2008 R2 so I could set up Reporting Services Integration in CA.  Followed instructions I found on web and all appeared to be good.
Installed Report Builder on my PC and set up a data source to a List I have on one of my site collections - "Test Connection" works fine.  If I then try to create a Dataset using Query Designer, I get the error below -
"An error occurred when accessing the specified SharePoint list.  The connection string might not be valid.  Verify that the connection string is correct - The request failed with HTTP status 404: Not Found. (System.Web.Services)". 
I can't even get to a point where I can see any fields from my list.
I am happy to provide any further information to try and clarify my problem.  Any help would be most appreciated!

Just an update.  I resolved my issue.  The problem appeared to that when creating the Data Source, I had been adding the URL of the actual list (eg. http://servername/sitename/listname) as the connection string where in fact I should have just
added the server name and site - eg. http://servername/sitename.
Hopefully this may help somebody else :-)

Similar Messages

  • Query a dataset in MS SQL Server Report Builder and get splitted output of one of the fields

    Hi experts,
    I have a dataset in MS SQL Server Report Builder containing some rows like the following:
    FIELD-1
    FIELD-2
    FIELD-3
    1
    efgh
    xjhg[R]ztazutsuz[R]9
    2
    abcd
    1234[R]abcd[R]5678
    What I need is:
    FIELD-1
    FIELD-2
    FIELD-3
    1
    efgh
    xjhg
    1
    efgh
    ztazutsuz
    1
    efgh
    9
    2
    abcd
    1234
    2
    abcd
    abcd
    2
    abcd
    5678
    Can this be done?
    I'll be very happy when one finds a solution.
    Kind regards,
    Peter

    try like this..
    Declare @ta table ([FIELD-1] int, [FIELD-2] nvarchar(100), [FIELD-3] nvarchar(100))
    insert into @ta
    select 1, 'efgh', 'xjhg[R]ztazutsuz[R]9' union all
    select 2, 'abcd', '1234[R]abcd[R]5678'
    select t.[FIELD-1],t.[FIELD-2], a.b.value('.','nvarchar(100)') as [FIELD-3] from @ta t
    Cross apply
    (select cast('<R><C>' + replace(t.[FIELD-3],'[R]','</C><C>')+ '</C></R>' as xml) as XStr ) x
    Cross apply x.xstr.nodes('R/C')a(b)
    Thanks,
    Saurabh 
    http://www.linkedin.com/in/sbhadauria http://www.experts-exchange.com/M_6313078.html

  • Adding parameter to a MySQL query in MS SQL Server Report Builder

    So I have a MySQL DB connected to MS SQL Server Report Builder via ODBC connector. Everything is fine, I can execute queries and put the fields into report.
    But I can't add an parameter to the query.
    Example query:
    SELECT column1, column2 FROM table WHERE column3 = (@parameter1)
    The result set is just empty. I think the problem is that I'm using MySQL and not MS SQL. Any suggestion?

    Hello Alan,
    Named parameters like @param works with SQL Server / .NET data provider, but not for OleDB, here you have to use the question mark instead
    SELECT column1, column2
    FROM table
    WHERE column3 = ? and column9 = ?
    When you assign the report parameter to query parameter you have to take care about the order of used ? in query
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Migrate VS SSDT Reporting Project to SQL Server Report Builder?

    In the past, I have developed SSRS reports using Visual Studio (BIDS/SSDT). Unfortunately, a company server migration has made it impossible for me to deploy my reporting projects using that devlopment environment, so it appears I have to resort to Report
    Builder now.
    I see that the SQL Server Reporting Services web app has an "Upload File" menu item.  However, it's not clear to me how these would then be translated into a Report Builder project.  I've heard that the SSRS project-building
    capabilities of Visual Studio go considerably beynd those of the Report Builder in SQL Server.
    What I'd like to know is: Can I develop a Reporting Services project in Visual Studio and then migrate it to Report Builder via upload? If so, what are the steps to accomplish this, and what, if any, are the drawbacks?
    - Mark Z.

    Hi Mark Zudeck,
    As per my understanding, you developed SSRS reports with report designer, now you could not deploy the reports to report manager, and you want to open the projects with report builder. If that is the case, please refer to the following steps:
    On the Start menu, click All Programs, and then click Microsoft SQL Server Report Builder.
    To create a new report, click the SQL Server icon in the upper left-hand corner of Report Builder, and then click New.
    To open an existing report stored on your local machine or a report server, click the SQL Server icon in the upper left-hand corner, and then click Open.
    If you don’t see the report server in the list of existing servers, close the Open Report dialog box and then click Connect at the bottom of Report Builder to connect to the server.
    For detail information about Report Builder, please refer to the following document:
    https://msdn.microsoft.com/en-us/library/ms159221.aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.
    Wendy Fu
    TechNet Community Support

  • SCCM 2012 SQL Server Report Builder Error

    I am trying to create a report with SQL query on SCCM 2012. I get the below error.
    TITLE: Microsoft SQL Server Report Builder
    An error occurred while executing the query.
    The SELECT permission was denied on the object 'v_GS_OPERATING_SYSTEM', database 'CM_C01', schema 'dbo'.
    ADDITIONAL INFORMATION:
    The SELECT permission was denied on the object 'v_GS_OPERATING_SYSTEM', database 'CM_C01', schema 'dbo'. (Microsoft SQL Server, Error: 229)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&ProdVer=11.00.3000&EvtSrc=MSSQLServer&EvtID=229&LinkId=20476
    BUTTONS:
    OK

    Does your account have accesses within SQL? Bases on the error message I'm guessing not.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • How to Custom Report using sql server report builder for SCCM 2012 SP1

    Hi ,
    I am new to database, if i want to create a manual report using sql server report builder for SCCM 2012 SP1, what step should i take.
    i want to create a report in which computer name, total disk space, physical disk serial no come together. i already added class (physical disk serial no.) in hardware inventory classes. refer snapshot

    Hi,
    Here is a guide on how to create custom reports in Configuration Manager 2012, it is a great place to start, change to the data you want to display instead.
    http://sccmgeekdiary.wordpress.com/2012/10/29/sccm-2012-reporting-for-dummies-creating-your-own-ssrs-reports/
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • SQL Server Report Builder Numeric Field Formatting

    I am creating Reports in SQL Server Report builder.
    When I set format of any number fields, in design it is displaying sample value.
    For e.g. If I set format 0.00 to one numeric field, it started to display 12345.00
    I have 10-12 fields in design, it caused very much confusion.
    Is there any solution to change this?
    When I open report in Visual Studio, it doesn't display like that.
    Check Following screenshots:
    In Report Builder:
    In Visual Studio:

    Hi Harsh10,
    If I understand correctly, there are two placeholders in each textbox in the report. You want the second placeholder which contains numeric field to format as 0.00. If in this scenario, we can refer to the following steps:
    Right-click the second placeholder which contains numeric field in each textbox to open the Placeholder Properties dialog box.
    Click Number in the left pane.
    Select Number with Decimal places ‘2’ in the Category drop-down list.
    Reference:
    Formatting Text and Placeholders (Report Builder and SSRS)
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SharePoint 2010 - SQL Server Service Application Server Appears on Server without SSRS Installed

    I have SSRS instance installed on Server 2 in integrated mode and reports within SharePoint are working as expected.  But, when you go to manage the SQL Server Service Application it throws an 503 error and I believe it is related to the fact that the
    service also shows up on another Application Server, Server1, that does not have SSRS installed.  The service is disabled and it shows up in the list of Services for the server but I believe SharePoint thinks its the primary service and cannot access
    it.  Is there any way to remove the Service from Server2?  I attempted the below powershell commands to remove but it gives me an error.  Any suggestions would be appreciated.
    Get-SPRSServiceApplicationServers
    Address
    Server1
    Server2
    get-spserviceinstance -all |where {$_.TypeName -like "SQL Server Reporting*"}
    TypeName                         Status   Id
    SQL Server Reporting Services... Disabled a5179dce-2d6c-476b-a74b-764375d70a94
    SQL Server Reporting Services... Online   64a99ed8-d31c-4dd3-b9f7-b6d946e41e16
    Remove-SPServiceApplication a5179dce-2d6c-476b-a74b64375d70a94 -RemoveData
    Remove-SPServiceApplication : Object not found.
    At line:1 char:28
    + Remove-SPServiceApplication <<<<  a5179dce-2d6c-476b-a74b-764375d70a94 -Remo
    eData
        + CategoryInfo          : ObjectNotFound: (Microsoft.Share...viceApplicati
       on:SPCmdletRemoveServiceApplication) [Remove-SPServiceApplication], Invali
      dOperationException
        + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletRemoveSe
       rviceApplication
    Remove-SPServiceApplication : Object reference not set to an instance of an ob
    ect. At line:1 char:28
    + Remove-SPServiceApplication <<<<  a5179dce-2d6c-476b-a74b-764375d70a94 -Remo
    eData    + CategoryInfo          : InvalidData: (Microsoft.Share...viceApplication:
       SPCmdletRemoveServiceApplication) [Remove-SPServiceApplication], NullRefer
      enceException  + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletRemoveSe
       rviceApplication

    You're getting a Service Instance object and trying to remove it with a Service Application cmdlet... This won't quite work :)  Can you double check to validate that SSRS 2008 R2 or higher bits were not accidentally laid down on the problem host?
    Trevor Seward, MCC
    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.

  • SharePoint 2013 SQL Server Reporting Services Report Viewer (Web Part) - IE Tab Title

    Hi,
    We are using a wiki Library to create page with SQL Server Reporting Services Report Viewer Web Part.
    Everything is working great except for the Internet Explorer tab, instead of giving me the name of the Report it is showing the name of the web application. All the other wiki pages is working fine.
    Regards,
    Social Technet Microsoft.

    Hi Brysk,
    Is there any difference between the problemaitc page containing the webpart and other working wiki pages for showing the title name in IE tab?
    The IE tab should show the information in tag<title> of the page, please check if it is correct for that page (using F12).
    Also check if it is related to IE browser compatibility issue.
    Thanks
    Daniel Yang
    TechNet Community Support

  • Split TempDb in SharePoint 2010 Sql Server DB

    Hi ,
    We have envirenment of sharepoint farm,one Database server.We have plan to split tempDb acording microsoft best practices.
    By the time of we have the largest content database is 260 in size and SQL Server has a 2-core processor.
    So the tempdb would be split in two files with 40 GB per .mdf file.
    Kinldy suiggest hopw to split TempDb.
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Sharepoint and EPM Consultant,TCS
    |
    | Twitter

    Hi Shanky,
    We are not facing any issue,But we had take Micorosft RaaS services,Microsoft Consutlatan suggest thet we should break oure TempDb
    RaaS   ISSUE/RISK
    Initial Size of Temp DB is too   small
    TempDB database Size may be too   small.
    SQL Server instance has only one   tempdb data file while there are more than one scheduler in use
    One or more user database files   are placed on same disk volume along with TempDB database files
    REMEDIATION   COMMENTS
    The size   and physical placement of the tempdb database can affect the performance of a   SharePoint farm. For example, if the size that is defined for tempdb
    is too   small, part of the system-processing load may be taken up with autogrowing   tempdb to the size required to support the workload every time you restart   the instance of SQL Server. You can avoid this overhead by increasing the  
    sizes of the tempdb data and log files.
    Currently   .mdf and .ldf files are in the D volume along with all other SharePoint   databases and there is just one tempdb .mdf file.
    More information:
    http://technet.microsoft.com/en-us/library/ms175527(v=SQL.105).aspx
    ACTION   PLAN
    Set the   recovery model of tempdb to SIMPLE recovery model.
    Create   as many files as needed to maximize disk bandwidth. Using multiple files   reduces tempdb storage contention and yields significantly better   scalability. However,
    do not create too many files because this can reduce   performance and increase management overhead. As a general guideline, use
    # of TempDB Files = # of Processors Cores   / 4 and then adjust the number of files up or down as necessary.
    Preallocate   space for all tempdb files by setting the file size to a value large enough   to accommodate the typical workload in the environment. You can go by a rule  
    of thumb that the size should be 25% of the largest SharePoint content   database.
    Important: Make each TEMPDB   data file the same size.
    Allow   your TEMPDB files to grow automatically and monitor the disk free space, set   the file growth in fix size and not in percentage. We recommend the following  
    general guidelines for setting the FILEGROWTH increment for tempdb files:
    tempdb   file size from 0 to 100 MB - FILEGROWTH increment in 10 MB
    tempdb   file size from 100 to 200 MB - FILEGROWTH increment in 20 MB
    tempdb   file size from 200 MB or more - FILEGROWTH increment in 10%*
    * The FILEGROWTH increment should be   set to a maximum of 6 GB, regardless of the tempdb file size.
    Put the   tempdb database on a fast I/O subsystem. Use disk striping if there are many   directly attached disks.
    Put the   tempdb database on disks that differ from those that are used by SharePoint.
    Important: This action plan requires a downtime   of your SharePoint
    farm as you will have to stop SQL Server services to move   data and transaction log files to different disks.
    By the time of this remediation the   largest content database is 300 in size and SQL Server has a 2-core   processor. So the tempdb would be
    split in two files with 40 GB per .mdf   file.
    STATUS
    SharePoint administrators will work   on the action plan.
    Downtime required for to apply this   action plan? YES
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Sharepoint and EPM Consultant,TCS
    |
    | Twitter

  • SQL Server Report Builder Hyperlink Column Not Click-able?

    I have a report with a hyperlink column that works in SQL Report Builder 3.0 desktop, but not on the website where it's shown.
    1. 'Website_Domain' field is the shortened URL (domain) is the
    text seen in the Report column
         (technet.microsoft.com)
    2. 'Website_Url' field is the full length URL which is used in the
    'Go to URL' properties
         (http://technet.microsoft.com/en-us/library/ms159106.aspx)
    ['Website Link' Expression]
    =Fields!Website_Domain.Value
    ['Website Link' Column Properties]
    Action = Go to URL
    Selected URL: [Website_Url]

    Hi pointeman,
    I have tried your scenario on my test environment, but the issue was not reproduced. Please take the following steps as a reference:
    Insert Website_Domain field in the detail row, then type the table header with “Website Link”.
    Right-click the cell which contains [Website_Domain] to open Text Box Properties dialog box.
    Click “Action” in the left pane, select “Go to URL” option with [Website_Url] as “Select URL”. 
    The following screenshot is for your reference:
    If the issue still persists, could you please supply more information about the issue? Such as steps you have taken to add the URL or other else. If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • SharePOint 2010 - SQL Server - Logs filling up drive space so quickly - please help

    Hi there,
    On my DEV SharePoint SQL Server - suddenly the logs have been filling up space so quickly - this morning I increased 10 GIGs and now it is full again just in a few hours.
    What action should I take?
    - Is it okay to switch Recovery Model from Full to Simple? (It is DEV server)
    - Anything else?
    Thanks.

    Hi frob,
    Can please check below link , It might be useful.
    https://support.microsoft.com/kb/110139?wa=wsignin1.0
    http://www.mssqltips.com/sqlservertip/2092/sql-server-transaction-log-grows-and-fills-up-drive/
    If you think is helpful,Vote As Helpful! And if you see a reply being an answer to the question of the thread, click Mark As Answer.
    Mahesh

  • SharePoint 2013 & SQL Server Reporting Services

    Hi there,
    We are developing a web application in sharepoint 2013 in which we are using authentication mode="Windows”.  We have used a custom web part containing report viewer control for showing charts and reports, that we have
    developed using SSRS ( *.rdl files) and have all the .rdl files within Sharepoint Document Library.
    To start with, we were getting the error “Report Server has encountered a SharePoint error. (rsSharePointError) The user does not exist or is not unique.” To fix this, we changed <identity impersonate="false"
    /> from <identity impersonate="true" /> at web.config level which did the trick.
    However, we are now facing another issue wherein tabular reports are renedered ok in SharePoint through report viewer custom web part but chart based reports are not rendered. The chart image is not displayed.  
    Can somebody please help with a resolution?
    The code snippet for rendering the report is given below for reference purposes
    Thanks in advance
    Monica
    private
    void BindReport()
                string reportFullPath
    = "http://c4968397007/ReportLibrary/Reports/"
    + ReportPath;
                litReportHeading.Text = ReportPath;
                reportViewerControl.ServerReport.ReportPath = reportFullPath;
                reportViewerControl.ServerReport.ReportServerUrl =
    new
    Uri("http://c4968397007/_vti_bin/ReportServer");
                reportViewerControl.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote;
                Microsoft.Reporting.WebForms.ServerReport
    serverreport = reportViewerControl.ServerReport;
    IReportServerCredentials irsc =
    new
    ReportViewerCredentials("username",
    "password",
    "domainName");
                rvControl.ServerReport.ReportServerCredentials = irsc;
                rvControl.ServerReport.Refresh();

    Hi Monica Bhatt,
    For this issue, please first check the following similar thread, whether the steps provided are working in your scenario:
    http://social.msdn.microsoft.com/Forums/en-US/2bc30c80-290b-4346-a024-2f9f65db756f/chart-not-displaying-in-drillthrough-report-using-reportviewer?forum=sqlreportingservices
    Thanks,
    Qiao
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Qiao Wei
    TechNet Community Support

  • Sharepoint 2010 sql server 2008 r2 ssrs configuration

    hello,
    I need to configure the ssrs which is a multi server architecture farm ,but client have given user who is having admin rights but i cannot connect to the server in the configuration manager,first it raised time span exception .
    the user is having admin rights and i am runing with run as administrator.
    please help.
    thanks 

    Hi,
    According to your post, my understanding is that you wanted to configure the SSRS which is a multi-server architecture farm.
    Please make sure you configure it correctly. You can refer to:
    How to: Install and Configure SharePoint Integration on Multiple Servers
    Most time-out errors occur during query processing. If you are encountering time-out errors, try increasing the query time-out value
    in report dataset.
    Setting Time-out Values for Report and Shared Dataset Processing (SSRS)
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • SQL Server Report Builder 08 R2

    Hi there, so I'm trying to create a report and I need to pull from two datasets. They have the same fields just that one is for production and the other for archive. I've seen the suggestions for lookup but I'm wondering if that is appropriate since I'm
    not trying to include just one field

    Hi JrConsultant15,
    According to your description, you want to return data from two datasets in the report.
    In your scenario, since two tables have two same fields, you could create one dataset instead of two datasets, then join those two tables on query level. So that you could return data in the report from one dataset. The query should look like below:
    select * from table1 join table2 on table1.production = table2.production and table1.archive = table2.archive
    Or you could create two datasets and use Lookup() function to return corresponding value. Since Lookup() function only return one field, if you want to return multiple fields form second dataset, you should use Lookup() function for each field.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

Maybe you are looking for

  • Gaming issue - exe has encountered a problem and needs to close

    Hi everyone I was wondering if there was anyone out there that could help me. I can load a game onto my laptop (nothing demanding, just football manager) however when I then go to open the game when loaded i get the following message "(whatever the g

  • CCS and IC WebClient interaction? doesn't work

    Hi All, I can login into IC WebClient and CCS successfully, but when i check the Agent status in CCS, it give me msg 'Currently no agents are logged on to CCS '. So i can't simulate telephony. Does anybody know what's the reason and which additional

  • PDF file in infopath form

    Hello, Though the article is old, I hope someone can help me.  I need to do two things (on of which is partly explained here). 1.) Be able to open a fillable pdf located in a SharePoint document Library (located at the parent site level) in an InfoPa

  • Mapviewer demo mapinit.jsp with svg doesn't work with jdeveloper

    hi ng, i tried the source code for the svg-sample in jdeveloper and first of all jdeveloper dislikes the line "<embed id="map" src="<%= mv.getGeneratedMapImageURL() %>...". after "embed" a green line is to be seen. When i start the sample the map loo

  • How do i cut out high frequencies?

    Im fairly new to recording so i apologise for what might seem like a silly question.  Ive imported an acoustic guitar track which i have recorded in cubase to audition.  The only problem is that it has a very annoying bleeping metronome sound which y