...
In SourceDataFileJpa size should be:
```/** The file size. */
@Column(name = "\"size\"", nullable = false, unique = false)
private Long size;```
In TerminologyJpa current should be:
```/** The is current. */
@Column(name = "\"current\"", nullable = false)
private boolean current = false;```
Empty Strings
- Oracle will convert an empty string ("") to a NULL. This causes failures when loading data as fields that are NOT NULL and have a "" in MySQL cannot have a NULL in Oracle.
...