Forum Replies Created

Viewing 2 posts - 16 through 17 (of 17 total)

  • RE: SSIS BI

    You need to handle this witrh meta data in SQL side. Create one runid for each ETL execution. Unless all the tasks doesnt completed successfully dont create new runid. And...

  • RE: Using MAX function when grouping on multiple fields

    SELECT CustNo, ItemNo, SalesPrice

    FROM UrTable mauntable

    INNER JOIN (SELECT CustNo, MAX(SalesPrice) FROM UrTable GROUP BY CustNo, ItemNo) maxSale ON (mauntable.CustNo = maxSale.CustNo AND mauntable.SalesPrice= maxSale.SalesPrice)

Viewing 2 posts - 16 through 17 (of 17 total)