Viewing 14 posts - 1 through 14 (of 14 total)
Koen Verbeeck (8/27/2014)
Sean Pearce (8/27/2014)
I see 4 correct answers.Indeed.
Quite the déjà vu, this question...
+1
August 27, 2014 at 2:05 am
I've found the wrox press books to be good in the past, they offer beginner, professional and 'recipe' variations
August 13, 2014 at 3:04 am
ipisors (8/11/2014)
Read Kimball's The Data Warehouse Tookit, 3rd edition. Google it; it's a free PDF download....
I agree about the quality of the book, but it certainly isn't free when...
August 12, 2014 at 2:57 am
Hi,
If you change + to & this should work. & is used in ssrs expressions for combining strings
March 20, 2014 at 2:13 am
Because, presumably the data entering the SSIS pipeline from the oledb source is non-unicode.
Excel requires the data be unicode prior to loading to the worksheet, hence the need for a...
February 26, 2014 at 4:36 am
Hi,
You're joining on ColA rather than N (the rownr).
Try;
;WITH T1 AS
(SELECT Row_Number() OVER(ORDER BY colA) N,
colA from dird)
SELECT a.colA, a.N, a.colA-b.colA FROM T1 a
left JOIN T1 AS b
ON a.N-1...
February 26, 2014 at 4:13 am
The other time consuming build activity in SSIS is when you're building a deployment utility on every build. Depending on how many packages in your solution this could potentially...
February 14, 2014 at 8:11 am
Hi,
Try the switching the order of substring/cast i.e.
SELECT CAST(SUBSTRING(ID,3,LEN(ID)) AS bigint) AS ID FROM table
December 5, 2013 at 2:53 am
Hi,
How about;
select
Service,
Date,
row_number() over(Partition by Service, cast(Date as date) order by Date)
from <YourTable>
December 2, 2013 at 4:55 am
Hi,
How about something like the following as the format expression;
=iif(Fields!YourField.Value=0,"N2,"N6")
November 29, 2013 at 3:14 am
Hi,
You could do this by having a textbox on the report containing your validation message, and toggling the visibility of the main report components (e.g. table, matrix etc) and the...
November 13, 2013 at 9:00 am
Hi,
This can be done by using an expression on the format property for each of the 3 fields required.
The expression for the format property would be something like;
=iif(Fields!State_Province.Value="Arizona","N1","N0")
This would fix...
November 13, 2013 at 7:14 am
Hi,
If you're currently using =join(Parameter,",") to split the parameter into the horizontal list, you could try changing this to =join(Parameter,vbcrlf) to specify the multivalue parameter list should be delimited by...
November 13, 2013 at 4:04 am
Hi,
Try changing your clause for the inner join to
ON loc.Parent_Location = loh.LocationID
November 12, 2013 at 4:06 am
Viewing 14 posts - 1 through 14 (of 14 total)