On Fri, Dec 11, 2009 at 4:23 PM, Jean Stebens <neme...@twilightzone.lu> wrote:
> The default ordering for the object is set on it's id, which is defined
> as primary key for the object. The complete database is optimized in
> terms of indexes as this is a live monitoring system with more than 40k
> servers.
>
> Any idea how to get the generated SQL from django? (except capping it in
> innotop)
>
> Cheers,
> Jean

In debug mode mode, a copy of each query is stored on the connection object:

from django.db import connection
print connection.queries[-1]


Cheers

Tom

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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