You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
builder.Services.RegisterHangfire(customSettings);
var app = builder.Build();
app.UseHangfireDashboard();
...
I've tried changing the UpdateSchema property. It's strange that if I run with true the tables are created but the app throws an error: "ORA-01408: such column list already indexed" as if trying to recreated and reindex at every run. And when I change it to false it runs ok.
Should I determine if the tables are created in order to toggle the UpdateSchema property? Or I've configured the service wrong?
OracleDB is 19.17.0.0
.NET: 7
Nuggets:
Hangfire: 1.8.5
Hangfire.Core: 1.8.5
Hangfire.FluentNHibernateStorage: 1.7.30
Hangfire.Oracle.Core: 1.2.17
FluentNHibernate: 3.3.0
The text was updated successfully, but these errors were encountered:
I'm trying to set up Hangfire with FluentNHibernate for on Oracle database, but I'm encountering the following error:
ORA-01408: such column list already indexed
I have the following setup:
...
...
I've tried changing the UpdateSchema property. It's strange that if I run with true the tables are created but the app throws an error: "ORA-01408: such column list already indexed" as if trying to recreated and reindex at every run. And when I change it to false it runs ok.
Should I determine if the tables are created in order to toggle the UpdateSchema property? Or I've configured the service wrong?
OracleDB is 19.17.0.0
.NET: 7
Nuggets:
The text was updated successfully, but these errors were encountered: