Viewing 15 posts - 61 through 75 (of 94 total)
This code returns exactly the right number of rows and the numbers in the 'closing balance' column are right.
But there is only one calculated field 'closing balance' and when...
July 17, 2013 at 7:23 pm
Many thanks for the reply. I have slightly modified the code for the actual views. But it is still not group the data togther.
;WITH
cteGeneralLedger
(GNLID,GNLCLIID,GNLCOAID,GNLFSMID,GNLBalanceBase)
AS (
SELECT...
July 16, 2013 at 12:49 am
When I try execute the SP I get an error message.
Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >,...
January 20, 2013 at 8:53 pm
What I am trying to do is email from SSIS one dynamically changing text file and one excel file at the same time.
In my SSIS package I have declared four...
January 10, 2013 at 4:28 pm
Jason-299789 (1/10/2013)
Marbo (1/10/2013)
I don't fully understand what your point is but isn't it simple to use a second send email task with probably a second variable or expression.
Or create...
January 10, 2013 at 2:50 pm
Problem is solved 🙂 if anyone is intrested....
I found that I had to enable deployment from the package properties and build. Then use the deployment tool to deploy the...
October 27, 2011 at 6:00 pm
How do I check that?
The SQL source is sorted, one side from the multicast accepts the source as sorted but the other doesn't.
October 18, 2011 at 4:22 pm
It was pretty easy in the end, added last join. Thanks for trying all.
SELECT Sh.LocationID, sh.code,Sh.Description, Sh.StartTime, Sh.Duration, ...
September 28, 2011 at 10:36 pm
steveb. (9/20/2011)
use a lookup transfomation to check if the columns match and then use the match and no-match data flow connections to handle the matched and non-match data
Sweet...
September 21, 2011 at 7:33 pm
doesn't matter I worked it out, add the email task after the condition export so it only emails if the previous task runs.
August 22, 2011 at 10:34 pm
Thanks guys for the replies, your script works.
Just as a excercise I am trying to use a nested query and am unable to get it working. Both these return the...
August 11, 2011 at 7:30 pm
Found the problem the variable had to be package wide not just data flow task in scope.
August 9, 2011 at 7:50 pm
Koen Verbeeck (8/9/2011)
Then, after the dataflow, you can use the variable value in an expression on...
August 9, 2011 at 6:56 pm
I got it working by removing the null in the Select statement, the dervied editor was detecting the NULL.
ISNULL(optional_3l, '') AS [Division Code]
So the column is always empty or has...
August 1, 2011 at 7:34 pm
I have changed it to make more simple and it still doesn't work, when I query the DB there is actually a null record in that column [Division Code].
ISNULL([Division Code])...
August 1, 2011 at 12:44 am
Viewing 15 posts - 61 through 75 (of 94 total)