Viewing 15 posts - 76 through 90 (of 119 total)
This works but I faced another issue:
No global profile is configured. Specify a profile name in the @profile_name parameter.
June 23, 2016 at 2:37 am
Which version of SSIS are you using?
The information posted at this URL might help you to resolve the issue:
June 23, 2016 at 2:29 am
Yes.
1. Use row_number() or
2. compare the senderid, requestseq of 2nd row with first row and if equals hide those columns in 2nd row etc.
June 23, 2016 at 1:33 am
For remaining duplicate rows, can you try setting visibility = false at column level ?
June 23, 2016 at 12:33 am
I clearly mentioned that its additional information.
June 22, 2016 at 7:24 am
I knew that, I've provided additional useful information.
June 22, 2016 at 7:23 am
Thanks Luis, that adds more value.
June 22, 2016 at 7:09 am
You need to query the ReportServer Catalog table to get the reports running statistics.
The following links would help you:
http://sqlsrv4living.blogspot.in/2014/01/ssrs-get-list-of-all-reports-using.html
https://thesqlpro.com/2012/07/09/ssrs-report-usage-statistics/
June 22, 2016 at 7:05 am
Hi Steve,
Thanks for providing the sample data.
Here is the solution which would work for you.
CREATE PROC uspupdatetest
(@id int =null
, @param1 CHAR(5) = null
, @param2 CHAR(5) =null
)
as
begin
set nocount on;
set xact_abort on;
update...
June 22, 2016 at 6:54 am
Option1 is will impact the performance severely as database will be hit for n times for n parameters.
June 22, 2016 at 6:32 am
Hi,
I think its more to handle in formatting the data i.e. pro-grammatically we need to hide the columns based on sender, requestsequence values using expressions.
If you are using reporting tools...
June 22, 2016 at 6:25 am
Can you provide brief table structures with sample data to better help you?
I think its possible for you even though the UI interface not yet ready.
June 22, 2016 at 6:19 am
have you tried this?
SELECT RequestID, ReqSeq, ROW_NUMBER() OVER(PARTITION BY RequestID, ReqSeq ORDER BY ReqSeq )
FROM Layout;
June 22, 2016 at 6:13 am
Hi,
We must create a login mapping between the linked servers. When SQL Server connects to a linked server in order to execute a distributed query or a stored procedure, it...
June 22, 2016 at 6:07 am
Can you explain little more, in spreadsheet for 3 request IDs 1,2,3 the customer ref number is different.
What's the significance of this number and how you want the customer ref...
June 22, 2016 at 5:24 am
Viewing 15 posts - 76 through 90 (of 119 total)