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

Logon failed for the unattended execution account. (rsServerConfigurationError)

$
0
0

I am getting this error

  • The Report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)
    • Log on failed. Ensure the user name and password are correct. (rsLogonFailed)
      • For more information about this error navigate to the report server on the local server machine, or enable remote errors

I have set a domain account for the unattended execution and the password is correct and that password is NOT expired. I am able to login and launch process using the same login account and password. So password is correct and is not expired.

The user id has owner permission on ReportServer and ReportServerTempDB databases.


MSDNStudent Knows not much!


Sorting of data in matrix in SSRS 2008

$
0
0

Hi,

I am using Microsoft SQL server 2008(SSRS) to develop reports. I have data in the database as shown below.

Product_ID        Region_ID     Qty_Sold
1                         101                20
1                         102                10
1                         103                5
1                         104                15
2                         101                35
2                         102                25
2                         103                3
2                         104                21
3                         101                51
3                         102                63
3                         103                32
3                         104                28
4                         101                12
4                         102                17
4                         103                19
4                         104                23

In SSRS 2008 I am creating a matrix and in Row Group I am using Product_ID and in Column Group I am using Region_ID.
Now I need to sort the Qty_Sold, Product_ID group wise but I am not getting the proper sort.
I tried data sort in the matrix, row group sort and column group sort but it is not working.
It is working properly when I am using table.
Please help with this.

Thanks

Report is stuck in report builder and in browser

$
0
0

Hi Team,

One user is running a report successfully on a local report server when I force the input parameter(userid) of specific report  in a report builder. Then the same report without passing parameter is stuck in report builder and in a browser.

User has all permissions and executing all other reports.

Please help me how to troubleshoot when a report is stuck and keep on running.

Thanks,

Sreenivasa


Sreenivasa

Passing parameters from a Matrix to another report

$
0
0

I have a matrix report in SSRS with 3 group A,B,C

I would like to pass to another report when a field is clicked on in the Matrix.
By this I mean if I click on a field in the "A" group, I need to pass the "A" parameter and all the associated "B" and "C" parameters

if I click on a field in the "B" group, I need to pass the "A" parameter, the "B" parameter and all the associated "C" parameters

if I click on a field in the "C" group , I need to pass the "A" parameter, the "B" parameter and the "C" parameter

Because the "C" parameter is generally a number of rows, how can I pass just the rows for the associated "A" and "B".
I have tried and had some success with 

=Split(Join(LookupSet(Fields!B.Value,Fields!B.Value,Fields!C.Value,"DataSet"),","),",")

But this gives me ALL the records for "C", not just the ones associated with "B" and "A".

Thanks in advance for any advice.

Regards

Quentin

IIF statement - Lookup Error

$
0
0

Could someone correct this formula for me so that it works correctly? 

The true part of the IIF statement works but the false part comes back with #ERROR.

=IIF((lookup(left (right (Fields!OriginalAccountNumber.Value, len (Fields!OriginalAccountNumber.Value)-1), len (Fields!OriginalAccountNumber.Value)-1),left (right (Fields!AccountNumber.Value, len (Fields!AccountNumber.Value)-1), len (Fields!AccountNumber.Value)-3),Fields!OfferDate.Value,"LoansList"))="", Fields!ApplicationDate.Value, (lookup(left (right (Fields!OriginalAccountNumber.Value, len (Fields!OriginalAccountNumber.Value)-1), len (Fields!OriginalAccountNumber.Value)-1),left (right (Fields!AccountNumber.Value, len (Fields!AccountNumber.Value)-1), len (Fields!AccountNumber.Value)-3),Fields!OfferDate.Value, "LoansList")))

Thanks in advance

Installing SSRS 2016 on a separate server than the SQL database

$
0
0

Hi All,


I've been reading through the documentation online, but cannot locate anything related to this. Is it okay to install SSRS on a server that isn't running SQL (database agent, engine, etc.)? We currently have SSRS and SQL database running on the same server. However, the vendor wants us to move SSRS to a completely separate server. I'm guessing the reporting database would still stay on the current SQL box, but the SSRS application along with RDLs, etc. would be installed on an entirely separate server. Is this possible? And if so, can anyone point to any documentation or advice on this? I've been looking but haven't found much yet. I appreciate any help!

query

$
0
0

I'm in need of help,

select * from

(SELECT

ID,CURRENCY,DATE,PROCESS,ACCOUNT,ACTION,DEBT,RECEIV,BALANC=SUM(DEBT-RECEIV)OVER(ORDER BY DATE ASC,ID ASC)

FROM Table_KS

ONION

SELECT '','','2018-07-01','','','',

CASE WHEN SUM(DEBT)-SUM(RECEIV)>0 THEN SUM(DEBT)-SUM(RECEIV) ELSE 0 END DEBT,

CASE WHEN SUM(RECEIV)-SUM(DEBT)>0 THEN SUM(RECEIV)-

SUM(DEBT) ELSE 0 END RECEIV, BALANC=SUM(DEBT-RECEIV)

FROM Table_KS

WHERE DATE< '2018-07-01') Table_KS

