Viewing 10 posts - 586 through 595 (of 595 total)
Brandie Tarvin (6/10/2011)
yayomayn (6/10/2011)
In fact I don't know why you...
June 10, 2011 at 7:07 am
Yes in your execute SQL task you must map the result of your SQL variable to a variable in the package.
In fact I don't know why you would need the...
June 10, 2011 at 6:54 am
It sounds as if you have defined your variable at the DFT scope rather than the package. Not all "Global" variables are at the package scope either.
Explain more what...
June 10, 2011 at 5:40 am
I think if you tried that SSAS would still know that it is a calculated measure being used in the scope.
I had a quick google search and found this from...
June 9, 2011 at 8:08 am
By default, you can't use drillthrough with calculated measures. There are ways around it though, as is discussed here:
http://sqlblog.com/blogs/mosha/archive/2008/09/01/drillthrough-on-calculated-measures.aspx
Drillthrough's are expanded upon in the ASSP project on codeplex:
http://asstoredprocedures.codeplex.com/wikipage?title=Drillthrough&ProjectName=asstoredprocedures
Hope this helps...
June 9, 2011 at 5:27 am
I can't say I've ever seen this done. I'm skeptical that it is even possible but perhaps you are asking the wrong question. You should maybe ask yourself why you...
June 3, 2011 at 10:11 am
Hi,
Assuming the table is called "Vouchers" and assuming I understand what you're after then this should do the trick:
SELECT
Voucher_No
, Bill_No
, CASE
WHEN Amount < 0
THEN
...
June 2, 2011 at 6:34 am
The maximum length of a variable expression is 4000 as is discussed here: http://consultingblogs.emc.com/jamiethomson/archive/2009/05/27/4000-character-limit-in-ssis.aspx
Your expression is well under that amount unless your count variable is unbelievably massive in which case...
June 2, 2011 at 4:22 am
You need to create another variable to hold the SQL and then pass the value of the existing variable into that.
So create a new variable with a string datatype, in...
May 31, 2011 at 8:17 am
Good point.
This was a very quick and dirty solution 🙂
April 27, 2011 at 2:04 am
Viewing 10 posts - 586 through 595 (of 595 total)