When inserting date values, it is best to use the ISO format that DB2 will always understand regardless of the territory code of the client or database server you have.
'YYYY-MM-DD'
If you want to retreive data in that format, you can use:
select CHAR(BIRTHDATE, ISO) from employee;