WHERE DATE BETWEEN '2018-07-01' AND '2018-08-01' ORDER BY DATE ASC


 

THIS CODE SHOULD ADD THESE

WHERE CURRENCY = 'USD' AND ACCOUNT='X BANK'

AND INQUIRY BY THIS RUN. 

thanks,

Parameters issue in ssrs report

$
0
0

Hi Team,

Please help on bellow issue.

1. I have one report with two parameters like ToDate and FromDate.
2. Source as sql stored procdure 
3. Stored procdure having default parameters like bellow 

create  procedure usp_SalesReport
@FromDate as date = NULL,@ToDate as date = NULL
as
if @FromDate is null or @ToDate is null
begin 
set @FromDate = CONVERT(date, GETDATE())
set @ToDate= CONVERT(date, GETDATE()+1)
end ;
4. Am added two more parameters like ClientName, VendorName in report level 
5. Am selected mullti value option in parameter properties, also am provides aviable values as get value from query
6. In data-set properties --> filters -->  have provided ClientName
   Expression as ClientName 
   Operator as like
   Value as [@ClientName]
7. While running the report am getting bellow error 


Thanks Bala Narasimha


ssrs 2010 document map

$
0
0
I am trying to understand how document map labels are working in an existing ssrs 2010 report since I need to make changes to the report.
There are 3 document maps that are setup in the report I am looking at, but there are 6 documents that show up when the report is excecuting.
Thus I am not certain how all this is 'wired' together to make these links in the report work.
Thus can you tell me how document link maps are setup and/or point me to a url that will explain how document maps work in an ssrs 2010 report?

error saying rd:reportunittype isnt closed

$
0
0

Hi. Long story but I generally cant trap errors in my reports until I deploy them, ie previewing is often not an option.  Part of that long story has to do with an ongoing issue some users are having with permissions on their own mapped folders from tfs.

We are running vs2010.  SQL Server 2016 enterprise.  I tried re uploading a clone of another report today after removing an invalid reference left over from the original and after trying a build which failed and caused me to restart vs.  And got an error in the upload complaining about the tag called rd:reportunittype.  Something about it not being closed, suggesting file corruption.

That tag is way at the bottom of the xml code and it appears healthy.  I compared its look to the original and am also showing it below.  Any thoughts?  The code below is the last 4 lines of the code.

</ReportParameters><rd:ReportUnitType>Inch</rd:ReportUnitType><rd:ReportID>same as original guid</rd:ReportID</Report>

Parameter filtering to get a sum result.

$
0
0

Hi,

I am trying to make a char.

I have a query that gives me DatabaseName, Date and Database Size.

I would like to make a report that when I choose the database name, it will give me the database size per day (it can be one database or multiple databases).

I am having an issue with the sum result.

What kind of expression can I build that basically provide me the sum depending on the database/s chosen? 

thanks

Add a blank page after groups

$
0
0

Need help to add an extra blank page in a report. I need a break page after each department changes but i tried everything such rectangle, sub report tablix, with breaks after and before and nothing works

Please help, 

Restrict start date in datepicker ssrs

$
0
0

Hi,

I have one requirement like have two parameters FromDate, ToDate. I want to restrict to FromDate before 1st Aug 2018, means i don't want to see before 1st Aug date in date picker  in ssrs reports.


Thanks Bala Narasimha

Using expressions in SSRS

$
0
0

Hi,

We have created one tabular report and have mapped all the fields.

Now,there is one columns in our report in which we have mapped the required column ,now we also want to pass an expression with it how can we do that?

Please help!

SSRS Error after upgrade to SQL 2014 SP2 CU12: The EXECUTE permission was denied on the object 'sp_verify_job_identifiers'

$
0
0

We have upgraded to  SQL 2014 SP CU12 (10.0.5589) and after this, our subscriptions are not running. We got this error:

Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerStorageException: An error occurred within the report server database.  This may be due to a connection failure, timeout or low disk condition within the database. ---> System.Data.SqlClient.SqlException: The EXECUTE permission was denied on the object 'sp_verify_job_identifiers', database 'msdb', schema 'dbo'.

I already verified role RSExecRole at msdb and it has granted the Execute permission on 'sp_verify_job_identifiers'. This role is also assigned to the service account that is running Reporting Services.

What can the problem be? It was running just fine prior to the upgrade.

By the way, we used to be at SQL 2014 SP2 build 10.0.5203

Please help us


Paulino



Reports on Web Portal navigate back to home page.

$
0
0

Hi,

We recently upgraded our server's SQL Server to SQL Server 2016 from SQL Server 2012. As part of the installation we included SSRS. As we are testing, we are finding that the reports that were originally with our 2012 are available in the SSRS 2016 Web Portal. However, when clicking on them they navigate back to the Web Portal's home page and create a second header/ribbon on the top of the screen. Why is this?

