Find date and time of last update

Find date and time of last update

am 07.04.2006 13:24:33 von rui.pacheco

Hi all

I inherited a server running MySQL 4.* from a previous developer. Now,
the records on this database might be what I want, or they might just
be test data. I think my only chance of finding out if this is the real
thing is to find the date and time of the last insert into the
database.

How can I do that?

Re: Find date and time of last update

am 07.04.2006 15:13:34 von onedbguru

select max(datefieldnamehere) from table;

Sounds like a good SQL for beginners would be a very good place to
start. The Dummy series is a great for beginners.

Re: Find date and time of last update

am 07.04.2006 15:30:40 von Jeff North

On 7 Apr 2006 04:24:33 -0700, in mailing.database.mysql "Hieronimus"

<1144409073.740963.301310@i39g2000cwa.googlegroups.com> wrote:

>| Hi all
>|
>| I inherited a server running MySQL 4.* from a previous developer. Now,
>| the records on this database might be what I want, or they might just
>| be test data. I think my only chance of finding out if this is the real
>| thing is to find the date and time of the last insert into the
>| database.
>|
>| How can I do that?

show table status;
------------------------------------------------------------ ---
I often wish that email had never been invented, but there’s
just no way I can get rid of it. So, day after day, several times
a day, I dutifully delete 99% of the emails I receive, and when
I’m not able to get at my email for a few days, I’ll leave the
machine at home running to pick it up every 10 minutes so I don’t
overflow some capacity somewhere, and just the other day I caught
myself wondering who will clean out my Inbox after I’m dead.

Charles Petzold. October 20, 2005
------------------------------------------------------------ ---

Re: Find date and time of last update

am 07.04.2006 15:32:07 von rui.pacheco

I have no date field. I have varchar's and a couple of booleans, but no
date field.
Why did you assume I had a datefield? I never mentioned it anywhere.

Re: Find date and time of last update

am 07.04.2006 17:51:20 von onedbguru

Mighty testy for someone who is asking for help...

1) if there is no DATE field (either some date/time datatype OR a
char/varchar field with date data) then show table status. BTW, most
other database engines require auditing or a date field to determine
last update times. You got lucky here....

2) methods of finding maximum values
select max(datefieldnamehere) from table;
select max(cast(char_datefieldnamehere as date)) from table;

Again, see No 1 if these do not apply.

Re: Find date and time of last update

am 10.04.2006 11:36:44 von rui.pacheco

Ah, yes, the audit field. Someone else has just pointed me to something
like that. I'll include one for every table I create.
Another thing, I didn't mean to be too smart, but you called me a moron
without knowing anything about me. It didn't feel right, too.

Re: Find date and time of last update

am 10.04.2006 17:59:29 von onedbguru

I do not see anything in my post that would suggests that a beginner
in this field is a moron. After having been in a support role for many
years, purchased the "SQL for Dummies" book and added it to my
reference library. This was many years ago, but still have a need to
reference it on occasion as I cannot remember every nuance that is
articulated in that book and other very fine reference materials. To
suggest that someone add this book (or series of books) to their
reference library in no way suggest that the indiviual is " a moron".
I have also found that, in general, the Dummy series to be very
informative in other aspects of the IT world. There are other very
good resources on the market as well - but I never seem to recall the
titles of those books. :)

Regards,

A DBA for > 16 years and IT in general > 25 yrs. (field service,
consulting and others)

Re: Find date and time of last update

am 10.04.2006 19:00:19 von Bill Karwin

onedbguru@firstdbasource.com wrote:
> I do not see anything in my post that would suggests that a beginner
> in this field is a moron.

I've decided to stop recommending "SQL for Dummies". It's a good book
that is useful to people at various levels of experience, but many
people quite understandably get the wrong message when one recommends it
as a book they should read.

Regards,
Bill K.