• Hey Sourav-657741,

    As far as I know the MSREPL_tran_version column has a default on it so it should never affect your insert statements.

    What you should be doing is explicitly naming the columns you want to insert

    INSERT INTO tbl(col1,col2) VALUES(col1value,col2Value)

    If you have an identity you don't include that and you don't have to include any colums that have defaults (unless you want to insert a specific value)

    Any good ?

    Graeme