Row count in Oracle import log differs from row count retrieved in sql developer and FME

254 Views Asked by At

After importing a oracle dump, the log file tells me that 86643 rows were imported; however, when I use sql developer and FME to retrieve the tables row count, only 86,198 rows are shown. What would cause this inconsistency?

1

There are 1 best solutions below

0
Ashok Vanam On

There could be tables imported in other schema. Run the below query to get more extensive list of tables in the database check if that matches your expected count.

Select * from all_tables;