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

KPI Menu not available in Web Portal

$
0
0

I have Enterprise Edition installed at work but still cannot see the KPI option under the " +New " dropdown. Can anyone help me understand why this is the case? 


Operation not allowed while trying to download an Excel Workbook on RS 2017

$
0
0

Hello,

I am getting the generic error The operation you are attempting on item is not allowed for this item type. (rsWrongItemType), while trying to download an resource typed Excel Workbook on SQL Server Reporting Services 2017.

Via Portal Web I can download without problems, but when I try via Web Service it just throws this error.

Other untyped resources are downloading just fine, I checked the difference between URI's but even when I tried to match both, it does not work.

Does anyone knows why and how to solve it? Thanks.



SSRS 2016 Web API - Proper way to return HTML Fragment of a report.

$
0
0

I'm using SSRS 2016 and RESTful Web API.  SQL Server is standard edition.

In a React application and I want to embed a report in it with a call like this:

axios.get('https://xxx/ReportServer/Pages/ReportViewer.aspx?/OrderMetricsByCustomer&rs:Format=HTML5&rc:HtmlFragment=True&rc:PrefixId=blah&rc:DocMap=False', {withCredentials: true})

But the results are always a full HTML document.  No HTML table like the documentation says.

https://docs.microsoft.com/en-us/sql/reporting-services/html-device-information-settings?view=sql-server-ver15

I am not interested in using an iframe option.

Please advise.

Size Limit for Dataset Query in Report Designer

$
0
0
I was working on the SSRS Report Designer and was trying to copy and paste a huge SQL query from SQL Management Studio (like I always do) to the dataset window.

This method usually works, but for this extremely long SQL query with nested SELECTs and JOINs, it seems as though the Report Designer dataset query window limits the number of characters including carriage returns I can input in it.

When I paste my SQL query from
SQL Management Studio, it seems to paste only three quarters of the query, and thereafter I am not able to manually key in anything else or even make a line feed in the dataset query window.

Is there a limit to the number of characters I can key in here ? If so, is there any workarounds or configurations I can try ?

Kenny

SQL query to identify the reports that have shared data source or a custom data source

$
0
0

Hello Team,

Is there any query to execute in the SSRS report server by which I can get the list of SSRS reports that have a custom source and reports that have a shared data source.

Also, would like to link the report with the data source details.

Bug in Report Builder 3.0

$
0
0

Hi,

I've configured my PBIRS (reports and reportserver) on a host with ssl on port 4000 as port 443 is already in use by a different website.

Opening reports with Report Builder 3 (15.0.1473.0) isn't working from the portal. Report Builder is starting but throws an error saying that "the path is too long". When you navigate from within the then opened Report Builder through the reportserver, everything works and you can open reports. 

When i'm trying to preview reports i keep on getting an 404 error. That's because Report Builder is establishing a connection via port 443 to the reportserver, although port 4000 is configured. I'm 100 % sure as i can see the POST in my IIS Log from my website on port 443 and Sysinternals Procexp64 confirms a connection to 443 from Report Builder.

After some testing I furthermore confirm that everything is working fine when i'm shutting down the other website, remove the binding from 443 and configure PBIRS on port 443.

Any chances to get a fix for this issue? 


Render format type for XLSX instead of XLS?

$
0
0

I've got a PowerShell script that works for pulling a report in XLS and CSV format, but I'm trying to pull the report in XLSX format.  If I use the reporting web interface and I select Excel, I get XLSX. If I attempt to use a URL and do Format=excel, I get XLS. I've tried Format=XLSX, xslx, excel2007, excel07 but all generate an error.

"You have attempted to use a rendering extension that is either not registered for this report server or it is not supported in this edition of Reporting Services. (rsRenderingExtensionNotFound)"

So what is the proper Format= to get XLSS?

invoke-webrequest -UseDefaultCredentials "http://$ssrsserver/ReportServer?%2f_blah_blah&rs:Comm and=Render&rc:toolbar=false&rs:Format=excel"-outfile $OutputLocation    > Produces XLS
invoke-webrequest -UseDefaultCredentials "http://$ssrsserver/ReportServer?%2f_blah_blah&rs:Comm and=Render&rc:toolbar=false&rs:Format=CSV" -outfile $OutputLocation      > Produces CSV

Cannot read the next data row for the data set

$
0
0

Hi,

My report runs fine when I view in VS, data shows fine when I run the query in the data window, but when I publish it to the server, I get the above error. I am running SQL server 2005 RTM and I have re-deployed the entire solution.

Any ideas?


ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified in SSRS

$
0
0

Hi,

Am using SQL Server 2008 R2 and my Database is MYSQL 5.5.33,I Created on System DSN for connecting Mysql Database,

See here in my local machine works everything fine on to view the reports,

When i deployed reports from DEV to Production Environment,when i check the reports will get following error,

I created System DSN in Production Server also,Any one explain me where the problem is going on?

Line break when a run a report

$
0
0

Hi all,

I have a SSRS report and when a run the report show me the results of products with break line between data:

With this report I have a subreport:

Someone already problem like this? Maybe the subreport can be getting the problem?

