I have a Bluemix application which is using SQL Database.
I want to see logs of the database. Like what is the recent modification of data or tables?
Please advise.
I have a Bluemix application which is using SQL Database.
I want to see logs of the database. Like what is the recent modification of data or tables?
Please advise.
I don't know about Bluemix but I am currently unaware of any relational database servers that offer a plaintext (that is, not recovery/rollback scoped) logging system.
Users do not have access to the logs in SQL Database on Bluemix because it is a fully managed service. To be able to see the last modification time of a table, you may create a trigger to update the timestamp whenever there is a insert/update/delete operation on a table.