Changes between Initial Version and Version 1 of Ticket #29788
- Timestamp:
- Sep 24, 2018, 6:12:04 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29788
- Property Component Uncategorized → Migrations
- Property Easy pickings set
- Property Keywords oracle OMF added
-
Ticket #29788 – Description
initial v1 1 1 2 Oracle has 2 means of creating tablespaces: 2 3 * Oracle managed files (OMF) … … 8 9 Could add a flag to the 'OPTIONS' key in the database settings to specify which should be used: 9 10 11 {{{ 12 "default": { 13 "ENGINE": "django.db.backends.oracle", 14 "OPTIONS": { 15 "threaded": True, 16 "oracle_managed_files": True # <--------------- This is the new addition: default=False 17 }, 18 "NAME": "my_sid", 19 "USER": "my_user", 20 "PASSWORD": "my_pass", 21 "HOST": "localhost", 22 "PORT": "1521" 23 }, 24 }}} 10 25 11 26