Das Notes Forum
Sonstiges => Offtopic => Thema gestartet von: flaite am 17.02.06 - 15:06:06
-
Hi,
geht das irgendwie oder kennt jemand ein Tool, das eine Art Snappshot einer MySQL Datenbank als SQL erzeugt.
Ich drück auf einen Knopf, das Tool erzeugt mir alle Create Table und Inserts, die ich, benötige um die Datenbank mit dem gegenwärtigen Datenbestand neu einrichten kann?
Gruß Axel
-
The mysqldump client is a backup program originally written by Igor Romanenko. It can be used to dump a database or a collection of databases for backup or for transferring the data to another SQL server (not necessarily a MySQL server). The dump contains SQL statements to create the table or populate it, or both.
If you are doing a backup on the server, and your tables all are MyISAM tables, consider using the mysqlhotcopy instead because it can accomplish faster backups and faster restores. See Section 8.11, “mysqlhotcopy — A Database Backup Program”.
Beides Bestandteil von MySQL.
-
Danke für die Information ;)
So kann ich das alles in ein ant script packen.