How to get Total of a column which is having an expression RunningValue() in SSRS

$
0
0

Hi,

I have a report in SSRS 2008. It is having 4 columns (Purchase Order ID,Unit Price,Line Total,Running Value). This report is having group by Purchase Order ID. For Running Value Column I have written an expression IIf( RunningValue (Fields!PurchaseOrderID.Value, CountDistinct, Nothing) MOD 2, 1, 0) to get alternet value 1 and 0. Now I want sum for Running Value column. As we can't use nested aggregate function so I am not able to use expression Sum (IIf( RunningValue (Fields!PurchaseOrderID.Value, CountDistinct, Nothing) MOD 2, 1, 0)). Even I tried to give a name TXT_RUNNING_VALUE for text box which is having expression IIf( RunningValue (Fields!PurchaseOrderID.Value, CountDistinct, Nothing) MOD 2, 1, 0) and tried to use Sum(ReportItems!TXT_RUNNING_VALUE.value). It was throwing error that aggregate cant be use for Report Items.

 

Below is the Report Data:

Purchase Order ID       Unit Price         Line Total        Running Value

1                                 50.26                 201.04              0

3                                 16.086               8847.3              1

4                                   57.0255            171.0765           0

5                                 37.086                20397.3            1

6                                 26.5965              14628.075         0

7                                  106.701              58685.55          1

8                                 231.126             693.378            0

9                                 231.3885           694.1655          1

10                               115.689              1796.0355       0

-------------------------------------------------------------------------------------------

Sum                                                                              4 

Please tell me how can I get sum of Running Value column?


Thanks Shiven:)

SSRS : Column Value Search box in the Parameter

$
0
0

Hi Guys - I have a report with column headers and 4 parameters. When i select the appropriate parameters the report displays the values and its working fine. 
Now for one the column lets say Column10, I want to make this column10 like a search box so the user can search for a specific value or can leave it blank. 

And I want to add this column10 search box at the next to parameters, so that its easy for the user can search the value in that column10 or can leave it blank. Is it possible ?

Thanks

SQL Server (Express) 2019 - Error with Reporting service

$
0
0

Hi !

Can anyone help on this ? I try change it to "Local System" , still having the same error.... 

Below is the error when working on SQL Reporting service configuration .. 

Microsoft.ReportingServices.WmiProvider.WMIProviderException: An error occurred when attempting to connect to the report server remote procedure call (RPC) end point. Verify that the Report Server Windows service is running, and then retry the operation.
 ---> System.Runtime.InteropServices.COMException: The RPC server is not listening. (Exception from HRESULT: 0x800706B3)
   --- End of inner exception stack trace ---
   at Microsoft.ReportingServices.WmiProvider.RSWmiAdmin.ThrowOnError(ManagementBaseObject mo)
   at Microsoft.ReportingServices.WmiProvider.RSWmiAdmin.GenerateDatabaseScript(String databaseName, Int32 lcid, Boolean isSharePointIntegrated, String& script)
   at ReportServicesConfigUI.WMIProvider.RSReportServerAdmin.GenerateDatabaseScript(String databaseName, Int32 lcid, Boolean isSharePointIntegrated, String& script)


SSL on multiple internal URLs for Reporting Service

$
0
0

Hello Everyone,

We have SQL Server 2016 Report Server which is used internally. Now we want to apply https on that.

we want to protect all access URLs using https.

Multiple URLs to access are like:

1. machinename\reports

2. fqdn\reports

3. CName\reports

How to apply https using single certificate on all above three URLs?

Using certificate, I was able to apply https on fqdn\reports but i want to apply that on all three URLs.

Thank you!

sizing an ssrs server

$
0
0

hello,

could you please advise on how to size an ssrs server based on the number of generated reports/users connexions...

Can't find any microsoft official link about this

Thanks


Using the LIKE Operator

$
0
0

When using the LIKE operator, trying to find the SSRS equivalent of the ^.  When I try to use the ^ in SSRS, it ignores it.  For example, I'm trying to search a field for COVID, but not followed by PPE. "*COVID[^P]*" is matching COVIDP, again ignoring the ^.

[^P] is working correctly in Transact SQL.

Thanks

How to "build" an .rptproj and output to a folder (not to a server)

$
0
0

We have a product that includes SSRS reports as part of its standard deployment. The installation program knows how to take a set of .rdl files and deploy them to the customer's SQL Server, but we're having problems building the installer package automatically.

There doesn't seem to be any way in VSTS's Build process to "build" the report files in the build agent's work folder. We cannot simply copy the .rdl files out of source control because we need to target older versions of SQL Server. We need to run the build process to strip out things like the <ReportParametersLayout> and <df:*> tags, otherwise, SSRS complains that the report definition is invalid when we deploy.

Does MSBuild support building these type of projects, and/or is there any existing VSTS custom build step to do it? Failing that is there a way to configure the deployment step to "deploy" to a file folder instead of trying to publish directly to an SSRS server? 

Getting rsErrorReadingDataSetField error on deploy, but not build for dataset that does not exist in report

$
0
0

