I have developed a simple django application using sqlite3. At first, I wanted to keep it simple using sqlite3 but, things are beginning to scale up (Yes, I actually started using that application with sqlite3! Shame on me...) so I want to migrate all my data to postgresql database.

Does django or another third-party provide such feature, or should I suffer for my own stupidity...

link|improve this question

Possible duplicate: stackoverflow.com/questions/4581727/… – isbadawi Aug 9 '11 at 20:10
feedback

2 Answers

up vote 0 down vote accepted

I am trying to do the same exact thing right now, but I am running into a problem with resolving dependencies basically the same as ticket 16317. But enough about me...

Troubleshooting this led me to find a link for django-smuggler which allows you to create dumps and load data from the admin interface.

It looks promising for any data transfer needed or to use as a backup utility.

link|improve this answer
feedback

First, execute

manage.py dumpdata > out.json

then change your DB config, syncdb and finally

echo "delete from django_contenttype;" | manage.py dbshell

manage.py loaddata out.json
link|improve this answer
I get an error like this: Integrity Error: duplicate key value violates unique constraint "django_content_type_app_label_model_key" DETAIL: KEY (app_label, model)=(admin,logentry) already exists – yasar11732 Aug 10 '11 at 5:58
have you changed db? When you dump your data, you can simply delete the tables you have, update the schema, run syncdb (tables will be recreated) and the load data again (remember if you deleted some columns from schema, you need to delete it from json file too). You can see the tables and queries needed to reset the app, when you ran "manage.py sqlreset appname". And also, --indent=4 will help with the dumpdata command ;) – Ignas B. Aug 10 '11 at 6:38
btw - stackoverflow.com/questions/5739880/… could be helpful.. – Ignas B. Aug 10 '11 at 6:41
The ContentType table is populated by the syncdb, still the same data esists is the out.json. Edited to cleanup the table before loaddata. – saverio Aug 10 '11 at 7:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.