Often I find myself working on a new project with a giant RDBMS, whose schema I still do not understand. I want to be able to mark a checkpoint in the database, do something in the application, and then go back to the database and ask which tables have changed (and ideally, which records have changed).
Is there a way to do something similar with SQL? I found this one , but it is only MSSQL (which I do not use).
No need to be super effective. It will just be in my dev block, and I can wait a few seconds if necessary, but I'm looking for something better than "dropping the entire database twice and distinguishing the results."
source
share