Viewing 15 posts - 46 through 60 (of 284 total)
You may be able to use the HTTP Connection Manager - see this article:
http://www.sqlis.com/post/Downloading-a-file-over-HTTP-the-SSIS-way.aspx
or perhaps a Script Task that uses the .Net WebClient
September 24, 2010 at 2:01 pm
Either approach will work. It would probably be easier to manually edit the config file.
September 24, 2010 at 6:51 am
Thanks - I'll set up some logging to see if I can catch something.
September 23, 2010 at 10:47 am
I think you would want to set the value of the process task arguments dynamically by using a package configuration. Is there a reason that these arguments need to...
September 22, 2010 at 8:18 am
Instead of hard coding the path to the XML config file, there is an option to store the path in a user-defined environment variable. This is available in the...
September 21, 2010 at 9:11 am
When you say you are using the "master" username to log in with Remote Desktop, is that the same account that the SQL Agent service uses when it starts up?
September 17, 2010 at 7:06 am
I Googled this link
http://bytes.com/topic/asp-net/answers/320433-load-web-page-via-windows-form-service
where he uses the System.Net.WebClient. Haven't tried it in an SSIS Script Task, but I suppose you could, as long as you import that library.
September 15, 2010 at 11:36 am
You could put a Derived Column transform ahead of your Data Conversion. Use a Conditional Expression to change the empty string to a zero. Since this value is...
September 14, 2010 at 10:00 am
Well, not having any knowledge of what your package does, or how it does it, I can only respond in a general fashion....
Scalability issues; is this due database growth? ...
September 13, 2010 at 8:50 am
An example of a UNC path to a remote server would be
\\server1\globaldrive\myfiles
if you had mapped a drive letter to \\server1\globaldrive\ it might be:
G:\myfiles
Your network administrators should be able to help...
September 13, 2010 at 8:28 am
By default, if you set up your package in a SQL Agent job, it will run in the context of the account that is configured with the SQL Agent windows...
September 13, 2010 at 7:47 am
I do not know why temp tables are not working for you. Maybe it's time you try the CTE approach? Then you wouldn't need a temp table -...
September 10, 2010 at 9:28 am
Sorry, I forgot about this -
You also have to set Delay Validation = TRUE on any tasks that use the temp table.
See this article re: temp tables in SSIS
September 9, 2010 at 2:26 pm
When you run the package in BIDS, it uses your windows account and permissions.
When you run the SQL Agent job, by default it runs in the context of the SQL...
September 9, 2010 at 7:25 am
I don't think you can reference a recordset variable from within a SQL Query - at least it's not something I have ever done. I think recordset variables are...
September 8, 2010 at 2:36 pm
Viewing 15 posts - 46 through 60 (of 284 total)