Postgresql - dump table data exluding toast data
I want to eliminate toast data from a table and dump it. Any assistance would be appreiated
I want to eliminate toast data from a table and dump it. Any assistance would be appreiated
Dumpdata command has option --exclude
. Take a look at the documentation.
Also you should be able to dump just askbot's data:
python manage.py dumpdata askbot django_authopenid
To enter a block of code:
Comments
I gave an answer how to dump data using django data dumper, but do you want to use
pg_dump
?