When generating a table script, an alter statement for a foreign key constraint did not have the reference table listed. It was blank where the reference table should have been.
Here is an example:
ALTER TABLE schema1."table1" ADD (
CONSTRAINT "LongConstraintNameForTable1"
FOREIGN KEY ("Col1")
REFERENCES schema1.
ENABLE VALIDATE);