Activity overview
Latest activity by MarkEHansen
I didn't have the tablespace property set - I didn't know about it. I've
set it and now the application launches against the Oracle 12.2
database and is able to create the history table and insert records into
it. / comments
I didn't have the tablespace property set - I didn't know about it. I've
set it and now the application launches against the Oracle 12.2
database and is able to create the history table and inser...
Our DBA says that the table is created in the "USERS" tablespace and should not be. I see that the history table created by the previous version was in the DBDATA tablespace, as it should be. Is the 10.0.0 version broken? / comments
Our DBA says that the table is created in the "USERS" tablespace and should not be. I see that the history table created by the previous version was in the DBDATA tablespace, as it should be. Is th...
Note that if I use a SQL client tool and attempt to insert a row into the history table as my admin user, I get the same error. Was the history table created improperly? Missing a grant or something? / comments
Note that if I use a SQL client tool and attempt to insert a row into the history table as my admin user, I get the same error. Was the history table created improperly? Missing a grant or something?
When using Spring Boot 3.1.5 and configured with flyway-code 10.0.0
(and no flyway-database-oracle dependency), the gradle refresh work,
but when I try to start the application, it shows:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'flyway' defined in class path resource [org/springframework/boot/autoconfigure/flyway/FlywayAutoConfiguration$FlywayConfiguration.class]: Failed to instantiate [org.flywaydb.core.Flyway]: Factory method 'flyway' threw exception with message: Unsupported Database: Oracle 12.2<br>...<br>Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.flywaydb.core.Flyway]: Factory method 'flyway' threw exception with message: Unsupported Database: Oracle 12.2<br>...<br>
/ comments
When using Spring Boot 3.1.5 and configured with flyway-code 10.0.0
(and no flyway-database-oracle dependency), the gradle refresh work,
but when I try to start the application, it shows:
org.spr...
Thank you for your help, Peter. I'm not sure which part you're asking
about. I think to be able to access Oracle 12.2 databases, I would need
to be using Flyway version 10.0.0, but it seems Flyway 10.0.0 is not
supported by Spring Boot 3.5. When I try to use Flyway 10.0.0 with
Spring Boot, I get errors when Spring Boot is initializing. Is this what
you are talking about? The other point is about the Oracle
database driver. When I'm using Flyway 9.16.3, then I don't know what
version of the flyway-database-oracle dependency to include. I tried
9.16.3 and it was not found. When I tried 10.0.0, I got errors during
the Gradle refresh. I would be happy to show you details. Please let me know which one you want to see.
/ comments
Thank you for your help, Peter. I'm not sure which part you're asking
about. I think to be able to access Oracle 12.2 databases, I would need
to be using Flyway version 10.0.0, but it seems Flywa...
I'm not setting the flyway-database-oracle dependency. No matter what I tried there, when I include that, the gradle refresh fails. If I leave that out, I'm able to talk to our 19.x version Oracle databases. / comments
I'm not setting the flyway-database-oracle dependency. No matter what I tried there, when I include that, the gradle refresh fails. If I leave that out, I'm able to talk to our 19.x version Oracle ...
We've moved back to version 9.16.3 and that appears to work with Spring Boot, but still cannot connect to the Oracle 12.2 database. We're looking for a way to run Flyway with Spring Boot and connect to Oracle databases as old as 12.2. / comments
We've moved back to version 9.16.3 and that appears to work with Spring Boot, but still cannot connect to the Oracle 12.2 database. We're looking for a way to run Flyway with Spring Boot and connec...
Integrating Flyway with my Spring Boot Java application - unsupported Oracle version 12.2
I am trying to integrate Flyway community edition into my Spring Boot 3.1.0 application using Gradle to configure/build.I have added the following in my dependencies section of the build.gradle fil...