I am getting an error when using an Oracle DB and Spring Data. The error is:
Oracle DB
Spring Data
ORA-00942: table or view does not exist
The @Table annotation provides the schema attribute:
@Table
schema
@Table(name = "Dog", schema = "Vet")
You must prefix your tables with the schema name and with a . inbetween them:
.
@Table(name = "VET.Dog")