Re: [Django] #29485: Testing with Oracle in AWS RDS (oracle managed files)

2018-11-08 Thread Django
#29485: Testing with Oracle in AWS RDS (oracle managed files)
-+-
 Reporter:  Vackar Afzal |Owner:  nobody
 Type:  Uncategorized|   Status:  closed
Component:  Testing framework|  Version:  2.0
 Severity:  Normal   |   Resolution:  duplicate
 Keywords:  oracle, testing, | Triage Stage:
  OMF, AWS, RDS  |  Unreviewed
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by felixxm):

 * resolution:  needsinfo => duplicate


Comment:

 Duplicate of #29788.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/069.4eeea741239e1b07e82a602891b23bcd%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #29485: Testing with Oracle in AWS RDS (oracle managed files)

2018-06-18 Thread Django
#29485: Testing with Oracle in AWS RDS (oracle managed files)
-+-
 Reporter:  Vackar Afzal |Owner:  nobody
 Type:  Uncategorized|   Status:  closed
Component:  Testing framework|  Version:  2.0
 Severity:  Normal   |   Resolution:  needsinfo
 Keywords:  oracle, testing, | Triage Stage:
  OMF, AWS, RDS  |  Unreviewed
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Vackar Afzal):

 My current approach is to Monkey patch the default statements to read as
 follows:
 {{{

 statements = [
  """CREATE TABLESPACE %(tblspace)s""",
  """CREATE TEMPORARY TABLESPACE %(tblspace_temp)s""",
 ]

 }}}

 Works for the time being, but would be nice to have it integrated back
 into django

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/069.8abc08f4188158734e0503ea142396d9%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #29485: Testing with Oracle in AWS RDS (oracle managed files)

2018-06-17 Thread Django
#29485: Testing with Oracle in AWS RDS (oracle managed files)
-+-
 Reporter:  Vackar Afzal |Owner:  nobody
 Type:  Uncategorized|   Status:  closed
Component:  Testing framework|  Version:  2.0
 Severity:  Normal   |   Resolution:  needsinfo
 Keywords:  oracle, testing, | Triage Stage:
  OMF, AWS, RDS  |  Unreviewed
Has patch:  0|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by Carlton Gibson):

 * status:  new => closed
 * resolution:   => needsinfo


Comment:

 As it stands this is a usage question, which needs to be referred to an
 appropriate channel (Django Users, StackOverflow, etc).

 It's not clear how this is an **issue** for Django. What's the Django code
 that causes the offending SQL to be generated? If you can give us that
 then we can assess whether there's something that needs to be addressed
 here.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/069.ef0554ba3f8bf6cd51b013403597a8e6%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


[Django] #29485: Testing with Oracle in AWS RDS (oracle managed files)

2018-06-08 Thread Django
#29485: Testing with Oracle in AWS RDS (oracle managed files)
-+-
   Reporter:  Vackar |  Owner:  nobody
  Afzal  |
   Type: | Status:  new
  Uncategorized  |
  Component:  Testing|Version:  2.0
  framework  |   Keywords:  oracle, testing,
   Severity:  Normal |  OMF, AWS, RDS
   Triage Stage: |  Has patch:  0
  Unreviewed |
Needs documentation:  0  |Needs tests:  0
Patch needs improvement:  0  |  Easy pickings:  0
  UI/UX:  0  |
-+-
 I am trying to run y test suite against an oracle server running on amazon
 web services under RDS.

 It fails when executing this statement:
 {{{
 CREATE TABLESPACE NAME_OF_TBS
DATAFILE 'name_of_tbs_dev1.dbf' SIZE 50M
REUSE AUTOEXTEND ON NEXT 25M MAXSIZE 500M
 }}}

 Error message is:
 {{{
 ORA-20900: RDS only supports Oracle Managed Files. Check ddl and remove
 any named identifiers
 ORA-06512: at "RDSADMIN.RDSADMIN", line 211
 ORA-06512: at line 2)
 }}}

 What is the best way to add support for oracle managed files i.e.
  - Additional param in django settings?
  - Catch this exception and generate an OMF compatible SQL statement?

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/054.d4c580e0a7f0aca4e257e8d2ef47c336%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.