Page 1 of 1

MysqlDump

Posted: 2004-03-04 17:19
by günter
Hallo,

Ich versuche für ein Backup folgendes:

mysqldump -A -C --password=xxxxx >all.sql

Aber es werden längst nicht alle DB´s beackupt, any Idea ?

Re: MysqlDump

Posted: 2004-03-04 17:39
by deanwickert
Günter wrote:Hallo,

Ich versuche für ein Backup folgendes:

mysqldump -A -C --password=xxxxx >all.sql

Aber es werden längst nicht alle DB´s beackupt, any Idea ?

Root-Passwort verwendet?

Re: MysqlDump

Posted: 2004-03-04 17:46
by günter
Hallo,

Ja, das rootpw hab ich verwendet

Re: MysqlDump

Posted: 2004-03-05 10:54
by günter
Folgende Fehlermeldung:

mysqldump: Can't get CREATE TABLE for table 'bb1_object2board' (Can't open file: 'bb1_object2board.MYD'. (errno: 145))
/bin/tar: home/www/webXXX/html/ dasdasd : file changed as we read it
/bin/tar: home/www/web31/log/access_log: file changed as we read it
/bin/tar: home/www/web68/log/access_log: file changed as we read it
/bin/tar: Error exit delayed from previous errors

Re: MysqlDump

Posted: 2004-03-05 12:24
by robertw

Code: Select all

# perror 145
Error code 145:  Unknown error 145
145 = Table was marked as crashed and should be repaired

Schau mal hier nach:
http://www.mysql.com/doc/en/Crashing.html und
http://www.mysql.com/doc/en/Corrupted_M ... ables.html und

Code: Select all

man myisamchk
Robert