Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In the footer of my page, I would like to add something like "last updated the xx/xx/200x"; with this date being the last time a certain mySQL table has been updated. What is the best way to do that ? Is there a function to retrieve the date ? Should I make an access to the database everytime my footer is displayed ?

share|improve this question

8 Answers

up vote 73 down vote accepted

In later versions of MySQL you can use the information_schema database to tell you when another table was updated:

SELECT UPDATE_TIME
FROM   information_schema.tables
WHERE  TABLE_SCHEMA = 'dbname'
   AND TABLE_NAME = 'tabname'

This does of course mean opening a connection to the database.


An alternative option would be to "touch" a particular file whenever the MySQL table is updated:

On database updates:

  • Open your timestamp file in O_RDRW mode
  • close it again

or alternatively

  • use the PHP equivalent of the utimes() function to change the file timestamp.

On page display:

  • use stat() to read back the file modification time.
share|improve this answer
where table_schemA <-- schemA instead of schemE. – Neil Feb 26 '10 at 21:16
are i can manipulate it. means if i want to change the value MySQL give me when i run this query – user605334 Apr 12 '11 at 2:50
13  
This only works for MyISAM engine. – svandragt Jan 19 '12 at 14:59
1  
For details including InnoDB limitations see dev.mysql.com/doc/refman/5.5/en/show-table-status.html (show table status uses information_schema.tables) – KCD May 9 '12 at 21:12
1  
Both the UPDATE_TIME method and the show table status method below are available only with the MyISAM engine, not InnoDB. Although this is listed as a bug, it is mentioned in the MySQL 5.5 Reference, which also says that the file_per_table mode is an unreliable indicator of modification time. – ahc Sep 25 '12 at 21:49
show 2 more comments

I don't have information_schema database, using mysql version 4.1.16, so in this case you can query this:

show table status from your_database like 'your_table';.

It will return these columns:

| Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_length | Max_data_length | Index_length | Data_free | Auto_increment | Create_time | Update_time | Check_time | Collation | Checksum | Create_options | Comment |

As you can see there is a column called: "Update_time" that shows you the last update time for that table.

Hope this will help someone when looking for a solution :)

share|improve this answer
7  
wont work with innodb – ajacian81 Nov 10 '10 at 19:18
1  
It also perform faster (4x) then SELECT statement – jmav Jan 23 at 21:16
This should be selected as a correct answer – Vineet Apr 22 at 9:20

This is what I did, I hope it helps.

<?php
    mysql_connect("localhost", "USER", "PASSWORD") or die(mysql_error());
    mysql_select_db("information_schema") or die(mysql_error());
    $query1 = "SELECT `UPDATE_TIME` FROM `TABLES` WHERE
        `TABLE_SCHEMA` LIKE 'DataBaseName' AND `TABLE_NAME` LIKE 'TableName'";
    $result1 = mysql_query($query1) or die(mysql_error());
    while($row = mysql_fetch_array($result1)) {
        echo "<font color=blue>1r tr.: </font>".$row['UPDATE_TIME'];
    }
?>
share|improve this answer
3  
Thanks, <font color=blue> did the trick for me ;) – Wesley Murch Mar 30 '12 at 4:24
2  
Why would you use like here? – Kyle Buser Mar 14 at 21:48

I would create a trigger that catches all updates/inserts/deletes and write timestamp in custom table, something like tablename | timestamp

Just because I don't like the idea to read internal system tables of db server directly

share|improve this answer

As a side note on Alnitak solution, on Windows there is apparently a bug (not really a bug, for the full story try Google), and the date is not correct. To make it work properly you can FLUSH TABLES before executing the UPDATE_TIME query.

share|improve this answer
but you should benchmark it because in my case, just doing the query without checking if update needed, was actually faster... – Ced Feb 21 '11 at 4:48

For a list of recent table changes use this:

SELECT UPDATE_TIME, TABLE_SCHEMA, TABLE_NAME
FROM information_schema.tables
ORDER BY UPDATE_TIME DESC, TABLE_SCHEMA, TABLE_NAME
share|improve this answer

Just grab the file date modified from file system. In my language that is:

 tbl_updated = file.update_time(
        "C:\ProgramData\MySQL\MySQL Server 5.5\data\mydb\person.frm")

Output:

1/25/2013 06:04:10 AM
share|improve this answer
2  
looks like highly non portable hack, a standard way that would work everywhere would be better – Tejesh Alimilli Mar 20 at 15:51
This will not work with other table types. – Brad Apr 20 at 5:36

Cache the query in a global variable when it is not available.

Create a webpage to force the cache to be reloaded when you update it.

Add a call to the reloading page into your deployment scripts.

share|improve this answer
you can't "cache" variables between independent invocations of a PHP page without outside assistance. – Alnitak Nov 21 '08 at 1:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.