Re: DB queries in django scripts

2019-04-16 Thread Derek
Sorry, no, we use Postgresql - perhaps you may want to consider it too (it is the recommended one for Django)? Failing that, I know there are numerous third-party tools for MySQL/Maria - perhaps have a look and see what can be found. Eg. Google shows me this one: https://www.idera.com/productsso

Re: DB queries in django scripts

2019-04-15 Thread Web Architect
Hi Derek, Thanks for your response. We are using MySQL. Could you suggest something similar for the same? Thanks. On Thursday, April 11, 2019 at 1:27:02 PM UTC+5:30, Derek wrote: > > If you are using PostggeQL you may want to look at the query analysis > produced by: > https://www.postgresql.o

Re: DB queries in django scripts

2019-04-11 Thread Derek
If you are using PostggeQL you may want to look at the query analysis produced by: https://www.postgresql.org/docs/current/pgstatstatements.html There are various third-party tools to gather output from the pg_stat_statements and make it available e.g. https://github.com/pganalyze/collector http

DB queries in django scripts

2019-04-09 Thread Web Architect
Hi, We have a Django 1.11 based ecommerce web site. We use django management scripts and django extension of runscript heavily for DB operations - running under cron. There's a tool - django-debugtoolbar to check the DB queries on the web. But is there a tool to monitor/check the DB queries