Do you fetch all the results when running the query directly against 
> Oracle? Many Oracle SQL clients do not fetch all the results, instead they 
> fetch just the top 100 or so rows.    markid = 
> models.CharField(unique=True, max_length=20, blank=True)
>
I missed the part where you said you are using cx_oracle directly. Still, 
make sure you fetch all the results (use list(cursor.fetchall() after 
execution).

If you don't want to return all the results, you can use the .iterator() 
method in Django.

 - Anssi 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/4fa8d059-6fec-4da7-9f24-9ae761e78327%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to