Viewing 15 posts - 1 through 15 (of 15 total)
Mark, just curios about this scenario. Did you find out the solution?
Thanks.
July 12, 2018 at 9:20 am
Even I was searching for something similar, and found the below. This works perfectly fine with "Pivoting dynamic number of rows TO columns"
Let me know if this works or you...
July 12, 2018 at 7:48 am
You can find hundreds of them. Just try to google.
The below link is one suchtutorial, from microsoft's
http://msdn.microsoft.com/en-us/library/ms167559.aspx/
Thanks,
Satish
May 26, 2014 at 1:11 am
same query - with detailed data and output.
Run the below and confirm if you are looking for the something similar or not.
DECLARE @Customer_Bill_Table TABLE
(
[Custmoer NO] VARCHAR(3)
,...
December 30, 2013 at 4:02 am
Hi Rahul,
Please use the below query to get the no.of unique products purchased by Customer
SELECT [Custmoer NO],COUNT(DISTINCT [product name]) AS NoOfProductsPerCustomer
FROM @Customer_Bill_Table
GROUP BY [Custmoer NO]
Let me know if this...
December 30, 2013 at 4:00 am
Try looking into the below:
http://www.ideaexcursion.com/2008/11/24/set-ftp-password-in-ssis/
Thanks,
Satish Chandra.
December 2, 2013 at 4:10 am
- Report Data pane is visible only when report(.RDL) file is opened in VS. and also, you should be on the 'Design' view of the Report.
- Once you are on...
July 19, 2013 at 4:04 am
Hi,
Try adding .txt and .csv in the foreach loop editor.
I am not sure whether both can be added at once, in that case you can actually take 2 foreach...
May 2, 2013 at 11:52 am
Hi rockstar283,
Can you make sure mapping is done correctly?
I am sure you might have done this, but still, wanted to recheck.
Thanks,
Satish Chandra
March 17, 2013 at 11:09 pm
Hi Nestor,
I am not sure of the actual requirement and costraints around your tables, but i think you can try .....
Take the differnece of Table rows with help of a...
March 14, 2013 at 2:01 am
Hi Gayatri,
I think, using of TimeOfDay() will populate the Reporting server's Data & Time, but it is not specific to region.
I am not sure whether this works this way.........
March 14, 2013 at 1:23 am
Thats a very intresting exercise.. Will try and let you know if found any lunck..
March 13, 2013 at 12:55 am
Viewing 15 posts - 1 through 15 (of 15 total)