Re: backup/restore DB data...

2007-03-16 Thread Russell Keith-Magee
On 3/17/07, Michael <[EMAIL PROTECTED]> wrote: > > > You can try db_dump.py tool, it's not a web-gui based, but a command line > tool. > > > > http://www.djangosnippets.org/snippets/14/ > > > > It is a very good tool to work with Mysql or sqlite3 but not with > Postgresql. An alternative is to

Re: backup/restore DB data...

2007-03-16 Thread limodou
On 3/16/07, Jens Diemer <[EMAIL PROTECTED]> wrote: > > limodou schrieb: > > You can try db_dump.py tool, it's not a web-gui based, but a command line > > tool. > > > > http://www.djangosnippets.org/snippets/14/ > > Very cool! It seems to work without problems ;) > > I made a hack to put it into

Re: backup/restore DB data...

2007-03-16 Thread limodou
On 3/17/07, Michael <[EMAIL PROTECTED]> wrote: > > > On 3/17/07, limodou <[EMAIL PROTECTED] > wrote: > > > > On 3/16/07, Jens Diemer <[EMAIL PROTECTED]> wrote: > > > > > > > > > I would like to backup and restore my django App-Database. This should > > > be usable with a Web-GUI. > > > I thought

Re: backup/restore DB data...

2007-03-16 Thread Michael
On 3/17/07, limodou <[EMAIL PROTECTED]> wrote: > > > On 3/16/07, Jens Diemer <[EMAIL PROTECTED]> wrote: > > > > > > I would like to backup and restore my django App-Database. This should > > be usable with a Web-GUI. > > I thought fixtures would be well usable for it. But there are some > >

Re: backup/restore DB data...

2007-03-16 Thread Jens Diemer
limodou schrieb: > You can try db_dump.py tool, it's not a web-gui based, but a command line > tool. > > http://www.djangosnippets.org/snippets/14/ Very cool! It seems to work without problems ;) I made a hack to put it into my web install section:

Re: backup/restore DB data...

2007-03-16 Thread limodou
On 3/16/07, Jens Diemer <[EMAIL PROTECTED]> wrote: > > > I would like to backup and restore my django App-Database. This should > be usable with a Web-GUI. > I thought fixtures would be well usable for it. But there are some > problems with this. Look at: >

backup/restore DB data...

2007-03-16 Thread Jens Diemer
I would like to backup and restore my django App-Database. This should be usable with a Web-GUI. I thought fixtures would be well usable for it. But there are some problems with this. Look at: http://groups.google.com/group/django-users/browse_thread/thread/6a4e9781d08ae815 What is a