Date Value for a table

J

jw22

What is the code to pull the Modified Date of a table within a database,
similar to FileDateTime() to look up the date of a file on a drive?
Thanks
 
K

KC-Mass

Hi
FileDateTime() returns the date a file was created OR the date the file was
modified. The created date if the file has not ben modified or the modified
date if it has been modified.

Regards
Kevin
 
K

KC-Mass

Sorry - I missed your point entirely. To find the date an internal table
was modified
query the system objects like so:

SELECT MSysObjects.*, Name, DateUpdate
FROM MSysObjects
WHERE (((Name)="tblIamLookingFor"));

Regards

Kevin
 
K

KC-Mass

Haste makes waste. Try this instead

SELECT Name, DateUpdate
FROM MSysObjects
WHERE (((Name)="tblIamLookingFor"));
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top