The server is running Windows Server 2012 R2. I have made sure that the Web Service and Web Portal Virtual Directories and URLs match. I also made sure they are both using the same port as the 2012 SSRS instance. I also created a firewall rule to allow for these ports for outbound services. What else could it be?

*The Web Portal will need to be accessed remotely as well, and that is possible right now.

To add more clues to solving the mystery, I am finding the following errors in the log file:

"Failed to register url=http://+:80/ReportServer/ for endpoint 2, error=b7."

"

ERROR: Error creating HTTP endpoint. System.Runtime.InteropServices.COMException (0x800700B7): Cannot create a file when that file already exists. (Exception from HRESULT: 0x800700B7)
   at Microsoft.ReportingServices.HostingInterfaces.IRsUnmanagedCallback.CreateHttpEndpoint(RsAppDomainType application, String[] urlPrefixes, Int32 cPrefixes, String[] hosts, Int32 cHosts, Boolean wildCardPresent, String virtualDirectory, String filePath, Int32 authType, Int32 logonMethod, String authDomain, String authRealm, Boolean authPersist, Int32 extendedProtectionLevel, Int32 extendedProtectionScenario, Boolean enabled)
   at Microsoft.ReportingServices.Library.ServiceAppDomainController.SetWebConfiguration(RunningApplication rsApplication, Boolean enabled, String folder)

"

Thanks,

Justin

SQL Server 2012 Service Pack Update

$
0
0

Hi,

I am updating one of our server's SQL Server software from 2012 SP1 to 2012 SP3. I downloaded ENU\x64\SQLEXPRADV_x64_ENU.exe and was running through the setup optionNew SQL Server stand-alone installation or add features to an existing installation. I selected all Database Engine features and the Reporting Services features and continued. Everything was successful until reaching the Database Engine Configuration page when the Data Directories tab showed failures.

The data directories failed because there are system database files (.mdf, .ldf) already present on the default directories. However, if I was just applying a service pack - shouldn't this be okay? Here is the error message (there are 8 in total):

"

TITLE: Message Details
------------------------------

The system database file <master, msdb, systemtempdb>.<.mdf, .ldf> already exists in C:\Program Files (x86)\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA.

------------------------------
BUTTONS:

OK
------------------------------

"

Is there any way around this? I want to continue using the already in-place files in the same directories [and do not want to delete or replace those files] because they hold data from the current system databases.

Thanks,

Justin


No able to enable the email option

$
0
0

Hi,

I have a report server and I have a few reports deployed to it.

I am not able to enable the email service, and I am not sure why.

I have configured in the report server the smtp configuration, and also I have check the conf file and the details are there.

I am not sure what I am missing. or what else I need to do.

Tablix not showing all rows returned

$
0
0

I have created a stored procedure that takes 8 inputs.  The stored procedure itself works flawlessly when run in QA under SMSS.  I have created a report in SSRS that is supposed to show the output from the stored procedure.

I have ( temporarily ) included all the input parameters as text boxes in the report header; this to ensure that selections made on the report inputs are passing the correct input data to the stored procedure.  This temporary measure has shown me that indeed all input parameters are correctly formatted and should be passing properly to the stored procedure.

Finally, when I run the query from the dataset (by right clicking the dataset in the Report Data toolbar) the query returns the same number of rows as QA does in SMSS when the query is fed the same input parameters - which is exactly what I would expect.

HOWEVER, when the report is run, the tablix only populates with 6 rows of data instead of the expect 266 rows of data.  I should mention this is a flat table - there is no grouping, therefore there is nothing special about the tablix headers that should be coming into play here.  It is just a simple 12 column, by, in this case 266 row grid that should display.

I'm out of troubleshooting ideas.  The parameters are being passed in properly.  When the query is run from the dataset it produces 266 rows as expected from the same set of inputs passed through in QA/SMSS.  So why doesn't the tablix object pick up and display all 266 rows, when the query itself is producing that answer set?  Surely 266 rows is not too much data for the tablix object to handle, right?

 

Thanks in advance for any help anyone can offer here

 

Using Custom Data Processing Extension in Report Builder 3.0

$
0
0

I implemented Data Processing Extension for the SSRS and it is working with Report Designer. Ideally I need this to work also with Report Builder 3.0.  Is it possible to do that or the Report Builder is restricted to work only with the standard extensions?

I created shared data source that uses my extension but the when I create a Data Set using my extension it gives an error message:

The selected data extension MyExtension is not installed or cannot be loaded. Verify that the selected data extension is installed on the client for local reports and on the report server for published reports.

 

I needed to modify RSReportDesigner.config and put my DLL into PrivateAssemblies for the Report Designer to work. Is there some similar configuration for the Report Builder needed?

 

 

Viewing all 10045 articles
Browse latest View live


Latest Images

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