Forum Replies Created

Viewing 15 posts - 46 through 60 (of 162 total)

  • RE: Dynamically Changing Connection Properties

    1. Have the SQL task store the server name of the principle in a variable

    2. Set up a OLEDB connection to the current principle database. Rename this to Principle....

    Life: it twists and turns like a twisty turny thing

  • RE: Execute SQL Task hangs when calling a stored procedure

    could you run a trace in profiler to make sure the code being called is exactly the same?

    tom

    Life: it twists and turns like a twisty turny thing

  • RE: setting the value of the package variable

    you can do this by either adding the variables to the "ReadOnlyVariables" property on the Script tab and then you can access them using the dts object:

    [font="Courier New"]Dts.Variables("variable name").Value[/font] ...

    Life: it twists and turns like a twisty turny thing

  • RE: excel to sql tables

    you could use a foreach loop to loop through the folder, get the filename for each file, then use a script task to check for the Last Update date. ...

    Life: it twists and turns like a twisty turny thing

  • RE: creating a folder

    use a file system task set to "Create Directory" and UseDirectoryIfExists set to true. Have one for the year and one for the day.

    Tom

    Life: it twists and turns like a twisty turny thing

  • RE: Renaming a file in SSIS

    If the destination is on your network, you can use the file system task to move the file.

    I think if you rename the file and include the destination UNC filepath...

    Life: it twists and turns like a twisty turny thing

  • RE: Can I load source text file into temporary table?

    Have a look here for a possible solution

    SSIS: Using Temporary Tables

    Life: it twists and turns like a twisty turny thing

  • RE: creating dataflow dynamically

    Ah, I see. I misread your first post.

    So, what you are trying to do is run one data flow task for two sets of tables that have differing metadata....

    Life: it twists and turns like a twisty turny thing

  • RE: Variable Scope in SSIS

    i haven't been able to find a way to change the scope after a variable has been created, and such am forced to delete the incorrectly-scoped variable and recreate it,...

    Life: it twists and turns like a twisty turny thing

  • RE: creating dataflow dynamically

    i think when you set the strSQL variable you should include the "SELECT " before the rest of the statement.

    also, you don't need script tasks to change variable values; you...

    Life: it twists and turns like a twisty turny thing

  • RE: While Exporting to oracle a small issue using ssis

    can you not keep it as unicode all the way through to oracle?

    Life: it twists and turns like a twisty turny thing

  • RE: XML Source missing elements

    i don't think so; i just used the xml source straight out of the box.

    what happened when you used the files i included?

    tom

    Life: it twists and turns like a twisty turny thing

  • RE: Truncation error occured while converting data containing a single quote

    which code page are you using for your conversion?

    tom

    Life: it twists and turns like a twisty turny thing

  • RE: XML Source missing elements

    from MSDN:

    The XML source generates tabular structures from the XML data by creating an output for every element that contains other elements in the XML files

    As your company and customer...

    Life: it twists and turns like a twisty turny thing

  • RE: While Exporting to oracle a small issue using ssis

    is the text in the source column held as unicode?

    tom

    Life: it twists and turns like a twisty turny thing

Viewing 15 posts - 46 through 60 (of 162 total)