Forum Replies Created

Viewing 15 posts - 1 through 15 (of 107 total)

  • RE: [SSIS] Parallel execution

    Ok, I will work on it.

    cheers.

    ____________________________________________________________

    AP
  • RE: [SSIS] Parallel execution

    Yep, that's already in place.

    The only thing which I am concerned about is running multiple packages in parallel. I have 16 processors running on my server and I want to...

    ____________________________________________________________

    AP
  • RE: [SSIS] Parallel execution

    There are various interfaces which are independent, so they would be executed in parallel. However, we've a changing req. and in future there would be more interfaces coming and we...

    ____________________________________________________________

    AP
  • RE: Redirect bad rows from Execute SQL Task

    You have to do it at SQL level only, perform data validation check and move that row to another table which will store bad records.

    ____________________________________________________________

    AP
  • RE: SQL Deadlock

    Sorry, I don't have the deadlock graph available.

    In JOB1 - I have a file to table load via SSIS (fast table load)

    In JOB2 - I am fetching some data from...

    ____________________________________________________________

    AP
  • RE: SQL Query to group and find latest

    I've created this query, it is giving me desired results, but I am not sure if it is correct.

    ;WITH CTE AS

    (

    SELECT *

    ,NTILE(2) OVER (PARTITION BY id,rn ORDER BY descr DESC)...

    ____________________________________________________________

    AP
  • RE: SQL Query to group and find latest

    Keeping amount as individual sets

    AMOUNT | STAGE

    10 | 4 } 1st SET

    10 | 3...

    ____________________________________________________________

    AP
  • RE: SQL Query to group and find latest

    This is because.

    One process for amount 10 was started @ 3 and ended @ 4.

    But, for another amount 10 process started @3 and has not ended yet. So the latest...

    ____________________________________________________________

    AP
  • RE: SQL Query to group and find latest

    Eirikur Eiriksson (8/26/2015)


    Quick thought, the description of the logic does not fit the expected results, can you please amend either or both?

    😎

    Actually the data comes in sets.

    1 set contains two...

    ____________________________________________________________

    AP
  • RE: Display the output of table in given format

    Here's a simple one -

    select AttribName AS Attribute

    ,CASE WHEN ISNUMERIC(AttribValue)=1

    THEN 'NUMERIC'

    WHEN LEN(ATTRIBVALUE) = 1 AND ISNUMERIC(AttribValue) = 0

    THEN 'ALPHABET'

    ELSE 'ALPHANUMERIC'

    END

    from #Test123

    ____________________________________________________________

    AP
  • RE: Slowly Changing Dimensions

    Load all data to your destination server and then use MERGE there.

    I hope it would be faster and easier to use.

    ____________________________________________________________

    AP
  • RE: Dynamic SIS package changing source connection at run time

    vipin_jha123 (7/30/2015)


    Hi Becouse As I explained earlier I am having 2 source connection for US .

    Out of 3 DFT 2 DFT have sourceA and Last DFT have difrent source.

    For each...

    ____________________________________________________________

    AP
  • RE: Logical File Names

    It seems none of the queries are correct. Correct one is:

    ALTER DATABASE AdventureWorks2012

    MODIFY FILE (NAME=AdventureWorks2012_data, NEWNAME=AWD2012 );

    ____________________________________________________________

    AP
  • RE: Dynamic SIS package changing source connection at run time

    I guess using a foreach loop will do.

    1>Fetch conn string, table names from master_table.

    2>Foreach

    [

    Your DFT's here.

    ]

    ____________________________________________________________

    AP
  • RE: Help selecting records not between 2 dates

    greggg (7/23/2015)


    How would I go about getting additional information from the subquery, like the ServiceDate for the record?

    You can use a CTE if required. If you can provide some more...

    ____________________________________________________________

    AP

Viewing 15 posts - 1 through 15 (of 107 total)