Quantcast
Channel: SQL Server Reporting Services, Power View forum
Viewing all 10045 articles
Browse latest View live

[SSRS 2008R2] Report Manager login fails -- Error: request failed with HTTP status 401: Unauthorized

$
0
0

Hello,

      I have provided my setting and environment information below.  I am able to login Web Service URL successfully. But I am getting Error 'request failed with HTTP status 401: Unauthorized'  When I am tring to login by clicking report manager url. I uses domain user account for login. 

      I tried to look for solution but I did not found any related solution. I found many post for similar error msg but I think its different one. I tried from local and remote computer too but gives the same error both side. I am not sure but I am just thinking this is not the double-hop Kerberos issue right?

(Note: It was working fine before, when I used default settings i.e. full computername for eg. E121KAN.test.abc.com but I dont want to use ssrs server name so I changed settings and I got error )

Reporting Service configuratin tool settings

Web Serivice URL -  set to advanced, Host Header Name: rs.test.abc.com 

Report Manager URL - Set to advanced, Host Header Name: rs.test.abc.com

Environment - Distributed deployment

Server1(report_srv) --Windows server 2003R2 64bit, Installed sql server 2008R2 reporting service, configuration tools

Server2 (report_db_srv) --windows server 2003r2 64bit, sql server 2005 for report server database

 


Missing SSIS Extension in Config Files

$
0
0

As I understand it, in order to use an SSIS package as a data source in a report, I need to enable the SSIS extension in the RSReprotDesigner.config and RSReportServer.config files.  That extension is in neither of these files. I have SSIS running on my machine with Reporting Services.

The path to RSReportServer.config: C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer

The path to RSReportDesigner.config: C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies

Why is this extension not in either of these files?

The following is an abbreviated list of what's present in the RSReportServer.config file:

<Data>
 <Extension Name="SQL"
 <Extension Name="SQLAZURE"
 <Extension Name="SQLPDW"
 <Extension Name="OLEDB"
 <Extension Name="OLEDB-MD"
 <Extension Name="ORACLE"
 <Extension Name="ODBC"
 <Extension Name="XML"
 <Extension Name="SHAREPOINTLIST"
 <Extension Name="SAPBW"
 <Extension Name="ESSBASE"
 <Extension Name="TERADATA"
</Data>

The following is an abbreviated list of what present in the RSReporDesigner.config file:

<Data>
  <Extension Name="SQL"
  <Extension Name="SQLAZURE"
  <Extension Name="SQLPDW"
  <Extension Name="OLEDB"
  <Extension Name="OLEDB-MD"
  <Extension Name="ORACLE"
  <Extension Name="ODBC"
  <Extension Name="XML"
  <Extension Name="RS"
  <Extension Name="SHAREPOINTLIST"
  <Extension Name="SAPBW"
  <Extension Name="ESSBASE"
  <Extension Name="TERADATA"
</Data>

I'm running SQL Server 2008 R2

ProductVersion       ProductLevel       Edition
10.50.1600.1          RTM                   Enterprise Edition (64-bit)

The operating system is Windows 7 Professional 64 bit.

Thank you for your help!

cdun2

SSRS Report Toolbar Not Correctly Formatted

$
0
0
We call up Reporting Services reports via a web application and after upgrading a client to the latest version of our reports (using RS.exe to "install" the reports into reporting services) the reporting services report toolbar now appears to display without any formatting (i.e. the elements of the toolbar display vertically with no formatting rather than horizontally across the top of the page). We're using RS 2005 hosted on a Windows 2003 server. Any help would be greatly appreciated.

SSL Cert for 2008 R2 Reporting Services that is installed on a Failover Cluster - server address mismatch?

$
0
0

I utilized the idea from http://www.mssqltips.com/sqlservertip/2778/how-to-add-reporting-services-to-an-existing-sql-server-clustered-instance/ to install 2008 R2 Reporting Services on a new Clustered SQL instance.  In short, create the new Clustered SQL instance on Node1, installing Reporting Services with it.  Then on Node2, Add a Failover Cluster Node (without choosing Reporting Services); following that up with starting the SQL setup.exe with a cmd to bypass a check so that I can then install the Reporting Services feature on Node2.  It points out using the SQL Cluster Network name for connecting to Reporting Services.

