You can try this:
=SUMPRODUCT(--(A:A>B:B))
It will sum all instances in the range where the date in column A is greater than that in column B.
You can also do this, however it needs to be entered as an array formula (Ctrl+Shift+Enter):
=SUM(IF(A:A>B:B,1,0))