Quantcast
Channel: OXID Community Forum
Viewing all articles
Browse latest Browse all 6951

Lieferanten zu Hersteller verschieben

$
0
0
Hallo,

habe meinen Shop von Version 4.0.1 auf 4.7.7 aktualisiert. Würde jetzt gerne meine Lieferanten zu Hersteller machen (war eine Änderung in 4.1), siehe http://wiki.oxidforge.org/Downloads/...rs_and_vendors

Habe den SQL Befehl
Code:

INSERT INTO `oxmanufacturers` SELECT * FROM `oxvendor`;
UPDATE `oxmanufacturers` SET `oxmanufacturers`.`oxid` = MD5( `oxmanufacturers`.`oxid` );
UPDATE `oxarticles` SET `oxarticles`.`oxmanufacturerid` = MD5( `oxarticles`.`oxvendorid` ) WHERE `oxarticles`.`oxvendorid` != ;
DELETE FROM `oxvendor`;
UPDATE `oxarticles` SET `oxarticles`.`oxvendorid` = ;

in phpmyadmin ausgeführt, bekomme aber diesen Fehler:

Code:

Fehler
SQL-Befehl:

UPDATE  `oxarticles` SET  `oxarticles`.`oxmanufacturerid` = MD5(  `oxarticles`.`oxvendorid` ) WHERE  `oxarticles`.`oxvendorid` != ;

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 '' at line 1

In der oxmanufacturerid sind nun Daten vorhanden, aber bei oxarticles tut sich nichts.

Weiß jemand Rat? DANKE

Viewing all articles
Browse latest Browse all 6951

Trending Articles