I verified upon failover that I could still access the Reports and ReportServer URLs.  However, when wanting to add an SSL certificate to the RS configuration, I run into the warning of "mismatched address - the security certificate presented by this website was issued for a different website's address", where I can continue and get to the Reports or ReportManager URLs.

I played with different certs (internal CA created) and SANs and other things, but I still get this error with the cert.  The Reports URL, for example, is <a href="https:///Reports">https://<SQLClusterNetworkName>/Reports, and the cert has a CN and Friendly Name of SQLClusterNetworkName (with SAN of DNS: SQLClusterNetworkName.<domain>), but the error still happens.

What am I missing to eliminate the mismatched address warning when using the SQLClusterNetworkName as the base of the URLs?

Filter in MDX Statement

$
0
0

I have a very basic MDX statement which contains a FILTER statement:

WITH

SET [Selected Discipline] AS STRTOSET(@Disciplines, CONSTRAINED)
SET [Selected Department] AS STRTOSET(@Departments, CONSTRAINED)

SET [Selected Departments] AS IIF(@Disciplines = @Departments, 
  FILTER(
    DESCENDANTS([Selected Discipline], [Employee].[DISC - DEPT - EMP].[Department], AFTER), 
    NOT INSTR([Employee].[DISC - DEPT - EMP].CurrentMember.UNIQUE_NAME, "Freelance")),
  DESCENDANTS([Selected Department], [Employee].[DISC - DEPT - EMP].[Department], AFTER))

SET [TTM] AS { LastPeriods(12, StrToMember(@SelectedMonth, CONSTRAINED)) }

SELECT 

{ 
  [Measures].[Employee Hours], 
  [Measures].[Employee Hours %] 
} ON COLUMNS, 

NON EMPTY CROSSJOIN(
[Selected Departments],
[Employee].[Employee Bill Rate].[Employee Bill Rate].ALLMEMBERS,
[Employee].[Employee Level].[Employee Level].ALLMEMBERS,
[TTM]) ,

FILTER ([Employee].[Manager Name].[Manager Name].Members , 

             NOT InStr([Employee].[Manager Name].CurrentMember.MEMBER_NAME, "O-Tern"))

DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS 

FROM [OLSON BI]

WHERE (

[Employee Hours Time Category].[Time Category].&[Client Facing],
[Employee Hours Time Category].[Utilization Category].&[PRODUCTION])

CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, 	FORMATTED_VALUE, FORMAT_STRING, FONT

When running the query, I get the "Failed to parse the query to detect if it is mdx or dmx".

THe qqy=uery is basic enough, but for the life of me can't figure out what is wrong????

Any suggestions woud be greatly appreciated!!

Thanks


A. M. Robinson

How to get the reports(rdl file) from Reportserver, i am using Sql server 2008 ?

$
0
0
Does any one know how to get the rdl files deployed on report server ?

SSRS IIF Statement #Error

$
0
0

All,

I have the below IIF statement in SSRS report based on a sharepoint list. However I get #Error only on certain lines

For example when Item_Name = P001-P384D630Z01

I am sort of stunned at this point. All the other lines work except the one with above item name. If I remove the MF5 Mod Center part of the iif then everything works.

=
Iif((mid(Fields!Item_Name.Value,8,1)= 3 OR mid(Fields!Item_Name.Value),8,1)=4) AND LEFT(TRIM(Fields!Project_No.Value),1) =8, "MF5 Mod Center",
Iif(Left(Fields!Project_No.Value,1)="3","HOU MOD",
Iif(Left(Fields!Item_Name.Value,3) = "RDC","RDC",
Iif(Left(Fields!Item_Name.Value,4) = "P001","Overseas",
Iif(IsNothing(Fields!Engineering_Status.Value), "Pre-engineering",
Iif(Fields!Engineering_Status.Value="P.C. Finished", "Production",
Fields!Engineering_Status.Value
))))))

