Data is being cleaned out after each server restart
---------------------------------------------------
Key: TEIID-3428
URL:
https://issues.jboss.org/browse/TEIID-3428
Project: Teiid
Issue Type: Bug
Components: Tools
Affects Versions: 8.7.1.6_2
Reporter: Van Halbert
Assignee: Van Halbert
Priority: Critical
Fix For: 8.7.1.6_2, 8.11
In the teiid-extensions logging persistence file, the schema is currently getting
recreated after each restart due to being set to:
<property name="hibernate.hbm2ddl.auto" value="create" />
so it needs to change to be:
<property name="hibernate.hbm2ddl.auto" value="update" />
However, "update" isn't the ideal situation for production systems when
DBA's like to restrict access as who can be creating tables. So they want the ddl
script to run.