Sorry about the late reply but this might form the basis for a birthday check.
SELECT *, AS DaysIntoYear FROM Employees
WHERE ((DATEPART("dy",Birthdate)-DATEPART("dy",GETDATE())) > 0
AND (DATEPART("dy",Birthdate)-DATEPART("dy",GETDATE())) < 15);
Apologies if the...