Forum Replies Created

Viewing 15 posts - 991 through 1,005 (of 3,233 total)

  • RE: Asynchronous processing in SSIS

    Elliott W (9/22/2009)


    John Rowan (9/21/2009)


    It may be possible, but the only way I see it working would be for you to dynamically create data flow tasks based on your...

  • RE: Very slow SQL query.

    It looks like your execution plans got hosed when you posted them. They're riddled with garbage from the formatting. Was that the XML plan? You'll need to...

  • RE: The Dynamic Tally or Numbers Table

    Great job Lynn!

  • RE: Asynchronous processing in SSIS

    It may be possible, but the only way I see it working would be for you to dynamically create data flow tasks based on your # of desigred 'threads'....

  • RE: Stored Procedure in Foreach Loop

    That would depend on what you would have done inside your stored procedure. Can you tell me what your SP logic would have done?

  • RE: Stored Procedure in Foreach Loop

    This should be done inside a data flow, not using a stored procedure and for each loop.

  • RE: Stored Procedure in Foreach Loop

    Yes, you can iterate through a result set and call a stored procedure, but I'd be real carefull about what you use this for. You're creating a RBAR process!

    What...

  • RE: Best way to add an FK relationship on a view

    Agreed. All RI constraints need to be built out on the base tables.

    Also, if they are using the Linq to SQL portion where Linq is building out...

  • RE: Reasons to use PRIMARY KEY?

    It also gives the database users an idea of which candidate key may have the clustered index on it. I know that Primery Keys do not have to be...

  • RE: Checksum function???

    The OP has not responded for quite some time now.

    SQL Learner? Are you still working on this? We'd appreciate some feedback as to how you've resolved the problem....

  • RE: local temp table in lookup

    I think there's some quarkiness (new word?) with how the look up task works w/ custom queries. Try this:

    1. Add your begin/end dates columns into the pipeline via Derived...

  • RE: Exporting binary blob data in SSIS

    I have not seen this before, but it probably has to do with your destination adapters. If you want to create an Excel workbook, you need to use the...

  • RE: Running all queries in a folder at once

    Elliot has some real valid questions here. It's one thing to just build something that works and another to build out a production process that is best for system...

  • RE: local temp table in lookup

    Yes, it only lets you map to columns. Elliot has the solution. Use the Derived Column task to get the values into your pipeline. There, you can...

  • RE: Prloblem using EXIST in Select Statement

    EXISTS evaluates to a boolean value, so true/false, based off of the query inside the EXISTS clause. The way your query is written, you'll get all rows from...

Viewing 15 posts - 991 through 1,005 (of 3,233 total)