I have a table where Estate Agents can post jobs online.
Generally we expect 2000 entries per month, after a year that 24'000 entries!
Would this considerably slow the database down?
Should I export the data to a file if its older that a year?
If so how would I maintain data integrity
No, 24000 entries in a table is nowadays not considered a large amount of data at all. Of course I am make the assumption that your database is something like SQL Server, MySQL etc.
You would need to ensure that the table had indexes assigned to the relevant fields, e.g. the identity column or any column used regularly in WHERE clauses, as this would ensure that data could still be accessed quickly.
You should also definitely consider a back up schedule regardless of database size.