Requesting info on Normalizing Date fields

thechazm

VBA, VB.net, C#, Java
Local time
Today, 18:04
Joined
Mar 7, 2011
Messages
515
Good Day All,

I am looking for some good information on how to properly normalize dates in access. I have read many things and have actually normalized dates before in the past but I can't help but feel that there is a specific correct way to accomplish this without having to jump through many hoops on coding and query design.

Does anyone have any good online references or some examples I could look at and verify my current situation?

I appreciate the inputs,

Thanks
 
What are "normalized dates"?
 
spikepl I know your going somewhere with that question but instead of storing a date/time field in a main table you would use the Id number from a secondary table that would just store dates and in the main table it would only store a number relative to the actual date.

I'm sure you knew this but maybe I asked the question wrong.

Thanks
 
The question is what it is - I did not know what a "normalized date" was.

I am not aware of any date-specific treatment involved in normalization of data.
 
Thanks you actually answered my question with your statement:
<I am not aware of any date-specific treatment involved in normalization of data.>

I appreciate the inputs.
 
Most of the applications that I have built if the table grows several thousands of records every day then I typically will pull the date out of the main table and have it referenced but only for filtering speed. It's far faster to filter 1 million + records on a date field if it's just referenced but I hear your point.

I always liked the saying "Normalize till it hurts, De-Normalize till it works" :D

Thanks for the great comment and perspective.
 

Users who are viewing this thread

Back
Top Bottom