Forum Replies Created

Viewing 15 posts - 136 through 150 (of 805 total)

  • RE: Copying data within the same database

    You don't need SSIS of bids to do this.

    Also, your query above will not move the data from the source tables into new tables but rather from your source to...

  • RE: Check Execution Value

    If your tasks are not dependant on each other through precedence constraints, there is nothing stopping you from this it.

    Do you want the other task to check on the first...

  • RE: variable valueRemote path

    I suspect, the path is not found then...

    Firstly, the value of the variable means nothing to the variable. It's a string. You can put what you like in it.

    As for...

  • RE: Logging start of tasks

    You have already setup logging so you are 90% there.

    What options do you see in the Logging Details tab? You have looked in the logging details tab right?

    A stab in...

  • RE: Export into multiple flat file from a single table

    You could use rownumbering and a conditional split. 0-10000, go here, 100001-200000 go there etc. Not very flexable though.

    I would rather use a script component as a destination and manually...

  • RE: How To Refresh Lookup Output Columns in SSIS

    That is not a connection manager problem.

    If you have 40 data flows with 40 lookups with 40 queries, guess what? You have many many places to change this.

    If you have...

  • RE: TXT file for each table

    If it is a once off, use BCP. The work required to build a package like that is not worth it.

    If you really wanted to, You would have to create...

  • RE: xls to sql

    HA HA HA. I could not remember what .xls was for. Assume was a typo for xml. Now I feel rather stupid...:blush:

  • RE: How To Refresh Lookup Output Columns in SSIS

    ok, try this. Delete the lookup (Bare with me here) and add a new one. Does it work?

    If so, add a new column to the lookup query. When you click...

  • RE: getdate column ssis

    In your derived column component, you have two nodes in the left hand tree. One is variables, one is columns. Look for the System::Contrain.... one, drag and drop it into...

  • RE: getdate column ssis

    Using the derived column, grab the value from the System::ContainerStartTime As good a time as any.

  • RE: xls to sql

    I assume you are talking about xml file and not xsl?

    Regardless, use a variable to hold the filename. Use expressions in the variable to dynamically change the value.

    As for moving...

  • RE: How To Refresh Lookup Output Columns in SSIS

    don't fiddle the advanced editor.

    When you change your query, just add a 1 as xxx to it, it should break the mappings. CLicking back on the mappings shows the new...

  • RE: convert datatype using derived column transformation

    Why not convert it at source? Doing it in the DF is a waste of time(CPU) and memory. Unless of course, you are going to use the string value.

    I am...

  • RE: How To Refresh Lookup Output Columns in SSIS

    Why are you selecting the whole table though?

    If you are not going to use all the columns as either keys or returned values, do not select the whole table. It...

Viewing 15 posts - 136 through 150 (of 805 total)