Changes between Initial Version and Version 1 of Ticket #29788


Ignore:
Timestamp:
Sep 24, 2018, 6:12:04 AM (6 years ago)
Author:
Vackar Afzal
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29788

    • Property Component UncategorizedMigrations
    • Property Easy pickings set
    • Property Keywords oracle OMF added
  • Ticket #29788 – Description

    initial v1  
     1
    12Oracle has 2 means of creating tablespaces:
    23* Oracle managed files (OMF)
     
    89Could add a flag to the 'OPTIONS' key in the database settings to specify which should be used:
    910
     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}}}
    1025
    1126
Back to Top