Seite 1 von 1

Datenbanksicherung einspielen geht nicht

Verfasst: 22.01.2006 16:36
von akime
Hallo zusammen!
Wenn ich meine Datenbank importieren möchte, kommt dieser Fehler:
BigDump: Staggered MySQL Dump Importer ver. 0.21b

Processing file: phpbb_db_backup-1.sql

Starting at the line: 1

Error at the line 35: INSERT INTO phpbb_categories (cat_id, cat_title, cat_order) VALUES('1', 'rbg|abi|06', '10');

Query: INSERT INTO phpbb_categories (cat_id, cat_title, cat_order) VALUES('1', 'rbg|abi|06', '10');

MySQL: Table 'abi06.phpbb_categories' doesn't exist

Stopped on error

Was ist da falsch?

Verfasst: 22.01.2006 16:41
von hagily
Spiel das Backup mal mit PhpmyAdmin ein.
Felix

Verfasst: 22.01.2006 16:47
von Fennias Maxim
hagily hat geschrieben:Spiel das Backup mal mit PhpmyAdmin ein.
Felix
Das ist nicht die lösung des problems.

Du hast so wies ausschaut nur ein Backup das datenbankinhaltes, nicht aber des schemas/der struktur.

Verfasst: 22.01.2006 16:51
von akime
Muss ich zuerst mein Struktur-Backup einspielen?
Hab gedacht des wär beim Kompletten-Backup alles dabei

Verfasst: 22.01.2006 16:56
von Fennias Maxim
akime hat geschrieben:Muss ich zuerst mein Struktur-Backup einspielen?
Hab gedacht des wär beim Kompletten-Backup alles dabei
Ist es auch normalerweise. Guck mal ob du irgendwo in deinem Backup create table phpbb_categories findest.

Verfasst: 22.01.2006 17:00
von akime
ja steht drin! Und mit Phpmyadmin gehts auch nicht.

Verfasst: 22.01.2006 17:10
von Fennias Maxim
Dann zeig uns dochmal die ersten 35 Zeilen, aber bitte prüfe ob da nirgends ein MD5 hash dabei ist! Die erkennst du an Zahlen und Buchstabensalat wie 24be5ac5ed43.....

Verfasst: 22.01.2006 17:16
von akime
also ich denk mal du meinst meine backup-datei

Code: Alles auswählen

#
# phpBB Backup Script
# Dump of tables for abi06
#
# DATE : 22-01-2006 14:03:04 GMT
#
#
# TABLE: phpbb_auth_access
#
DROP TABLE IF EXISTS phpbb_auth_access;
CREATE TABLE phpbb_auth_access(
        group_id mediumint(8) NOT NULL,
        forum_id smallint(5) unsigned NOT NULL,
        auth_view tinyint(1) NOT NULL,
        auth_read tinyint(1) NOT NULL,
        auth_post tinyint(1) NOT NULL,
        auth_reply tinyint(1) NOT NULL,
        auth_edit tinyint(1) NOT NULL,
        auth_delete tinyint(1) NOT NULL,
        auth_sticky tinyint(1) NOT NULL,
        auth_announce tinyint(1) NOT NULL,
        auth_vote tinyint(1) NOT NULL,
        auth_pollcreate tinyint(1) NOT NULL,
        auth_attachments tinyint(1) NOT NULL,
        auth_mod tinyint(1) NOT NULL,
        KEY group_id (group_id),
        KEY forum_id (forum_id)
);

#
# Table Data for phpbb_auth_access
#

INSERT INTO phpbb_auth_access (group_id, forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments, auth_mod) VALUES('27', '3', '1', '1', '1', '1', '0', '0', '0', '0', '1', '0', '0', '0');
Kann es daran liegen dass es zwei unterschiedliche Versionen von phpBB sind, also von der Version wo ich das Backup erstellt habe zu der auf die ichs drauspielen will?