Forum Replies Created

Viewing 15 posts - 106 through 120 (of 162 total)

  • RE: Failed to lock variable

    is your varArgument variable in the readwrite variables collection?

    an alternative to this is to use the dts.variablesdispenser to lock the variable for writing.

    tom

    Life: it twists and turns like a twisty turny thing

  • RE: How to insert a host port for SMTP server in a Send Mail Task

    have a look at this article:

    http://englestone.blogspot.com/2008/05/ssis-send-mail-task-change-smtp-port.html

    Tom

    Life: it twists and turns like a twisty turny thing

  • RE: CONDITIONAL INSERT USING LOOKUP

    one way is to use a lookup transformation to compare the incoming records to the destination table. direct the "error" rows (i.e. unmatched) to the destination table and the...

    Life: it twists and turns like a twisty turny thing

  • RE: Exponent Engima

    Oh, I fell for that one. good question, highlighting an incorrect assumption of mine (I neither use exponents nor bitwise XORs on a regular basis).

    Thanks, Tom

    Life: it twists and turns like a twisty turny thing

  • RE: SSIS Data Flow Object, Dynamic Queries

    if the metadata for each source is the same, you could populate an ado object with the various department names along with the source connection string and the destination file...

    Life: it twists and turns like a twisty turny thing

  • RE: GROUP BY ALL

    I enjoyed this question (even though the clause is being phased out!) as it was something I wasn't aware of, and it made me go off and research the subject....

    Life: it twists and turns like a twisty turny thing

  • RE: Data type changing on SSIS extract from Oracle

    what happens if you set the ValidateExternalMetadata to false?

    Life: it twists and turns like a twisty turny thing

  • RE: Data type changing on SSIS extract from Oracle

    i usually find the easiest way is to delete the original source and add a brand new one with the modified sql (the code with the explicit cast in it)....

    Life: it twists and turns like a twisty turny thing

  • RE: Loop through excel spreadsheet, write to text file

    at a glance, I would say perhaps an easier solution would be to use a data flow task in your foreach loop.

    use the loop to iterate over your directory...

    Life: it twists and turns like a twisty turny thing

  • RE: Data type changing on SSIS extract from Oracle

    check the metadata on your source transformation and see how the column is being pulled across. you may need to do an explicit conversion in your source sql

    tom

    Life: it twists and turns like a twisty turny thing

  • RE: Running one job after the other finishes

    a global executor is simply another package that you use to control the execution of your other packages.

    It is just a package executing blocks of code, except these blocks are...

    Life: it twists and turns like a twisty turny thing

  • RE: Running one job after the other finishes

    it seems that perhaps a global executor might be the way to go in this instance. you could group location specific packages under their own containers and use conditions...

    Life: it twists and turns like a twisty turny thing

  • RE: Running one job after the other finishes

    why would you want them in separate jobs and not in one job as separate steps?

    Life: it twists and turns like a twisty turny thing

  • RE: Running one job after the other finishes

    you can schedule them as separate steps in a job using sql server agent, or you could have a global executor parent package that would run each package using the...

    Life: it twists and turns like a twisty turny thing

  • RE: CSV File Extract

    you can use a foreach loop to loop through the files in a directory, then use a dataflow task to pass the data across to your database.

    tom

    Life: it twists and turns like a twisty turny thing

Viewing 15 posts - 106 through 120 (of 162 total)