First time here? Check out the FAQ!
0

Postgresql - dump table data exluding toast data

I want to eliminate toast data from a table and dump it. Any assistance would be appreiated

asked 13 years ago
This post is a wiki. Anyone with karma >100 is welcome to improve it.

Comments

I gave an answer how to dump data using django data dumper, but do you want to use pg_dump?

Evgeny's avatar Evgeny (13 years ago)
see more comments

1 Answer

0

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
Evgeny's avatar
13.2k
Evgeny
answered 13 years ago
link

Comments

see more comments