Viewing 15 posts - 301 through 315 (of 381 total)
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...
Russel Loski, MCSE Business Intelligence, Data Platform
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
...
Russel Loski, MCSE Business Intelligence, Data Platform
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...
Russel Loski, MCSE Business Intelligence, Data Platform
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...
Russel Loski, MCSE Business Intelligence, Data Platform
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...
Russel Loski, MCSE Business Intelligence, Data Platform
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.
Russel Loski, MCSE Business Intelligence, Data Platform
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...
Russel Loski, MCSE Business Intelligence, Data Platform
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. ...
Russel Loski, MCSE Business Intelligence, Data Platform
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...
Russel Loski, MCSE Business Intelligence, Data Platform
February 20, 2006 at 6:34 am
I had trouble. It asked for a paid subscription to see the article.
Russel Loski, MCSE Business Intelligence, Data Platform
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...
Russel Loski, MCSE Business Intelligence, Data Platform
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...
Russel Loski, MCSE Business Intelligence, Data Platform
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.
Russel Loski, MCSE Business Intelligence, Data Platform
June 15, 2005 at 2:48 am
Can you posta copy of the code in your Begin Loop and Loop Around scripts?
Russ
Russel Loski, MCSE Business Intelligence, Data Platform
June 15, 2005 at 2:45 am
I couldn't believe what you were saying until I tried it. My only guess is that the collection cannot handle a variant (all variables in VBScript are variant, not string...
Russel Loski, MCSE Business Intelligence, Data Platform
May 26, 2005 at 6:23 am
Viewing 15 posts - 301 through 315 (of 381 total)