Error: ORA-00955:name is already used by an existing object
Hi,
Trying to using the Oracle DB instead of sqlserver DB, and ran into below error.
ormSettings.dbcreate = "update";
With above configuration after calling ormreload() call, application keeps spinning forever. and getting below error.
ORA-00955:name is already used by an existing object.
when i change the above setting to "none",
ormSettings.dbcreate = " none ";
application throws table does not exist error, but in backend we have a table database.
when i change the same setting to
ormSettings.dbcreate = "dropcreate";
we are losing all data and tables got created newly. Application loading/running successfully.
By using “update” option, our application is working fine in MicrosoftSQLServer.
When we use the same configuration for oracle database, by changing the required configuration like dialect and more
We landed on this errors.
ORA-00955:name is already used by an existing object
Using
Windows Server 2022 Standard
ColdFusion 2021 server Enterprise Trial version 10 days left
Oracle Database 21c Express Edition Release **** - Production
Any insight would be appreciated.
