Here is my issue. I've a backup system, that creates an SQL Dump from a DB cluster every day. Works fine, yade yade. The cluster died one day and we realized, the sql dump were wrong for the past 1 month. They were created and everything, just outdated data. (no details, this is not the question) The question is: Is there a way to check if the sqldump really has the most up-to-date data in it? On an sql server, I usually run a select query ordered by the "last_login_at" and just limit 5, see if the last 5 logins are recent or not. IDK if this could be used with an SQL file.
Any ideas? Thansk !