Viewing 15 posts - 301 through 315 (of 381 total)
Under what conditions does the task run? You can set up a workflow from the datapump to this task. You can state that you want the routine to only when...
December 6, 2006 at 4:16 pm
Be sure to get the name of the task not the step. They are different. "DTSStep_DTSDataPumpTask_2" looks like a default step name not a task name.
You can get the TaskName...
December 6, 2006 at 9:24 am
It should be DTSGlobalVariables. I am not at my work machine with all of my DTS packages.
function Main()
if DTSGlobalVariables.Parent.Tasks("MyExcelTask").CustomTask.RowsComplete < 20 then
' 20 or some other threshold
Main = DTSStepScriptResult_DontExecuteTask
else
...
December 6, 2006 at 9:08 am
I'm not certain. Is the bat file on a network drive and do you refer to it using a mapped drive letter (this may cause problems)? Does the Win32 process have...
December 6, 2006 at 8:03 am
The only way that I know to do this is to use xml. You create a stored procedure that receives a text parameter. Then using OpenXML you can insert all...
December 6, 2006 at 7:56 am
In the Workflow properties, you can execute an ActiveX script that determines whether to run the step or not. The task called "MyExcelTask" (use your name; find name in the disconnected...
December 6, 2006 at 7:13 am
Fair is not the word I would use. I just have never seen anything in it for me and my organization.
August 18, 2006 at 9:51 am
I think that the one who will most suffer by this decision is Microsoft. This will add one more reason not to upgrade to Vista. Currently Vista is working at...
August 14, 2006 at 8:13 am
Thanks for the article. As a developer who makes my money on the Microsoft platform, it totally annoys me that Microsoft, in its total arrogance, shooting itself in the foot. ...
July 3, 2006 at 7:47 am
I personally prefer multiple ways to send feed back. I can understand that a better structured web page response would be more easily processed and therefore more likely to impact...
February 20, 2006 at 6:34 am
I had trouble. It asked for a paid subscription to see the article.
November 16, 2005 at 8:06 am
Try putting at the end of the routine the following line (assuming that you have assigned the connection to conTarget):
msgbox conTarget.DataSource
Does the datasource change as you expect?
Remove this code from...
June 15, 2005 at 3:26 am
I really can't say for sure without looking at your code.
You might be looping on one value, but actually setting the connection to the first value every time. You might be setting...
June 15, 2005 at 3:23 am
The process of SPID 2 has a lock of some type that prevents the blocked SPID from completing its work.
June 15, 2005 at 2:48 am
Can you posta copy of the code in your Begin Loop and Loop Around scripts?
Russ
June 15, 2005 at 2:45 am
Viewing 15 posts - 301 through 315 (of 381 total)