I have a table with many rows, is there any way to find out when a concrete row has been inserted? (I don’t have create/update time columns)
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, generally the log is not there for the user to analyze. it is also not organized in a way leading easily to this information UNLESS you would decode it from the start. Plus, as logs get deleted after every backup…. you may not know even then, unless you never make a backup.
The only reason logs exist is to be there to roll forward in case of a disaster, to allow your last backup to get up to the point of the log.
In generally, if you want that information as part of a table, make it part of the table (.e. insert create/update timestamp columns).