Re: Question on how the Oracle backend creates queries

2016-11-23 Thread Florian Apolloner
Doing that query in a shell will cause a repr() to be used which usually just shows the first 20 items or so, therefore it applies LIMIT 20 on databases supporting that, or that subselect with the rownumber on Oracle -- that is not really anything to worry about. Cheers, Florian On Wednesday,

Question on how the Oracle backend creates queries

2016-11-23 Thread Divvid
This is more a question of understanding how things work than a issue I'm working with Django 1.9 and Oracle 12 and python 3.4 I have a model Resources When I do the following query to find all the uid's from matching resources in the Django shell * Resources.objects.filter(remote_source=sour