Hi,
ich möchte gerade die Daten aus der Datenbank meiner Website in meine Lokale Datenbank füttern.
Auf beiden läuft die gleiche MySQL-Version. Über PHPmyAdmin lasse ich mir die Daten nun exportieren, klappt auch soweit allerdings bekomme ich dann beim Import immer diesen Fehler:
Fehler
SQL-Befehl:
--
-- Datenbank: `usr_web207_1`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `account_balance`
--
CREATE TABLE IF NOT EXISTS `account_balance` (
`id` int( 11 ) NOT NULL AUTO_INCREMENT ,
`members_id` int( 11 ) NOT NULL ,
`transaction_time` datetime NOT NULL ,
`transaction_info` text COLLATE latin1_german2_ci NOT NULL ,
`transaction_amount` decimal( 10, 2 ) NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_german2_ci AUTO_INCREMENT =20;
MySQL meldet: Dokumentation
#1146 - Table 'topgoal.account_balance' doesn't exist
Verstehe es jetzt so, als meckert er, das es die Tabelle topgoal.account_balance nicht geben würde. Dies ist ja auch richtig, weil er sie ja anlegen soll.
Wo steckt hier der Fehler
Grüße