Viewing 15 posts - 1,621 through 1,635 (of 2,612 total)
No amount of job security is worth that headache.
May 9, 2008 at 11:56 am
One more clarification.
When you navigate to the .dtsx file, are you logged into the "Production 64 bit Win2k3 server" (either via rdp, or sitting at the server)?
This production server is...
May 9, 2008 at 11:55 am
Assuming you have not used any features that are not supported in the standard edition, you can detach a database from SQL 2000 Enterprise and attach it to SQL 2005...
May 9, 2008 at 10:56 am
I think having a quantity of "411 Elm Street" indicates some overstock.
I would put them on sale.
May 9, 2008 at 10:37 am
Also, don't be afraid to post the "How do I?" on this site when you need expression help. There are some people that watch these forums that are really...
May 9, 2008 at 9:59 am
BTW - I would go with variables and expressions before using the ForEach loop container. It will be a much cleaner solution.
May 9, 2008 at 9:58 am
Previous month:
[font="Courier New"](MONTH((DATEADD("MONTH",-1,GETDATE()))) == 1 ? "January" : MONTH((DATEADD("MONTH",-1,GETDATE()))) == 2 ? "February" : MONTH((DATEADD("MONTH",-1,GETDATE()))) == 3 ? "March" :
MONTH((DATEADD("MONTH",-1,GETDATE()))) == 4 ? "April" : MONTH((DATEADD("MONTH",-1,GETDATE()))) ==...
May 9, 2008 at 9:55 am
I assume there will be some sort of rules engine that will determine how many "Name" attributes a particular type of object can have and how to relate the "Name"...
May 9, 2008 at 9:52 am
It is a little tricky because the database connections get checked during package validation unless you set DelayValidation to true.
In the cases in which I have had to do this,...
May 9, 2008 at 9:29 am
Unless, like me, you get stuck with half of the applications you are dealing with being on an old version of Oracle.
Then you have to constantly switch between the two...
May 9, 2008 at 9:10 am
[font="Courier New"]SELECT
CP.ClientID
FROM
#ClientProduct CP
LEFT JOIN #ProductFilter MHO ON MHO.ProductID = CP.ProductID AND MHO.HasOrdered = 1
LEFT JOIN #ProductFilter MNHO ON MNHO.ProductID = CP.ProductID AND MNHO.HasOrdered = 0
LEFT JOIN #ProductFilter IA ON IA.ProductID...
May 9, 2008 at 7:53 am
As a CTE, even if there were the same CTE, they would get translated into individual sub-queries. So, combining them just makes the logic complicated as does not help...
May 9, 2008 at 7:30 am
Ok, there is probably a more efficient way than this, but keeping it simple and just creating sub-queries (using CTE syntax to make them look nice) for your criteria, this...
May 9, 2008 at 6:59 am
So the product filter table applies to every client?
May 9, 2008 at 6:39 am
RetainConnection will not help you. Each child package has it's own connection manager. The fact that they have the same name does not mean anything.
So, you need to...
May 9, 2008 at 6:24 am
Viewing 15 posts - 1,621 through 1,635 (of 2,612 total)