I'm implementing the dependency system for changes in our DB, so eg for this and this change we need that and that object in such and such state. With DDL dependencies it's easy, but i need to know, what objects are referenced by the given DML clause. And the latter can be dynamic too.
So the question is: is there a way to say, what tables are referenced by the given DML code?
Primarily i'm interested in the clauses that don't modify table right away on my set of data but possibly shall modify it on client's side, because i cannot possibly have all the variations. So the indirect way of understanding (like executing a DML and then checking what tables have been changed) is not an option.
I've investigated further and have found:
Database change notifications don't work (SURPRISE!) on clauses that don't modify anything in the current state of data.
But I think i'll finally use AUDIT/FGA. As of now it appears to understand clauses, that don't really change anything, works well with both explicit and dynamic DML in PL/SQL blocks and provides object_name - that's exactly what i need.