Viewing 15 posts - 121 through 135 (of 258 total)
Thanks, that did the trick
November 1, 2013 at 9:19 am
Msg 195, Level 15, State 10, Line 4
'GetActiveEventBackOrderUnitsCount' is not a recognized built-in function name.
November 1, 2013 at 9:00 am
I removed the alias from my original code and everything worked fine
October 29, 2013 at 7:55 am
what I want to do is based on the value from ProjectedTimeTill100PercentSellThrough, in each record I want to update the bit fields.
For example if I have the following row:
ProjectedTimeTill100PercentSellThrough ...
October 28, 2013 at 1:31 pm
That worked, thanks
October 21, 2013 at 1:40 pm
ForcastUnitsTimesOMSCost is a float datatype
October 21, 2013 at 12:37 pm
My bad I used the wrong query:
SELECT ForcastUnitsTimesOMSCost, case when IsNUll(ForcastUnitsTimesOMSCost,0.00) <> 0 then SUM(CTCBOHAndWCSBOHTimesOMSCost/ForcastUnitsTimesOMSCost) else 0 end as Calculation
FROM MyTable
Where (CONVERT(date, GETDATE()) BETWEEN EventStartDate AND EventEndDate)
Group By ForcastUnitsTimesOMSCost...
October 21, 2013 at 12:36 pm
I'm not trying to return the name of a day. In my query I'm trying to return the boolean value of columns named "Monday", "Tuesday"....etc. My table is
August 20, 2013 at 6:43 am
I figured it out. After creating the named calculation in the dsv, I right clicked the dsv and selected "New Measure From Column" and it was added as a measure...
August 8, 2013 at 8:45 am
The answer is no, I didnt need a stored proc...but, I did need to add the same ssis variable in as a paramter for the second placeholder (?)
July 31, 2013 at 7:42 am
I changed my code to the following to mak it easier to debug...Im posting my error afterwards. The SSIS package is deploy to an integration server:
Declare @TSQLCmd varchar(3000)
DECLARE @startdt DATETIME,...
July 16, 2013 at 2:58 pm
I'm getting an error saying DTS isnt a command. I can find all kinds of examples on how to execute a package saved as a file but I cant seem...
July 16, 2013 at 2:45 pm
It returns an int value 1 or 0
May 21, 2013 at 11:39 am
Viewing 15 posts - 121 through 135 (of 258 total)