Viewing 13 posts - 256 through 268 (of 268 total)
YOu can't do the sum in a pivot by itself. However, you could do pre-aggregation in a CTE or subquery then pivot the results. That might just do it...
April 8, 2014 at 3:25 pm
You're getting the opposite results because the dialog sets the conditions under which the element is hidden. So, you're saying, "If I have some rows, hide the element" ...
April 8, 2014 at 3:23 pm
Just wondering if anyone has come up with a solution to this problem....
March 21, 2014 at 6:23 am
Bill Talada (1/27/2014)
Thanks for doing so much work figuring out the order of constraints. I looked last week and could not find Microsoft documentation on it.
Unfortunately, since...
January 27, 2014 at 7:07 am
John Mitchell-245523 (12/30/2013)
Indicates whether the package is run in interactive mode. If a package is running in SSIS Designer, this property is set to True. If...
December 30, 2013 at 7:55 am
John Mitchell-245523 (12/30/2013)
December 30, 2013 at 7:47 am
I think I figured it out:
for boolean variables, a numeric value of 0 is equivalent to False. Any other numeric value is equivalent to True. You can also...
December 19, 2013 at 1:53 pm
Koen Verbeeck (12/9/2013)
Which configuration did you use in step 10? Remember that the password is not saved...
December 9, 2013 at 7:50 am
Love those windowing functions! Here's a silly example:
select one,two, ROW_NUMBER() over(order by two desc) as rn
from (values (1,2),(1,4),(1,6)) vals(one,two)
December 5, 2013 at 7:08 am
I noticed the examples in the book for creating a Numbers table. Of course they all work fine! I would like to contribute a variant that I happen...
December 4, 2013 at 7:44 am
pietlinden (12/2/2013)
Right-click a column, show properties.
Click on the Visibility tab.
When the report is initially run HIDE
Display can be toggled by this report item (choose a...
December 3, 2013 at 7:17 am
quote]Koen Verbeeck (11/28/2013)
DECLARE @Input INT = ?;
SELECT @Input;
Also make sure the property ByPassPrepare is set to True.[/quote]
Now, that makes sense. ByPassPrepare did the trick...
November 28, 2013 at 2:44 pm
More info on this:
From http://technet.microsoft.com/en-us/library/cc280502.aspx
quote:
--------------------------------------------------------------------------------
SELECT, INSERT, UPDATE, and DELETE commands frequently include WHERE clauses to specify filters that define the conditions each row in the source tables must meet to...
November 28, 2013 at 2:29 pm
Viewing 13 posts - 256 through 268 (of 268 total)