Forum Replies Created

Viewing 15 posts - 196 through 210 (of 805 total)

  • RE: HELP NEEDED TO MAP THIS MAIN FRAME FLAT FILE in SSIS

    If you know your header and footer will always be the same size and never the same as any of the detail, you can use the conditional split. This could...

  • RE: start an SSIS package from a particular step?

    No such luck... SSIS will run all tasks which do not have any preceding tasks first. You would have to build your own logic into handle this.

  • RE: Lookup Help

    nooooooooooooooooooooo Do not use the OLE DB component for inserts.

    It'll be a dog. SQL is set based. Rbar (Pronounced ReeBar) is Row By Agonising Row.

    The OLE Source and OLE Component...

  • RE: SSIS export to Excel

    What have you tried so far? The data flow task and excel destination will do it for you.

  • RE: DELETE Rows In Excel

    What pray tell is the syntax error?

    To be honest, I don't think you can. I seem to remember doing it through script, not SQL. I may be wrong though.

  • RE: Execute SSIS package from VB6

    Not the w rong way. What were the errors????

    You can execute a ssis package with CLR. dtxec.exe. Invoke it in VB.

  • RE: Lookup Help

    Use a proc for the update. Advantages are plan cache, cleaner oh, and it shows you the param name. Not Param0 etc. Will show you MyParamName 🙂 But mostly for...

  • RE: Lookup Help

    Well, in your lookup you are obviously mapping on the key. So you have the correct values in the source (else it would be deemed missing and become an insert)

    So,...

  • RE: Select rows from table b not in table a?

    Matt Miller (1/30/2008)


    I'm not sure I understand why you say lookup wouldn't work with a text source (or a text reference). Albeit slower thanks to the lack of indexing,...

  • RE: Lookup Help

    Your syntax is correct. Use the OLE DB component.

    Rather than redirecting the not found rows, rather ignore them and use a conditional split. It's a cleaner option.

  • RE: Select rows from table b not in table a?

    For the problem above, you could not use the lookup as the source for the lookup is a text file.

    A tip on the sort and cleaning: Do what you...

  • RE: Select rows from table b not in table a?

    Nope - pretty much bang on. Use the join, with sorted inputs, and left outer it.

    For the inverse, you can use a lookup component.

    To open an old can of worms,...

  • RE: LOOKUP TRANSFORMATION

    Don't think that has anythign to do with the lookup. Can you execute the lookup statement from SQL when connected tot he same DB as the lookup connection?

  • RE: SSIS : using ENV var's in stored procedures.

    Firstly, it's a SSIS package, not DTS. SSIS is to DTS what SQL 2005 is to Access.

    Rule 101 of anything: Never hard-code anything parameters.

    You could get the environmental variable...

  • RE: Save Package Layout?

    It's a "feature" of bids. Worst is tasks inside containers. Most times, the green lines totally vanish. You have to "nudge" a task to get the lines back.

    Also. when you...

Viewing 15 posts - 196 through 210 (of 805 total)