Parameters

$
0
0

I have a report where I declared a Parameter labeled Patient Account Number.

When I run this report, I would like to look up a specific Patient Acount #

I tried to edit the Parameter properties by selecting Allow Multivalue but no success.

Any suggestions.

Thank you


Sparkline which show value each day between parameters @startdate @enddate

$
0
0

Sparkline which show value each day between parameters @startdate @enddate

And can i do this inside a table or do i need to make it in an matrix? I already have a gauge which show the complience and i need to se the changes day by day between the period.

SELECT 'date', name, id, AVG(complience) AS complience
FROM result
WHERE (date >= @startdate) AND (date <= @enddate)
Group by name, id


Systemdeveloper @ 4film

SSRS date format in Expression Editor issue

$
0
0
Hi,
In the SSRS Report I am using a date field in the expression(=Fields!StartDate.Value), it returns the values in 'mm:dd:yyyy hh:mm:ss'. I dont want the hh:mm:ss part, I want only mm:dd:yyyy. is it possible using the expression editor with the built in SSRS functions?

Thanks,

Report works in Studio; fails to run when deployed

$
0
0

Our SSRS developers claim their reports work fine when run on their desktops, but not when deployed to the SSRS server. They blame the SS2008 R2 database server for some reason.  They say the reports which fail tend to be the larger reports with the most columns / rows returned by their queries.  I do not have any access to the SSRS server and I would like to spend my time doing something other than defending the database.

What should the SSRS developers do?  What can I do to help?

Thanks,

Michael

rsItemNotFound When try to open a report.

$
0
0

We have a bunch of reports deployed on SSRS 2008 r2. These are accessed through a browser normally.

We also have a VB Application - through which some of the above reports are accessed using WebBrowser.Navigate(string)

The report I'm trying to access is a report that contains a whole bunch of sub reports. the main report simply takes and passes the parameters to sub reports.

I have a report I'm accessing currently through this vb application. It's named  1190_Marketing_Detail.rdl

and it takes branch location as parameter.

Below is the string I'm passing and it works.  The same string/url I place in the browser address bar, I get the report.

If I remove the parameter LocationID=40 I get an appropriate error message similar to the first bullet point below.

"http://reports.organization.net/ReportServer/Pages/ReportViewer.aspx?/APA/1190_Marketing_detail&LocationID=40&rs:Command=render&rc:Parameters=false&rc:Toolbar=false"

Now I'm trying to access another report(the one that has sub reports as I mentioned above) It's named simply 1190.rdl

and it takes a bunch of parameters.  However, right now I'm not passing any parameters. Below is the string I'm passing

"http://reports.organization.net/ReportServer/Pages/ReportViewer.aspx?/APA/1190&rs:Command=render&rc:Parameters=false&rc:Toolbar=false"

I'm expecting error message like below

  • This report requires a default or user-defined value for the report parameter 'LocationID'. To run or subscribe to this report, you must provide a parameter value.

But I get this instead

  • The item '/APA/1190' cannot be found. (rsItemNotFound) 

1190.rdl is there.  I'm not sure why reporting services doesn't see it.  Thanks in advance for your help.



SSRS ReportViewer Displaying Corrupted Text

$
0
0

I'm having an issue with the ReportViewer control in an ASP.NET Web Application. I'm using Visual Studio 2013 and remote connecting to a SSRS Reporting Server running on SQL Server 2012.

The report runs fine in a browser, but when I try to load it in the report viewer control, I get a bunch of random characters (see image below). When I do an "inspect element" on the web page, all other markup on the page is missing. Thoughts? 

This is what is displayed:

PreviewProcessingService.exe does not run in the background

$
0
0

