This is handy if you find yourself needing to populate a numeric timestamp field (eight digit number, yyyymmdd) with the current date.
update TheFile set TheDate = Dec(Replace(Char(current date, ISO), '-', ''), 8, 0) where TheSelection
Obviously, TheFile is the file you are populating, TheDate is the field and TheSelection is whatever selection criteria you happen to be using.