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

License

$
0
0

Dear Support Team,

We have developed an application which requires "Microsoft SQL Report Server". Can we redistribute the "Microsoft SQL Server 2008 Express with Advance Services" to our customer who uses our application. I mean can we install "Microsoft SQL Server 2008 Express with Advance Services" in our customer office with out any paid license.

Do we get Report Server with "Microsoft SQL Server 2008 Express with Advance Services". If yes is there any limitations for the Report Server with this edition.

Thanks in advance and waiting for your reply.

Regards,

Sambasivarao T.


Dynamic alternate tables in SSRS 2008

$
0
0

I want to develop one SSRS reports for a student as like below.

I am having only one dataset which will contain all the semester information of a student.

Please help me how to obtain the exact structure as like below.

IIF In SSRS With Opposite Of = For A List

$
0
0

I am trying to build a Expression using IIF with the opposite of this in a calculated field:

=IIF((Fields!DEPARTMENT_CODE.Value = "22700") OR (Fields!DEPARTMENT_CODE.Value = "22800") OR (Fields!DEPARTMENT_CODE.Value = "22900") OR (Fields!DEPARTMENT_CODE.Value = "23000") OR (Fields!DEPARTMENT_CODE.Value = "2350") OR (Fields!DEPARTMENT_CODE.Value = "23800") OR (Fields!DEPARTMENT_CODE.Value = "23900") OR (Fields!DEPARTMENT_CODE.Value = "24000") OR (Fields!DEPARTMENT_CODE.Value = "24100") OR (Fields!DEPARTMENT_CODE.Value = "24200") OR (Fields!DEPARTMENT_CODE.Value = "24300"),1,0)

I have tried <>, AND, AND NOT, and XOR which all seem to yield the same results.  Any suggestions would be greatly appreciated!

Thanks in advance! Brett

Getting white space when the report is exported to pdf.

$
0
0

Hi all,

Report contains many tabular components. Visibility condition have been set to these components.These are aligned horizontally and placed in a rectangle container. In ssrs 2005, there were no issues. Now we are migrating the report to SSRS 2012, but we are facing white space issues. We have tried many ways to get rid of the white space issues.  We tried to align the tabular components, we are getting a report without any blank spaces in preview mode. But when we exported the same report to pdf, we are getting white space in between the tabular components. Please suggest a way to resolve the white space issue.

ssrs 2008 r2 paramter tied to sql used

$
0
0

In an existing ssrs 2008 r2 application, I am having a problem trying to understand the existing logic.
I am hoping you can it explain  the logic to me of how the parts are tied together for both part 1
 and part 2:

1. The  following is Part 1:

 a. The main sql the

SELECT
                sum(case when @AbsT like '%UN1%'
                                then [absUN1]
                                        else 0 end) +
                sum(case when @AbsT like '%AB1%'
                                then [absAB1]
                                        else 0 end) +
                sum(case when @AbsT like '%IL1%'
                                then [absIL1]
                                        else 0 end) +
                sum(case when @AbsT like '%ME1%'
                                then [absME1]
                                        else 0 end) +
                sum(case when @AbsT like '%SU1%'
                                then [absSU1]
                                        else 0 end) +
                sum(case when @AbsT like '%TR1%'
                                then [absTR1]
                                        else 0 end) as SelectedAb1
        FROM [OP1].[dbo].[AttReport]
        where SelectedAb1 > isnull(@AMin,-1)
 and SelectedAb1 <= isnull(@AMax,100)

 b. The following is the dataset and parameter that refer to the sql above:             

@AbsT is  the parameter

select 'AB1' as value, 'Absent (ABS)' as Label
union
select 'IL1', 'Ill (ILL)'
union
select 'ME1','Medical (MED)'
union
select 'SU1','Sus (SUS)'
union
select 'TR1','Tru (TRU)'
union
select 'UN1','Unverify (UNV)'

Can you explain to me how the parameter listed above is used  by the sql listed above?

2. The following is part 2:

a. The following is the sql behind the parameter called AbsMinMax

select 0 as Num
union
select 1
union
select 2
union
select 3
union
select 4
union
select 5

b. the following are the parameter values a user enters:

 @AMin as int,
 @AMax as int,


c. the following is the where clause:


  where SelectedAb1 > isnull(@AMin,-1)
 and SelectedAb1 <= isnull(@AMax,100)

Can you explain how the items listed under part 2 are tied together? Can you explain he logic?

              

