If you have an SQL script that was used to store the new record (usually it should be an insert statement or another DML statement, such as updating, merging, etc.). Then you can find out how many tables affected the parsing of these SQL scripts.
Take this SQL for example:
Insert into emp(fname, lname)
Values('john', 'reyes')
You can get the result as follows:
sstinsert
emp(tetInsert)
Tables:
emp
Fields:
emp.fname
emp.lname
source
share