Viewing 15 posts - 12,091 through 12,105 (of 13,870 total)
By the look of your code, if you really want to convert properly to SSIS, you can throw all of this code in the bin (metaphorically, of course) and use...
May 10, 2010 at 3:07 pm
OK, can you post your expression then?
May 10, 2010 at 8:24 am
You could try setting the initial value of the string variable to be a valid package name (ie, in Package / Variables).
May 10, 2010 at 8:13 am
Try setting the DelayValidation property of the Execute Package task to True.
May 10, 2010 at 8:05 am
It does its best, but yes.
Can you summarise what you need to do? Maybe there are faster alternatives which you have not considered.
May 10, 2010 at 7:09 am
No apology needed - you were very polite and not at all rude.
May 7, 2010 at 8:57 am
divyanth (5/7/2010)
I suggested this in the very first comment and i thought u tried it.. B/w i am not trying take Phil's credit here :hehe:
😛
Oooh, so you did - I...
May 7, 2010 at 8:22 am
This is an SSIS forum, so you won't be surprised that that is what I would recommend 🙂
DTS is the SQL Server 2000 version of SSIS and is therefore old...
May 7, 2010 at 4:31 am
Please be more specific about what you mean by 'integrate'.
Can the SQL Server data be updated by anything else?
Is there are date/time last updated field on the Oracle tables?
May 7, 2010 at 1:42 am
Well done for getting there in the end and thanks for posting your solution - glad to help.
May 7, 2010 at 1:37 am
I would suggest that you look at the source file in a hex editor and compare what you see with another file which works. There will be a difference, I...
May 6, 2010 at 10:27 am
I'm sorry but I don't have the time to write all of that stuff out right now.
But - regarding the Resultset property - this is a property of your Execute...
May 6, 2010 at 8:18 am
It seems to me that you don't really know what is going wrong here - just 'something'.
If you hard code the parameter values, does the query work OK? Are you...
May 6, 2010 at 7:51 am
I'm afraid you threw me off the track when you called it a global variable.
VariableDispenser gives you access to package- or task-scoped variables - not locally declared variables within your...
May 6, 2010 at 4:28 am
Something like this, maybe:
Dim f As String
For Each f In System.IO.Directory.GetFiles(path)
System.IO.File.Delete(f)
Next f
May 5, 2010 at 12:57 pm
Viewing 15 posts - 12,091 through 12,105 (of 13,870 total)