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

As I understand it, the DBMS_LOB.SUBSTR call is trying to take the first 
4000 characters of some NCLOB and pack them into a 4000-byte buffer.  The 
problem arises when you're using an encoding where those 4000 characters 
take up more than 4000 bytes.  You might try the code patch in that ticket 
and see if it clears up the error.

Ian

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/f0pTxq1QBwkJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to