Forum Replies Created

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

  • RE: How to Design Dimensional Model?

    Hi Eirik,

    Please tell me for both Multi dimension and Tabular ?

    Many Thanks,
    Raj

  • RE: How to Design Dimensional Model?

    Hi Eirik,

    The Intended target platform is SQL Server...

  • RE: Update Duplicate Records dynamically

    Hi Thom,

    Below is the query I've tried and it working. 

    GO
    SELECT *FROM YourTable;
    WITH CTE AS ( 
    SELECT *,    ROW_NUMBER() OVER (PARTITION BY BOOKING_NUM ORDER...

  • RE: Update Duplicate Records dynamically

    Hi Thom,

    Thank you so much the query worked like a charm 🙂
    I have another issue can you help me with the query, please?

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