I am trying to connect Oracle in my Django Project, but with no success.
My versions:
Python 3.7 x86
Django 2.1.1
Oracle Client 12.2.0.1.0 x86
Oracle Database 12.2.0.1.0 x64
cx-Oracle 7.0.0
settings.py file:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.oracle',
'NAME': 'lopestrc',
'USER': 'django',
'PASSWORD': 'django',
'HOST': '192.168.0.208',
'PORT': '1521'
}
}
My tnsping response just fine and I can connect on database from my client station.
But, when I try to migrate for the first time, I receive this error below:
django.db.utils.DatabaseError: ORA-00955: name is already used by an existing object
I haven't found any help on internet. Don't know what to do anymore.
Does anyone can help?
Thanks