
Wollte meine DB exportieren.
Hab als erstes die interne Funktion von phpBB benutzt ...
beim Import über phpmyadmin kommt die Meldung:
Code: Alles auswählen
SQL-Befehl:
INSERT INTO phpbb_search_wordlist( word_text, word_id, word_common )
VALUES (
'Übrigens', '1371', '0'
);
MySQL meldet:
#1062 - Duplicate entry 'Übrigens' for key 1
Dachte mir dann ist ja erstmal egal du kannst den Searchindex ja später rebuilden, also mache ich mich ans Werk und will über phpmyadmin exportieren und einfach die 3 Tabellen auslassen ....
Code: Alles auswählen
SQL-Befehl:
CREATE TABLE phpbb_auth_access(
group_id mediumint( 8 ) NOT NULL default '0',
forum_id smallint( 5 ) unsigned NOT NULL default '0',
auth_view tinyint( 1 ) NOT NULL default '0',
auth_read tinyint( 1 ) NOT NULL default '0',
auth_post tinyint( 1 ) NOT NULL default '0',
auth_reply tinyint( 1 ) NOT NULL default '0',
auth_edit tinyint( 1 ) NOT NULL default '0',
auth_delete tinyint( 1 ) NOT NULL default '0',
auth_sticky tinyint( 1 ) NOT NULL default '0',
auth_announce tinyint( 1 ) NOT NULL default '0',
auth_vote tinyint( 1 ) NOT NULL default '0',
auth_pollcreate tinyint( 1 ) NOT NULL default '0',
auth_attachments tinyint( 1 ) NOT NULL default '0',
auth_mod tinyint( 1 ) NOT NULL default '0',
KEY group_id( group_id ) ,
KEY forum_id( forum_id )
) ENGINE = MYISAM DEFAULT CHARSET = latin1;
MySQL meldet:
#1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT CHARSET=latin1' at line 18

Hat jemand nen Tipp für mich?