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 2012-06-20 23:30:31 -0500
This post is a wiki. Anyone with karma >100 is welcome to improve it.
edit flag offensive 0 remove flag close merge delete

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 (2012-06-20 23:58:21 -0500) edit
add a comment 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 2012-06-20 23:35:53 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments