Top "Dumpdata" questions

`django-admin.

Django dump data for a single model?

Can I perform a dumpdata in Django on just a single model, rather than the whole app, and if so, …

django django-models loaddata dumpdata
In Django, getting a "Error: Unable to serialize database" when trying to dump data?

I'm getting an error when I'm trying to dump data to a JSON fixture in Djanog 1.2.1 on my live server. …

mysql django json fixtures dumpdata
Django dumpdata UTF-8 (Unicode)

Is there a easy way to dump UTF-8 data from a database? I know this command: manage.py dumpdata > …

django utf-8 dumpdata
Django: loaddata not working

I generated a fixture: python manage.py dumpdata --all > ./mydump.json I emptied all my databases using: python manage.…

python django dump fixtures dumpdata
Django backup strategy with dumpdata and migrations

As in this question, I set up a dumpdata-based backup system for my database. The setup is akin to running …

python django backup django-migrations dumpdata
How to use call_command with dumpdata command to save json to file

I am trying to use the call_command method to call the dumpdata command. Manually, I use it as follows …

django json command call dumpdata
Use Django dumpdata to dump a subset of overall data?

I'm trying to use dumpdata to generate JSON for a database that is sufficiently large for django to take a …

mysql django django-models dumpdata