Forum Replies Created

Viewing 15 posts - 16 through 30 (of 37 total)

  • RE: copy DTS jobs between servers

    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...

  • RE: FTP Task

    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...

  • RE: 3rd party tools for managing dts packages?

    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...

  • RE: FTP Task

    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...

  • RE: Programmatically Changing Connections in DTS

    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...

  • RE: Multiple instances of DTS Package

    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...

  • RE: FTP Task Fails but returns Success

    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...

  • RE: Determine name of executing step

    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...

  • RE: FTP: Get Every Changing List of Files

    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...

  • RE: Execute package task always returns success

    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...

  • RE: DTS - How to Handle Column Name Changes

    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...

  • RE: Error running DTS from sp_OAMethod

    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...

  • RE: Help - VB Script in DTS, if not working.

    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"...

  • RE: Data Migration

    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...

  • RE: calling DTS from VB program

    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("' +...

Viewing 15 posts - 16 through 30 (of 37 total)