reporting-services

The permissions granted to user 'servername/iusr-username' are insufficient for performing this operation. (rsAccessDenied)

依然范特西╮ 提交于 2020-01-24 22:47:08
问题 I have tried everything that most forums have said and still cannot get other people in the network to see this report. Here's the things I have tried: in servername/reports under properties tab i have added my user domain/username and given him all 5 roles ( Browser , Content Manager , My Reports , Publisher , Report Builder ) in the site settings --> Configure Site wide security --> domain / username , i have given System Administrator role. In IIS , I have given both the reports and

Why does this URL do different things depending on how it's activated?

ⅰ亾dé卋堺 提交于 2020-01-24 20:54:06
问题 In a related post (here) I discuss a problem I'm having with a URL action in a SQL Server Reporting Services report. I thought I had solved the problem, but I now realize that I haven't. (I'll update the related post in due course.) I'm generating a URL using string concatenation, and using Javascript so the URL opens in a new browser tab. Here's the code that generates the URL, which I think is pretty standard: ="javascript:void(window.open('http://www.ic.gc.ca/app/opic-cipo/trdmrks/srch

SSRS Group By Parameter

一世执手 提交于 2020-01-24 06:09:14
问题 If I have a report parameter ( @Fruit ) that allows multiple selections how can I use the parameter as a column group in an SSRS Matrix? Typically, I would use the parameter in my query like the following: WHERE tbl.fruit In ( @Fruit ) Then I would use the column in the dataset as my group. However, in this case I need the full dataset returned. I can't filter the query, but I still want to only display the groups selected by the parameter. If my query returns Apples, Oranges and Bananas, but

SSRS Group By Parameter

☆樱花仙子☆ 提交于 2020-01-24 06:07:50
问题 If I have a report parameter ( @Fruit ) that allows multiple selections how can I use the parameter as a column group in an SSRS Matrix? Typically, I would use the parameter in my query like the following: WHERE tbl.fruit In ( @Fruit ) Then I would use the column in the dataset as my group. However, in this case I need the full dataset returned. I can't filter the query, but I still want to only display the groups selected by the parameter. If my query returns Apples, Oranges and Bananas, but

NotShowing Data-Bound Image (Reporting Services)

六眼飞鱼酱① 提交于 2020-01-23 19:59:38
问题 I Create an SendWorkOrder.rdl Report for SSRS. In the dataSet I have a field with Image dataType(Value in that database column eg- 0x89504E470D0A1A0A000000....). Followed msdn article to create data bound image. I Tried following expressions, But Image Not Showing =First(Fields!Signature.Value, "CasingList") =System.Convert.FromBase64String(Mid(System.Convert.ToBase64String(Fields!Signature.Value),105)) =Convert.FromBase64String(First(Fields!Signature.Value, "CasingList")) 回答1: You are trying

Editing RDL files with Visual Studio 2008

南笙酒味 提交于 2020-01-23 11:04:31
问题 I have installed SQL Server 2008 Express on two workstations. On one workstation, it has updated the VS2008 installation so that I can create reporting projects containing reports as *.rdl files. On the other workstations, VS2008 can only create/edit *.rdlc files. The report edition interface is also different. I do not understand where the difference comes from. Two major differences between the two workstations are: - one is x86 and had no VS installation before installing SQL Server 2008

Convert a date to an integer in YYYYMMDD format in SSRS

十年热恋 提交于 2020-01-23 02:56:29
问题 What is the equivalent expression in SSRS of the following conversion of a date (@Date) in T-SQL? CONVERT(INT,CONVERT(CHAR,@Date,112)) I need the date parameter value to be converted to an integer in YYYYMMDD format. 回答1: Assuming you have a date parameter called YourDate . You could use the following expression: =Cint(Format(Parameters!YourDate.Value, "yyyyMMdd")) Explanation: Step 1: Format the date to the yyyyMMdd format: Format(Parameters!YourDate.Value, "yyyyMMdd") Step 2: Cast the

Convert a date to an integer in YYYYMMDD format in SSRS

久未见 提交于 2020-01-23 02:56:05
问题 What is the equivalent expression in SSRS of the following conversion of a date (@Date) in T-SQL? CONVERT(INT,CONVERT(CHAR,@Date,112)) I need the date parameter value to be converted to an integer in YYYYMMDD format. 回答1: Assuming you have a date parameter called YourDate . You could use the following expression: =Cint(Format(Parameters!YourDate.Value, "yyyyMMdd")) Explanation: Step 1: Format the date to the yyyyMMdd format: Format(Parameters!YourDate.Value, "yyyyMMdd") Step 2: Cast the

reporting services (ssrs) prompts with username/password

匆匆过客 提交于 2020-01-22 20:45:09
问题 I am using reporting services 2010 and get the following prompt when trying to access the reports: In the reports definition, I have specified the database username/password. Is there any way to bypass this? 回答1: There are actually two logins you deal with when it comes to reporting services. The login to the database is to capture the data, it has nothing to do with the actual report itself. That login you used is sent to the database as the user / credentials being used to pull the report

reporting services (ssrs) prompts with username/password

被刻印的时光 ゝ 提交于 2020-01-22 20:43:11
问题 I am using reporting services 2010 and get the following prompt when trying to access the reports: In the reports definition, I have specified the database username/password. Is there any way to bypass this? 回答1: There are actually two logins you deal with when it comes to reporting services. The login to the database is to capture the data, it has nothing to do with the actual report itself. That login you used is sent to the database as the user / credentials being used to pull the report