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

Conversion from type 'CalculatedFieldWrapperImpl' to type 'Integer' is not valid._

$
0
0

Hi,

I'm using SSRS 2008 to create a relatively simple report with a stored procedure as the dataset. The SP runs fine (no errors) but when I try to run the report I get "Conversion from type 'CalculatedFieldWrapperImpl' to type 'Integer' is not valid. " error message. The data type is declared as int in SQL. I'm using several other int fields in the report without a problem.  Anyone familiar with this error?  Thanks.


Robert Boccone

Tablix headers not repeating in SSRS 2008

$
0
0

I have created a new report & add a table to it. When I select "Tablix Properties" and check on Columns Headers -> "Repeat Cheader columns on each page" the header columns do not repeat on each page. I also tried "Repeat header rows on each page". "Add page break before" seems to work ok. I am using VS 2008 9.0.30729.1 SP

I also tried deploying but it still does not work on the deployed version.

 

Interestingly, reports migrated from 2005 & unchanged seem to be ok.

 

Any ideas? Am I not setting soemthign up properly?

 

Report Builder 3.0 Tablix Filter seems to use and but I need or

$
0
0

Ok so I'm using Report Builder 3.0 and I've created a table to list computers in our office... I'm then using the tablix filter to pull certain groups of computers.

so...

Expression:  [Netbios_Name0]

Operator:  Like

Value:  *PXY*

This works and pulls all machines with pxy in their netbios name... but... what I would like is have an OR in there as well so my value would return something like *PXY* Or *FS1... putting this into value does not work and return nothing at all. as well if I add an additional filter so...

Expression: [Netbios_Name0]

Operator: Like

Value: *PXY*

================

Expression: [Netbios_Name0]

Operator: Like

Value: *FS1

it seems to treat the additional filter as an 'and' type situation and expectedly return 0 results. Is anyone working with report builder 3.0 that has a solution for this issue? ideas? thoughts?

SSRS Report Returning Double Quote string from a Single Quote String

$
0
0

Hi, I'm getting weird thing in resultset from SSRS report when executed. When I pass parameter to a report, which passes String that has single quote value to a split function , it returns rows with double quote. 

For example  following string:

'N gage, Wash 'n Curl,Murray's, Don't-B-Bald

Returns: 

''N gage, Wash ''n Curl,Murray''s, Don''t-B-Bald

through SSRS report.

Here is the split function Im using in a report.