Row column group hiding in matrix report

$
0
0

Hi ,

I need to hide the repeated rows in matrix report,in below with red rounded (4%,4%) is coming twice for single resource.

I need to show only one 4% for this resource.How to do this in matric report.

thanks

bhupesh.r


SQL Reporting Services 2012 ,Exception

$
0
0

Guys

We are facing an issue on report server 2012 and message is as follows

message from the server cannot be parsed

Common case for this exception are when the response is modified by calls to response.write(),response filters , http modules

I will attach an image once the thread is verified

Please assist us in case if any one faced this issue before

Regards

DataGeek_84

Regarding ssrs

$
0
0

Hi,

I have deployed report in one system, I have to access that report from another system 

what should we do?

please help me


documentmaplabel issue in ssrs

$
0
0

Hi - I have created the documentmaplable property on group.  When I click on Paidsearch from the left hand  it shows like below: 

The issue here is it is not pointing to the top.  ie. 3 rows are hiding on the top.  Below picture shows top of the rows where "PAID SEARCH" is visible.  Please tell me how can i point documentmaplable to show the top of the item.

SSRS render timedout

$
0
0

Hi All,

I am running multiple(40) reports at a same time and all the reports are success if my database is very small (1gb). Currently my database size is 40 GB. Now if I ran all those reports again then most of the report is not generating the output (pdf). I am getting "The Operation has timed out error" in ReportExecutionService.Render().

But when I check the ExecutionLog2 and ExecutionLogStorage tables of Reportserver, it shows all the report executed successfully. (Status=rsSuccess).

I have below setting in the ReportServer.config

<Add Key="SecureConnectionLevel" Value="0"/>
<Add Key="CleanupCycleMinutes" Value="10000"/>
<Add Key="MaxActiveReqForOneUser" Value="200"/>
<Add Key="DatabaseQueryTimeout" Value="0"/>
<Add Key="RunningRequestsScavengerCycle" Value="6000"/>
<Add Key="RunningRequestsDbCycle" Value="6000"/>
<Add Key="RunningRequestsAge" Value="30"/>
<Add Key="MaxScheduleWait" Value="5"/>
<Add Key="DisplayErrorLink" Value="true"/>
<Add Key="WebServiceUseFileShareStorage" Value="false"/>

Also I am setting the timeout as 1800000 for the Render method.

Please do let me know if anyone has idea on this.

Thanks in advance.

Best Regards

Muthuraja

PowerView create a single select filter or restrict aggregation

$
0
0

Hi,

Can someone please help me create multiple single-select filters in a PowerView report?

Scenario

I have a data-set that has pre-calculated values, so I want the PowerView report to only display values directly from the data-set (i.e. to not aggregate multiple data-set rows). I am, in effect, using PowerView as an interactive data filter.

My dataset has 5 independant dimensions (e.g. Time, Sector, Currency, Market, Country) and 5 measures (which are non additive/able to aggregate).

I am creating PowerView reports for external clients who do not understand the data model or tool, and I have little ability to educate them. So, I want to use "on screen" simple filters (e.g Tile By or Slicers), but I also want to restrict the clients from creating invalid analysis (e.g. by accidentally aggregating multiple rows).

Issue

I want to create a PowerView report with multiple slicers (or other interactive elements) that shows a bar chart where a user can select a single category from 4 dimensions (i.e. Time, Sector, Currency, Country), and the chart has Market as it's axis.

I tried putting "time" in the chart's "Tile By" filter (which enforces single select), but then if I put the other categories as "Slicers" I can not force the client to only select one value. If the client selects multiple values in these slicers, the report will show incorrect values (e.g. it will aggregate across the multiple selection of Currency or Sector).

Question

Can someone recommend a way to force a slicer to be a single select, or have multiple nested "Tile Bys", or some other solution to my problem?

Dave

Report failed to execute(access) from application where windows application installed on Mapped Drive

$
0
0

