I agree with hudson. People often add the "fancy" look and feel of a database when they forget the purpose of one. A database is designed, to store data in an organized manner and retrieve data/perform operations on the fly. Access is notorious for its Ad-hoc queries that corporations can use on a small scale in their office settings.
In my opinion, a database has:
a brain (the cpu),
a heart (the memory),
a body (the storage unit/HD),
and a bone structure (the Operating System).
The key to keeping it finely tuned is to be able to beat as much data it can, while giving it full attention to what it's doing. In non-metaphorical terms.. give the database as much memory as you can and award it full processor attention to have improve retrieval speed.
Other design factors would limit your database health, so you should take into consideration the need and necessity of each additiona "add-on" you wish to incorporate. In other words: what is the cost benefit of having a constant clock on your form?
As a side note: If you were to include a clock, I would not use the form's timer event as that is a HUGE drain on Access's resource. I bet there is an ActiveX clock that you could implement that would call on a Windows API routine.