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

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
asked 12 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 (12 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

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
answered 12 years ago
link

Comments

see more comments