Forum Replies Created

Viewing 15 posts - 1 through 15 (of 66 total)

  • RE: Congratulations to Our New MVPs

    Excellent news! You both deserve it and I can't say I am not jealous...

    Every time I see Jeff's work, I am amazed how well he understands the internals of...

  • RE: Do You Want to Be Right?

    Respectfully, the chair example is just wrong. You might take four tries to get the first one right, but you can easily replicate the other three chairs assuming that...

  • RE: Do You Want to Be Right?

    I have to agree with Steve, but I want to agree with Jeff!

    We are often asked to work on something as "Priority One!". This usually means you...

  • RE: The Tape Debate

    Who is this Jennifer, and does she have a swimsuit layout?

    I think it would be prudent to keep your tape system around until media such as DVDs get enough capacity...

  • RE: DTS auto mapping

    I sent you a message through this site with my email address in it.

  • RE: DTS auto mapping

    Let's start with something simple. Insert this line right before the Next statement:

    Set oTransformation = Nothing

  • RE: DTS auto mapping

    So let me understand this... Is this For loop not working? If so, what is the error message? If there is no error message, what is the...

  • RE: DTS auto mapping

    Not necessarily. You can use the BCP utility.

    Look it up on BOL. If you don't have BOL, then here is a link:

    http://www.microsoft.com/sql/techinfo/productdoc/2000/books.asp

  • RE: DTS auto mapping

    Then why don't you just build a sql command to do this for you?

    INSERT INTO DestDB.dbo.Table1

    SELECT * FROM SourceDB.dbo.Table1

    GO

    INSERT INTO DestDB.dbo.Table2

    SELECT * FROM SourceDB.dbo.Table2

    GO

    {And so forth}

    Then you can use one...

  • RE: DTS auto mapping

    Will the destination fields be a straight copy from the source fields with the same datatypes?

  • RE: DTS in Stored Procedures

    Use UNC format instead \\{server}\{share}\DATA\PT_61_DOWNLOADS\formatfile-f-c.fmt

  • RE: Passing Variables to Create Table

    This is tricky. You will have to read up on adjusting the DTS CustomTask SQLStatement properties using ActiveX. Or if the create table command will never exceed 255...

  • RE: How to troubleshoot DTS Packages in weird situation

    We have frequent network drops here. I've learned through experience that any remote file that I have to access as a source file in DTS, to always wrap the...

  • RE: DTSRUN error creating Excel Application

    There's a funny behavior that I've noticed in DTS:

    The same result as the ActiveX CreateObject can be obtained if you delete the Excel XLS file using the FSO...

  • RE: Load text file

    You're right if this is, in fact, called by a sp. And also assuming he is not massaging the data with ActiveX on his transform.

    It would be helpful to...

Viewing 15 posts - 1 through 15 (of 66 total)