One thing I always seem to forget when moving from one db system to the other (not using DB2 all that often) is how to select the TOP n rows from a query.
In MS SQL Server this is expressed as SELECT TOP n * FROM [table] ...
the equivilent in DB2 is SELECT * FROM [table] FETCH FIRST n ROWS ONLY

Comments