Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)

  • RE: SSIS package job failing..??

    Thanks for the reply.

    Its data flow of tables from one server to another in different regions.

    We dont have windows login to the both the machines ....

    Only one of the machines...

  • RE: SSIS package job failing..??

    Thanks for the replies...

    Here the issue ie like : we have two servers (UK and US), with different login names. I mean to say user accounts.

    But when i run the...

  • RE: Suggestion on the Service Pack...

    I do not believe that Windows 2003 SP1 is supported any longer, so you will need to move up to SP2 should you wish to continue to receive any support...

  • RE: Function - Long Running Query

    insert @t3

    select distinct SUBSTRING(Column1, 1,PATINDEX('%,%',Column1))

    from @t2

    while @@ROWCOUNT 0

    begin

    update @t2

    set Column1 = STUFF(Column1, 1, PATINDEX('%,%',Column1), '')

    delete @t2 where PATINDEX('%,%',Column1) = 0

    insert @t3

    select distinct SUBSTRING(Column1, 1,PATINDEX('%,%',Column1))

    from @t2

    end

    ---------------------------------------------------------

    adding this to the functionit...

  • RE: Function - Long Running Query

    Table has indexing properly and when ran Profiler the part which is using high CPU is at TempTable :

    ----------------------------------------------------------------------------------------------

    INSERT INTO @TempOEDetails

    SELECT ...

Viewing 5 posts - 1 through 5 (of 5 total)