Viewing 15 posts - 76 through 90 (of 163 total)
You could even take it one step further and make the day of the week you wish to execute the task on configurable. So "Wednesday" would be stored in a...
November 10, 2008 at 3:38 pm
Say for example you want to run the stored proc only on Wednesdays. One way would be to have a check in the package that checks the current day against...
November 7, 2008 at 10:01 pm
Try this:
Dts.Variables("DestinationTableName").Value = System.IO.Path.GetFileNameWithoutExtension(FileName)
October 30, 2008 at 4:59 pm
I hope I understand what you are asking.
Try this:
Dim counter As Integer = CInt(Dts.Variables("varpackage").Value)
October 29, 2008 at 5:53 pm
I *think* you need to replace fol.Folders with fol.SubFolders.
October 28, 2008 at 4:35 pm
System::ErrorDescription is a String, so you'll need a varchar/nvarchar column.
What was the exact error? I've seen a few things that can cause problems with that parameter.
October 26, 2008 at 6:46 pm
Example file: ff10162008.ks
Task: Rename to ks.txt
Sample script task code (untested):
Dim fileName As String = "c:\cff10162008.ks"
'Get the file extension (this will be ".ks")
Dim extension As String = System.IO.Path.GetExtension(fileName)
'Remove the leading "."...
October 24, 2008 at 8:00 pm
This link will help you with your task:
October 17, 2008 at 5:15 am
In my opinion, a script task will be easier to understand and maintain for simple tasks like this.
October 17, 2008 at 5:10 am
I think you will need Excel installed on the server where the ssis package will run.
October 17, 2008 at 5:08 am
Just search the Web for something like "vb.net beginner tutorial" (or similar) and you should get a whole bunch of useful stuff. And/or purchase a beginner vb.net book.
A good way...
October 2, 2008 at 7:43 pm
I believe you will need to install the pffice primary interop assemblies (which puts them into the GAC) and then copy the relevant DLLs you want to apprear in the...
September 30, 2008 at 11:54 pm
Seems to be looking for "file1.txt" again for some reason. Are you updating the value of the variable holding the name of the file to next rename?
September 22, 2008 at 1:00 am
Do you need to examine the filenames before renaming them? If so, you'll probably need a script task to do it. If not, you can use the file system task...
September 21, 2008 at 10:29 pm
Yeah but I'm not sure if you can simply pass the filename as a variable to the FTP Task. I think the FTP Task will expect a source file connection...
September 18, 2008 at 6:50 pm
Viewing 15 posts - 76 through 90 (of 163 total)