I am working on SSRS 2008 R2. I have mapped drive with folder where installed windows application(Developed in C#). I am executing windows

application from mapped drive. Application working fine but whenever I am executing any report then it gives error :
An error occurred creating the configuration section handler for system.serviceModel/bindings: Attempt by method dynamicClass.methos(System.Type)  to

access method 'System.ServiceModel.Configuration.EndpointAddressElementBase..ctor()' failed.
It is displayed error line in config file.

In code line, "ReportingService2010SoapClient" class is going to connect with report server at that time it is giving error.

Notes: If we execute application from local path(workstation) then Report executing(accessing). It means in normal situation

Please can anyone suggest what configurations are need to add in config file to support report execution from mapped drive application.

If any scenario/setting can help me in above scenario, Please share with me.

If more detail required, let me know.


Vir14

Can I create indexes

$
0
0

I'm currently building reports for a client, previously the reports were done in Excel and now we are converting them to Reporting Services 2012, I need to be able to create an Index page with the Hyperlinks to the relevant reports, how could I go about doing this? is there a way or would I need to create each report on a separate report?

ReportViewer.WinForms.dll produce exception

$
0
0

Hi there,

I hope this is the correct forum.

I have a WCF Client app that uses ReportViewer to execute a SSRS report. The long version is on StackOverflow under "Microsoft Report Viewer 2012 exception “Not enough storage is available to process this command”"

The Short Description is that on 32bit machines I get a "not enough storage is available to process this command" exception and from my investigation it seems like a ERROR_NOT_ENOUGH_MEMORY.

It runs fine on 64bit machines, and the error doesn't happen at exactly the same point on the 32bit machines.

The reason why it is confusion for me is because ReportViewer 9.0 works fine, but 11.0 doesn't, and it proofs to be difficult to convert a VS2012 app that uses ClickOnce for deployment and was already published with Report Viewer 2012 to use Report Viewer 2008 (9.0) again.

Is there anybody that can guide me where to find a solution?

Thanks

Jaques Burger

How to run automatically VBscript-Macrocode on Excel sheet by using SSIS?

$
0
0

Hi,

In my Source had Excel sheet(.xlsx)

As per requirement(format the Excel columns in DDMMYYYY,Tex to column..,in Excel sheet)

I have to RUN the VB script (Macro code)

below code :

  Set currentWorksheet = ActiveWorkbook.Worksheets(1)

  usedRowsCount = currentWorksheet.UsedRange.Rows.Count

  For Row = 1 To (usedRowsCount)

   

     Cells(Row, 2).Value = "'" & Cells(Row, 2).Value

     Cells(Row, 3).Value = "'" & Cells(Row, 3).Value

     Cells(Row, 7).Value = "'" & Cells(Row, 7).Value

     Cells(Row, 15).Value = "'" & Cells(Row, 15).Value

     Cells(Row, 16).Value = "'" & Cells(Row, 16).Value

     Cells(Row, 17).Value = "'" & Cells(Row, 17).Value

     Cells(Row, 18).Value = "'" & Cells(Row, 18).Value

     Cells(Row, 19).Value = "'" & Cells(Row, 19).Value

 

  Next Row

 

End Sub

Next step is Run the SSIS package by this SOURCE.

Now I want to avoid the manual  work of RUN macro code on Excel

and By using SSIS(Automation), How can I do ?

Thanks

-Madhu


Specific report as default page

$
0
0

Hi!

Is there a way to show a specific report (rdl) if providing our users http://servername/reports?

At the moment the user first must enter username and password and then is forwarded to http://servername/Reports/Pages/Folder.aspx which shows folders containing reports (rdl).

SSRS Map Report, Map Tiles display 401 Unauthorized (I think my server is blacklisted)

$
0
0
The image below shows the error I started getting on all my my reports.  They still work locally.  I think my server has been blocked.  Anyone know what to do?

Colors the Rows as per Condition

$
0
0

Hi All ,

I have a tablix with 4 fields Status, Date,Name and Product .

First Requirement is if the status is closed then that row should be red, open then blue else do nothing  for rest of the rows.

Second Requirement if the Difference between the Date in the records of the tablix and the supplied Date parameter Value is more than 5 then

Color that Entire Row Green  IF it is 30 then orange else do nothing.

Kindly Assist

Thanks

Priya


How to reduce the size of email (rdlc) report when I exported

$
0
0

Hi

I need help to reduce the size of a emial(report) when I exported .

I export the report (rdlc) to any format file and I want to reduce the size. 

The size of emial is 290K But I need to reduce it and come to around 70KB.

I have done changes in font size and color but no luck . :(

Please help.

How can I reduce the size ?

Thank.

Abbreviation

$
0
0

I need assistance with abbreviating results

=Fields!Placed_Provider_Name.Value 

= River Nursing Home A

= Blue Nursing Home,

   

I want the results to be displayed as RNHA, BNH

Any help would be appreciated

Viewing all 20764 articles
Browse latest View live


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