I'm running VS 2019 community on Windows 10, connecting to SSRS 2019 on a separate local server.  The reports pull data from stored procedures on SQL Server 2019, and all the stored procedures are executing fine and return all columns expected by the reports.  Both reports still build and run fine when previewing in VS and were deploying fine for days and only started messing up today when deploying.

Both reports throw the warning in bold below when I try to deploy.  The master report (Properties All) has never contained the dataset "Property" referenced in the error and I have searched in the source code for both the dataset and the 2 fields (latitude and longitude) that it complains about, and neither exists anywhere.  There are 4 warnings - 2 each for latitude and longitude fields - and the single error about the report definition being invalid for each report.

The master report used to contain an Action that executed a second report (Property), and that report does contain the dataset and fields that the master report is complaining about.  I removed that Action from the master just in case the second report was being deployed with it, and was the one actually causing the error, but that did not fix it.

I have done a clean on the code, deleted both reports from the server, closed and reopened the reports in VS, and even restarted VS to try and clear it up, all to no avail.  After I restarted VS, I started getting the single error "The definition of the report '\Properties All.rdl' is invalid" and "The definition of the report '\Property.rdl' is invalid" when I tried to deploy either reports without mention of the dataset or field.

All references I can find to the warnings refer to columns not being returned from SQL, but I have not changed the stored procedures and have executed them to confirm that the columns are actually being returned, and they are.  I have also looked and they are in the dataset of the child report as expected.  I also did a refresh of the fields and that had no effect.

Thanks in advance for any suggestions you may be able to offer.

Warning[rsErrorReadingDataSetField] The dataset 'Property' contains a definition for the Field 'latitude'. The data extension returned an error during reading the field. There is no data for the field at position 11.Z:\Projects\new_simon\Properties\Properties All.rdl

Report Builder Error An item with the same key has already been added.

$
0
0

Query runs in query designer. Click Ok the error below displays

---------------------------
Microsoft SQL Server Report Builder
---------------------------
Could not create a list of fields for the query. Verify that you can connect to the data source and that your query syntax is correct.

An item with the same key has already been added.
To continue without updating the fields list, click OK.
---------------------------
OK   Cancel   
---------------------------

What is the key referred to in the error. Is it a key in the sql script or a key in the report?

SELECT DISTINCT
 TH.ID_NUM
,SCH.CRS_DIV CourseDivision
,SCH.STUD_DIV StudentDivision
,SCH.DROP_FLAG
,SCH.DROP_DTE
,TH.CHG_TRM_TRAN_HIST StudentTerm
,TH.CHG_YR_TRAN_HIST StudentYear
,NM.LAST_NAME
,NM.FIRST_NAME
,TH.SOURCE_CDE
,TH.GROUP_NUM
,TH.TRANS_DTE
,SCH.BEGIN_DTE
,SCH.END_DTE
,TH.TRANS_AMT
,TH.TRANS_DESC
,TH.AR_CDE
,TH.ACCT_CDE
,TH.SUBSID_CDE
,TH.OFFSET_FLAG

,DH.CUR_DEGREE
,DH.ENTRY_DTE
,DH.WITHDRAWAL_DTE
,DH.EXIT_REASON
,DH.EXIT_DTE
,DH.REENTRY_DTE
,DH.CUR_DEGREE
FROM TmsePrd.dbo.TRANS_HIST as TH --
LEFT 
JOIN tmseprd.dbo.student_crs_hist as sch ON --
TH.ID_NUM = sch.ID_NUM AND --
TH.CHG_YR_TRAN_HIST = sch.yr_cde AND --
TH.CHG_TRM_TRAN_HIST = sch.trm_cde --
INNER JOIN NAME_MASTER as NM ON --
TH.id_num = NM.id_num --
inner join tmseprd.dbo.student_master as sm on --
TH.id_num = sm.id_num --
INNER JOIN TmsePrd.DBO.DEGREE_HISTORY AS DH ON
TH.ID_NUM = DH.ID_NUM

WHERE  DH.CUR_DEGREE = 'Y'
AND 
TH.CHG_YR_TRAN_HIST = '2020'
--TH.CHG_YR_TRAN_HIST in (@ChgYear)
AND TH.CHG_TRM_TRAN_HIST = '01'
--AND TH.CHG_TRM_TRAN_HIST in (@ChgTerm)
--AND TH.TRANS_DESC LIKE '%tuition%' --
--and sm.CUR_STUD_DIV = 'DC'
--AND (sch.CRS_DIV = 'UG'
--OR sch.CRS_DIV = 'GR')
AND SOURCE_CDE = 'CG'
--AND SOURCE_CDE in (@SourceCode)


ORDER BY TH.TRANS_DTE DESC


Hide Bookmarked item in SSRS 2008

$
0
0
Hi All,

I have 2 tables: table 1 and table 2 (bookmarked item) in the same report and a bookmark textbox. On clicking the bookmark textbox, my report jumps to table 2. Is there a way i can hide table 2 and only on the click of the bookmark it gets displayed?

Please let me know in case anyone has a solution for this.
Thanks.

Regards,
Roopali.
Viewing all 10045 articles
Browse latest View live


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