I just installed VS2013, and SQL2014 RTM, and after that I installed SSDT BI for VS2013 released version (http://www.microsoft.com/en-us/download/details.aspx?id=42313).

But when I created a SSRS project in VS2013, and then preview the report, there pops up a command windows "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\PrivateAssemblies\PreviewProcessingService.exe", and it runs in the foreground, not like in VS2012 or VS2010, that command does not appear, and it runs as a background process. Besides that, if I close that windows, and preview the report again, it shows the error, "There was no endpoint listening at net.pipe://localhost/PreviewProcessingService5692/ReportProcessing that could accept the message. ".

Anyone has the same issue? how to work it around?


Hunter

Employee Working Continuous Hours Exception Report

$
0
0

Dear Sir,

I am tasked to develop a Employee Continuous Hours Exception Report. An employee is allowed to work 24 hours in a day (2 shift) but must take the next day as rest day. I would like out to find out the employees that worked more than 24 hours in a Continuous.

Refer attached image as a sample

I would only like to pick the records highlight above in the image, because this is an example of the working more than 24 hours continuously.

If annyone can help me with SQL Script to produce the above report.


Marsh Narewec


SSRS column running value plus opening value

$
0
0

Hi All,

Im trying to do report that calculate the running value across columns.  Running value itself works fine. But I want to add another field from along with the running value. but the formula doesn't work. example below

Data

                                                                purchases

                opening stock               Feb           March          April

Item A      10                                5                 4               6

Item B      20                                10               5                1

Item C      30                                20               5               10

Report should look like this

                                                               Net stock by month

                opening stock               Feb           March          April

Item A      10                                15              19             25

Item B      20                                30               35            36

Item C      30                                50               55             65

groups

1. row = by item

2. column = by month

I applied formula like = runningvalue(sum(purchases),sum,"group_item")+opening stock

any ideas to get the report I want?

thanks


Report rows differing widths

$
0
0

Hi,

I have a report which contains 4 tablix one above the other all with exactly the same left, padding and width. In Bids preview all the rows display equal width and they also do if i export as PDF. However in report viewer all the tablix are different widths, some even have the header in one width and the details rows different.

I believe the rows are being stretched as one of the cells has an image in which is stretched in report viewer and looks fine exported to pdf or viewed in bids.

Does anyone know what the issue is?

Regards

Chris

use AVG in query for dataset

$
0
0

Im trying to use AVG in query for my dataset in ssrs.

This is my query

SELECT name, id, AVG(complience) AS complience
FROM result
WHERE (date >=@startdate) AND (date<= @enddate)

Im later on doing a sprakline with the complience for each date.

Please help me :)


Systemdeveloper @ 4film

How to use operator “in” with MDX in SSRS?

$
0
0

I'm building an ssrs report with this MDX query:

SELECT NON EMPTY { ([KeyWords Dim].[Keywords].[Keyword].ALLMEMBERS * 
[Ad Dim].[Countries].[Countries].ALLMEMBERS * 
[Creative Dim].[Creatives].[Title].ALLMEMBERS ) }  ON ROWS,
[Measures].[Clicks] ON COLUMNS
FROM [CubeName]
WHERE ([Time Dim].[Day ID].&[20140701]:[Time Dim].[Day ID].&[20140701])

I want to add another where clause to get only result for specific countries, something like that:

Where [Getways Dim].[Countries].[Countries].ALLMEMBERS IN ([Getways Dim].[Country].[Countries].&["Germany"],[Getways Dim].[Country].[Countries].&["US"]...)

How to do the "IN" part?

(Eventually i want to show the countries to be multi-value parameter which i already created) 

Thanks


group value in page header is not displaying in all the pages..

$
0
0

Hi Friends,

I have a scenario where i have to display the group value in Page header in each page.

Ex:

Page Header: Campus:Senior  -- Page1

Group:Senior

Details: Boys :22

             girls:20

Page 2: Campus:Junior

Group:Junior

Details: Boys :22

             girls:20

I am calling the group name value in page header as ReportItems!txt.value but it is displaying correctly in only first page but not in the consecutive pages...Please help me

Thanks,

Sam

    
Viewing all 10045 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>