Forum Replies Created

Viewing 15 posts - 61 through 75 (of 101 total)

  • RE: How to execute DTS code in parallel???

    yes that is true although it will only try and you still need multiple connections as only one connection object can be used at a time(so with one connection object...

  • RE: How to execute DTS code in parallel???

    Are you doing a Transformation task at all or just a sql query. Where does a,b,c,x,y,z values come from to be inserted. If it is a data transformation you can...

  • RE: Invalid Object Name

    Try creating a normal table in the database your connection for the sp is running. drop the table after use as mentioned above. this should work. You may want to...

  • RE: Backup files

    If you edit the dts package and add an ftp task to it you can always ftp the file.

  • RE: Significant zero truncation

    try doing an activex transformation on the columns

    set

    DTSDestination("DestinationColumn") = CCur(DTSSource("SourceColumn"))

  • RE: How can I create XLS file in DTS

    Start with an axtivex script to genterate the filename for the day

    eg filename = "ex" + date + ".xls"

    Yor next step will be an FTP Task where the source...

  • RE: How do you change the source?

    Why cant you create an ftp step to run and copy the file before the transformation step.

    Another way would be to have an activex script and use the Filesystem...

  • RE: QOD August 18th 03

    Never knew about the escape character always used Square brackets. Well we learn something everyday.

    if i understand the use of the escape character correctly ,then there are two correct answers...

  • RE: Inserting Package Name Into Global Variable

    try in activex script

    DTSGlobalVariables("PackageName") = DTSGlobalVariables.parent.name

    But DTSGlobalVariables.parent.name will give you the package name in any part of the package without setting a global variable.

  • RE: Type Mismatch DTSLookups

    In your Transformation Tak what lookups are you trying to do. If you do not intend to do a lookup you may have something bogus typed in their hence...

  • RE: Use Filename as Part of Transformation

    I do something similar.1 step Select The filename as a string and then save the datepart to a global variable.2nd step trasformation do an activeX for the column

    as

    DTSDestination("DateTime") =...

  • RE: QOD 8/12/03

    I am Confused. The stament the colums should contain is 'chicken AND NOT soup' The AND NOT are not operators but just words to look for in the colums i.e...

  • RE: QOD 8/12/03

    I thought it would return all five rows because they all contain Chicken,Soup.Why is the answer 4 rows and why will the "Soup a la Chicken"-"Soup made from chicken." recipe...

  • RE: QOD 30/07/2003 Incompetent Inc

    quote:


    Although I chose the "correct" answer, the correct answer to the question should have been "You can't run Enterprise Edition of SQL...

  • RE: QOD 30/07/2003 Incompetent Inc

    Very good!!

    You forgot the HR director

    Mr Pay_Peanuts_Get_Monkeys

Viewing 15 posts - 61 through 75 (of 101 total)