Home Forums Programming SSDT load TableC from TableB based on value of TableA in SSDT/SSIS RE: load TableC from TableB based on value of TableA in SSDT/SSIS

  • Use the following query for your dataflow source:

    select b.GROUP_ID, b.NAME, b.STATE

    from TableB b

    join TableA a on b.GROUP_ID = a.GROUP_ID

    where a.STATUS = 'Ready'

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.