Viewing 15 posts - 1 through 15 (of 20 total)
Thanks you both for your help. I was able to resolve the SSIS issue.
Regards,
leonie6214
September 23, 2015 at 5:51 pm
Sean,
I removed the partition and it worked - see revised table below:
IF OBJECT_ID ('tempdb..#Tmp1') IS NOT NULL DROP TABLE #Tmp1 --all transactions + SN
CREATE TABLE #Tmp1(
[SN] [int]...
June 11, 2013 at 1:31 pm
Sean,
I removed the partition and it worked. I will definitely take a look at this article.
Thanks so much for your help.
June 11, 2013 at 1:18 pm
Hi Jeff ,
I was able to resolve my sorting issue with your code example.
Thanks so much for your help.
Leonie6214
April 18, 2013 at 12:18 pm
I am sorry but I was not aware of the rules. However, I did include the table structure w/insert statements; I also attached an excel spreadsheet with the desired output...
April 16, 2013 at 9:14 pm
See query with groupings below. I have also attached an excel spreadsheet with the sample output.
SELECT
Name as StreetName,
MeterId,
CollectionDate,
CollectionAmount,
SpaceUniqueID as MeterNumber,
Blockface
FROM dbo.CollectionSummaries C WITH(NOLOCK)
JOIN Meters M WITH(NOLOCK) ON M.MeterId =...
April 16, 2013 at 6:34 pm
Thanks for your help and suggessions.
Your code is very close to resolving my sorting issue. However, I am still having problems getting it to work so I am...
April 16, 2013 at 3:31 pm
I have already tried the order by clause in the query. It sorts only 1 column in ASC order.
Thank you for your suggession.
January 25, 2013 at 8:14 am
Thanks for providing this solution. I will respond and let you know if it works out.
Regards,
leonie6214
January 6, 2013 at 5:34 pm
The report is showing blank lines that looks like rows. I a doing a count on one of the fields (filepath) and it is also counting and displaying the...
May 5, 2009 at 3:15 pm
Thank you so much for the information. I will read through the link.
May 5, 2009 at 3:09 pm
I have never tried matrix report. I am not sure if it would be appropriate for this report, but I will give it a shot.
thx
February 26, 2009 at 9:14 pm
I tried grouping on division name and I am still getting the value for the entire field (Gas_Usage) instead of the value based on the filter criteria: DivisionName = "Gas".
February 26, 2009 at 3:04 pm
Thanks Niraj,
The problem is that all the values in these fields are summing up. I need to be able to filter the fields by DivisionName.
How would I filter...
February 26, 2009 at 7:43 am
Christophe,
I was able to resolve this issue about a week ago using the an expression similar to yours.
Thanks for responding.
leonie6214
January 21, 2009 at 9:54 am
Viewing 15 posts - 1 through 15 (of 20 total)