CREATE Function [dbo].[fnSplit] (
@List varchar(8000), 
@Delimiter char(1)

Returns @Temp1 Table (
ItemId int Identity(1, 1) NOT NULL PRIMARY KEY , 
Item varchar(8000) NULL 

As 
Begin 
Declare @item varchar(4000), 
@iPos int 

Set @Delimiter = ISNULL(@Delimiter, ';' ) 
Set @List = RTrim(LTrim(@List)) 

-- check for final delimiter 
If Right( @List, 1 ) <> @Delimiter -- append final delimiter 
Select @List = @List + @Delimiter -- get position of first element 
Select @iPos = Charindex( @Delimiter, @List, 1 ) 
While @iPos > 0 
Begin 
-- get item 
Select @item = LTrim( RTrim( Substring( @List, 1, @iPos -1 ) ) ) 

If @@ERROR <> 0 Break -- remove item form list 
Select @List = Substring( @List, @iPos + 1, Len(@List) - @iPos + 1 ) 
If @@ERROR <> 0 Break -- insert item 
Insert @Temp1 Values( @item ) If @@ERROR <> 0 Break 
-- get position pf next item 
Select @iPos = Charindex( @Delimiter, @List, 1 ) 
If @@ERROR <> 0 Break 
End 
Return 
End

FYI: I'm getting @List value from a table and passing it as a string to split function. 

Any help would be appreciated!


ZK

deploying ssrs

$
0
0

I am trying to deploy a report at work, so my colleague can access it, we are not on the intranet, or set up under a domain,  but i was advice i can go through iis, please does anyone have an idea( i dont have knowledge on network).

Thanks

Rebuild report server db's?

$
0
0

I think we corrupted our test report server database.  We now get this error when connecting to our test SSRS2012:

The attempt to connect to the report server failed.  Check your connection information and that the report server is a compatible version.

What are the steps to rebuild the report server database?

thanks

scott

Publish reports with custom authentication?

$
0
0

When publishing reports from Visual Studio, does VStudio authenticate with SSRS/Reportingservice2010?  What permissions are required to publish reports?

thanks

scott

Add charts dynamically

$
0
0
Hi,

I'd like to create 1 chart and have multiple charts appears based on the data; for example, if I have sales data for 3 different cities by quarter, there should be 3 charts. If I add sales data for a 4th city on the backend the report should render a 4th chart without my having to change the report file.

I have seen a couple of threads on this but they seem geared towards a novice user;  if someone could spell out the specifics for me or point me to a detailed example of this report type I would appreciate it.

Thanks


Help regarding SSRS summation value

$
0
0

Hello All,

I am new to SSRS Reporting. So please guide me to achieve the below requirement.

I am using Project Server 2013 and using the database and tables created by it to render reports.

I have a table Project with Columns ProjectName, ProjectTeam and Schedule (where schedule can have the value either 0 or 1. 

Where 1 represents, the project is behind schedule and 0 represents, the project is on schedule)

I have grouped the table as follows : ProjectTeam, Then ProjectName and the Value has the Schedule.

So a sample output is like :



So now what I need is the total number of Projects which are behind schedule and on schedule in a particular team.

ie., Like Team 1 = 2, Team 2 = 1 and Team 3 = 3 separately, so that I can build a table or chart out of it as



So how do I achieve this using Reporting Services?

I want a general formula for this, so that in future even if a new team is added it should work. I dont want to use the formula to check Iff(ProjectTeam = "Team1") and so on.

I could not able to pull the sum for each Team using the expressions as well. 

So please guide me how to achieve this.

Thanks,

shanky


Keep chart visible when scrolling page

$
0
0

Hi,

All is in the title...

Is it possible to keep a chart (on right side datas) visible when scrolling datas.

Thanks for response.

After configuring SSL, cannot run Report Manager but ReportServer works fine

$
0
0

I'm using SSRS 2014 as part of SQL Server 2014 Express. I've configured both the Web Service URL and the Report Manager URL to use a Certificate and only allow port 443 traffic. I did this by removing the port 80 identity and adding an SSL Identity.

All is working well for https://myserver.com/ReportServer. But when I try and access report manager, I get the following error when running remote:

The underlying connection was closed: Could not
establish trust relationship for the SSL/TLS secure channel.

When running directly on the server, the server, it just rejects my passwords and asks for it again.

If I remove the SSL Indentity and add back in port 80, it works fine over https.

Any ideas of what might be causing this problem?

Thanks,

Glenn


Please mark this post as Answered if it solved your problem, otherwise you can click Vote if it helped you out. -Glenn Thimmes

ssrs 2008 query question regarding in statement

$
0
0

I am no sql expert, so any help would be greatly appreciated.  Thank you in advance.  I want the user to enter in loan numbers they would like to reflect on a report in ssrs 2008.  The loan number field is a text field.

My sql looks like this, and the user will enter in loan numbers like ( 0001,0002,0003) - comma separated.  However, Visual studio does not like the format.  I know it must be something simple, but I can't figure out the correct syntax.

select * from dbo.vwEscrowHistoryLoan
where Lnid in @LnID

SSRS 2012 behind an F5 load balancer

$
0
0

I have been trolling the web all day and finding ridiculous amounts of articles that make absolutely no sense to me, but I am not a SQL DBA.  I dont have any help on this so I sure hope someone else does!!

Here is the setup

We have the Report database setup on a cluster (SQL cluster on top of a Windows cluster)

I have 2 servers that I want to load balance.  I had the networking team configure the F5 friendly name as reporting.domain.com and assign in the address.

I want the 2 SSRS web service servers to be load balanced, they will both connect to the same database. 

I am installing an enterprise app and when I get the screen where it asks for the SSRS web server I can put report.domain.com in and it sees the report server, but then comes back with http://node1.domain.com instead of report.domain.com.  

I know this has to do with scale-out deployment and I am really hoping that someone can help me with this.  User must be able to go to http://report.domain.com/Reports and not have to type in a server name and be load balanced.

Thank you in advance for ANY help with this.  I have been to every KB article out there 

EFD

EDIT:  Thought a pic would help.  Its crude, but the point is there




Warm Fuzzies!


Migrate VS SSDT Reporting Project to SQL Server Report Builder?

$
0
0

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.

Report Server URL page can't be displayed.

$
0
0

So we attempted to upgrade sql 2012 to sql 2014 for SCCM. Upon doing so this broke reporting services.  My dbadmin reverted back to sql 2012 and now we cant get reporting services at all to work.  The issue started when he went to upgrade sql and it had an error on the reporting services part because of some ssl cert which I don't think we use since the service urls are all http.  I could never get the https to work the first time.

I am doing all of the below on the sql server itself.

in the reporting services configuration manager web service url section when you click on the report server web service url it goes to a page cant be displayed.  If you go to the report manager url section and click on the report manager site identification url it does take you to a webpage but says unable to connect to the remote server.

Any one have any ideas?


Custom Report Items in VS2010 or VS2012 ? Does it work

$
0
0

Does anyone know if Custom Report Items actually work in either VS2010 or VS2012.

I have taken the 2008R2 Polygons sample and compiled it using VS2010 and VS2012 and neither actually work in either version.

There are no assembly linking errors, but the compiled dlls either can't be added to the toolbox in VS2012 or can't load the type in VS2010.

I have tried everything and was interested if Microsoft had been able to get it working them selves.

My next step is to write my own, but was wondering if it actually works before I try.

Jamie

Moving Reports to Report Manager 2012

$
0
0

Hi ,

I am migrating and deploying all reports from RM 2005 to RM 2012

Reports still will be using Sql Server 2005, So should I create subscriptions on RM 2012 or Sql Server 2005 reportserver database  can handle the subsriptions?

thanks,

Gok

How to fetch Schedule details from Subscription ID using ReportServer2010

$
0
0

Hi All,

I'm using Azure so ReportServer DB and the application DB  are in two different servers. So my requirement is to fetch the Schedule details from the ReportServer DB and store it in my application DB for further processing and i have only the SubscriptionID. So is there any way i can fetch the schedule details from subscription ID from ReportServer2010 web service.

One alternative is that I'm connecting to the azure server and fetching the information but i want to know is there any built in web method to get this info.

Thanks in advance and let me know if you need any more info. Waiting for your valuable answer.

Regards,

Ravi Neelam.

Possible session caching issue in SSRS2014

$
0
0

Using custom FormsAuth, User A can sign into our own main asp.net mvc app (WIF cookie), then SSRS (FormsAuth cookie) and all is well.  Here is where things go bad.  User A signs out of our main application (WIF cookie deleted) then back in into our main application as User B then back into SSRS.  SSRS report that displays User!UserID show UserA instead of current User B.  Its like there is either a session or cookie caching issue going on but not for sure.  

1. What is the proper way to sign out of SSRS and prevent session caching?

2. Do I need to worry about making my SSRS logon page non-cacheable?  If so, what is the recommended way of doing this?

thanks

scott


Display Report Content Where Column X is A in SSRS

$
0
0

From the image above, I want viewers of my SSRS report to see data where PaymentFound column is equal to 'N' without limiting it in my T-Sql query and without hiding any column in my report.

How do I achieve this in SSRS?

Thank you.


Zionlite



Viewing all 10045 articles
Browse latest View live


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