Re: Oracle error when filtering on one2many related TextField (nclob)

2012-07-13 Thread Ian
On Thursday, July 12, 2012 9:27:30 AM UTC-6, The Bear wrote: > > I get this error: > > *** DatabaseError: ORA-06502: PL/SQL: numeric or value error: character > string buffer too small > ORA-06512: at line 1 > > This is a database encoding issue; see: https://code.djangoproject.com/ticket/11580

Oracle error when filtering on one2many related TextField (nclob)

2012-07-12 Thread c.poll...@bangor.ac.uk
Hi All I hope someone can help with a really frustrating problem I'm having. I have the following models class Output(models.Model): title = models.CharField(u'Title', max_length=1024, db_index=True) ingest_time = models.DateTimeField(u'Ingest timestamp' , default=datetime.now())