If you perform a Convert( Numeric(x, y), … ) on a value with a precision larger than y, ASE will truncate the value, whereas MS SQL Server will perform a Round( …, y ).
Convert( Numeric(x, y), … )
Round( …, y )
Example
select Convert( Numeric(5,2), 12.357 )