Viewing 15 posts - 16 through 30 (of 37 total)
If you want exact copy and as long as you can see in EM both servers:
1. Setup DTSTask_DTSDataPumpTask with source MSDB database on the source server - destination MSDB database...
June 2, 2003 at 11:50 pm
May be when you need to get one file which is already there it works fine.
In my project I had to get the certain number of files (differently named each...
May 29, 2003 at 7:57 am
If you use DTS object method to save on another server then you loose layout and annotations.
But you can use Transform Data Task to move selected packages (use SQL...
May 22, 2003 at 9:39 pm
I fully agree - FTP task does not deliver, success is not proprly reported.
I abandoned the idea of using FTP Task and I have created whole system of DTS...
May 22, 2003 at 12:10 am
When you are at design mode and try to view properties DTS verifies the datapump task properties and when they are invalid (as at the moment of checking them) displays...
December 29, 2002 at 7:33 pm
Yes they can.
I have the generic FTP packages run at the same time - and actually they (if the files are not where expected) will wait and restart in a...
December 19, 2002 at 8:11 am
I did try to use FTP task for a serious task (sort of generic FTP utility to get files from any given FTP Server with names that differ each day...
November 11, 2002 at 8:00 pm
Hi Phil
If in your package there is only one task executed in any given time - then in your script you can reference your Package.
Then traverse the steps and find...
August 21, 2002 at 9:00 pm
Hi CloseToDeath
You cannot do it with built in DTSFTPTask. Anyway there is a lot of problems with
the FTPTAsk if it does not get the right information.
But you can build an...
August 21, 2002 at 7:10 pm
You have to set in child package properites logging Tab:
Fail Package on First Error.
Otherwise even the task (or rather step) fails the package does not - and your calling package...
August 19, 2002 at 11:37 pm
Hi Dcurtis
Depends how deeply you use names of the columns in the packages.
eg imagine you have all the text you use in your tasks (eg when using disconnected edit)
when...
August 1, 2002 at 6:36 pm
GianAngelo
I am using sql2000 server.
I do not know what you do exactly but I can show what I have done so you may find the answer:
I am using the...
July 1, 2002 at 9:02 pm
Your code does not pass the parse
Try this one
Function Main()
If DTSSource("Q1") = "1" then
DTSDestination("HDA_Attitude") = "Poor"
elseIf DTSSource("Q1") = "2" then
DTSDestination("HDA_Attitude") = "Satisfactory"
elseIf DTSSource("Q1") = "3"...
June 25, 2002 at 1:40 am
It can be also for dbf files as used by Clipper
When you select from the list of available connection type you have dBase III, dBase IV and dBase5.
I used dBase...
May 19, 2002 at 5:44 pm
Nico Verbaenen
You can set any property of your object (eg DTS package) using sp_OASetProperty this includes also Global Variables
like:
SET @GVName = 'gvName'
SET @GVValue = someValue
--
SET @Cmd = 'GlobalVariables("' +...
May 9, 2002 at 10:24 pm
Viewing 15 posts - 16 through 30 (of 37 total)