Forum Replies Created

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

  • RE: SSIS Data flow with Case statements

    Would that also work for this Case statement

    CASE

    WHEN Sample IS NULL

    THEN NULL

    WHEN SUBSTRING(REPLICATE('0', 9 - LEN(Sample )) + CAST(Sample AS VARCHAR(9)), 1, 3) IS NULL

    THEN 0

    ELSE RTRIM(SUBSTRING(REPLICATE('0', 9 -...

  • RE: Object Search

    Does this procedure also pick up Indexes? It does not look like it in the Valid Object type list. How can I add Indexes to this search?

  • RE: SSIS performance issue

    In brief here is what I have

    A variable number of tables, each of them have field names ID and Index0, they each also have 1-3 data fields. I need to...

  • RE: SSIS performance issue

    I have had a look at these and nothing really solved the issues in SSIS, I think I need to build this into SSIS, just not sure exactly what to...

  • RE: SSIS performance issue

    Hi

    Thanks so much, I will start testing it and see what it does exactly, and how it fits on our tables. I will get back asap to let you...

  • RE: SSIS performance issue

    I will try that with a trace, we have looked at using top, but it has not been very effective. The only difference between the two is one gets copied...

  • RE: SSIS performance issue

    This is the cursor specifically where I picked up the problem

    DECLARE @object_id INT

    DECLARE @table_name VARCHAR(128)

    DECLARE @col_name VARCHAR(128)

    DECLARE @exec_sql_string VARCHAR(500)

    DECLARE @exec_sql NVARCHAR(500)

    DECLARE @max_id NVARCHAR(4000)

    DECLARE @OutputParameter NVARCHAR(4000)

    DECLARE @id_count NUMERIC(38, 0)

    DECLARE @id_count_to NUMERIC(38,...

  • RE: SSIS performance issue

    Thanks I will have a look at what you said, check the settings etc.

    The cursors we use look for a table table and field name, and for example if...

  • RE: SSIS performance issue

    Maybe I am being a bit slow, but explain to me exactly how to compare the two.

    I would also like to find out why everyone is saying do not use...

  • RE: SSIS performance issue

    It runs faster on SSMS than on SSIS, I need to get the performance of SSIS up, and I am not sure why the scripts runs about 4 times faster...

  • RE: SSIS performance issue

    Not seeing it, am using Visual Studio 201 BI development, am getting to options but not seeing the rest there

  • RE: SSIS performance issue

    John, thanks for the reply

    First of all the cursor seems to be the only way, we are updating/deleting records where rowcounts are in the 100 of millions or early billions,...

  • RE: Create Stored proc in SSIS package

    Thanks to both of the options, I think this is the route I will take, will try both of them and see which one works best for me

  • RE: Create Stored proc in SSIS package

    Koen

    How exactly would you do that?

  • RE: Create Stored proc in SSIS package

    Hi

    I am not sure what the exact limit it, test it by copying and pasting scripts, then it cuts off at some point. Not sure if the limit has been...

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