What is the table name of RTC change_sets in DB2?
Accepted answer
The schema is 'SCM'. Tables related to change sets include:
SCM.CHANGE_SET
SCM.CHANGE_SET_CHANGES
SCM.CHANGE_SET_CHANGES_MERGES
Comments
Please note, that you should really, really only read the database, if you must, you should never, ever, ever write to the database, unless support tells you otherwise.
You should also never ever assume that the information you glean from studying the current schema will remain constant over the life of a release and can definitely expect changes to be introduced over version boundaries.
The database schema is not published, is subject to change and should not be considered a public API.