Viewing 15 posts - 1 through 15 (of 163 total)
This post should really be in the SSRS forums.
Nevertheless, yes, this is supported in SSRS 2005 and 2008 (not sure about earlier versions). 2 terms this sort of thing...
September 8, 2009 at 6:01 pm
CozyRoc (9/7/2009)
Paul_J (9/7/2009)
Sorry I actually don't think the File System Task supports checking if a file exists.
Paul,
This is the custom File Watcher Task, not the File System Task. And it...
September 7, 2009 at 11:58 pm
Sorry I actually don't think the File System Task supports checking if a file exists.
September 7, 2009 at 7:17 pm
You can use System.IO.File.Exists(yourFilePath) to check whether the file you are after exists in the given path. This can be done in a loop with a sleep - System.Threading.Thread.Sleep(yourTimeout).
Note that...
September 6, 2009 at 6:02 pm
I recommend 7zip for unzipping/zipping.
August 27, 2009 at 6:22 pm
It doesn't really matter which sql server the package that you are loading is on. Whichever machine you load the package and execute on is where it gets executed.
If you...
August 24, 2009 at 5:28 pm
You can use something like this in a Script Task:
Dim pdfFiles() as string = System.IO.Directory.GetFiles(theDirectory, "*.pdf", System.IO.SearchOption.TopDirectoryOnly)
then loop through each file and get the ones that don't have an underscore...
August 19, 2009 at 6:39 pm
Generally you'd want to run SSIS packages on sql server boxes and asp.net apps on web servers.
August 19, 2009 at 4:25 am
amit (8/18/2009)
I have a dtsx package which does logging in to sql server 2005, like this I have many packages.
Now I am executing these packages...
August 19, 2009 at 4:18 am
sgs (8/18/2009)
I was hoping for an SSIS job that could run once week. If the name of the file was 'new', it could download, unzip, and load into SQL.
I'm...
August 18, 2009 at 5:55 pm
I'm not aware of any products that can do this so I would say custom code. Shouldn't be too difficult for a programmer as the scheduling business is taken care...
August 18, 2009 at 5:00 am
A Windows scheduled task can do this. It can run every so often (every day?) and download it if necessary.
August 17, 2009 at 5:21 pm
Do you mean these?
Computer name where SSIS package is currently running: My.Computer.Name
User name SSIS package is currently running as: My.User.Name
August 11, 2009 at 10:40 pm
willmiss20 (8/9/2009)
' Microsoft SQL Server Integration Services Script Task
' Write scripts using Microsoft Visual Basic
' The ScriptMain class is the entry point of the...
August 9, 2009 at 9:23 pm
willmiss20 (8/9/2009)
August 9, 2009 at 8:37 pm
Viewing 15 posts - 1 through 15 (of 163 total)