I exported my Drupal DB and then while importing the DB into a new website I get the following error. It is complaining about
uc_products so I hope this is an appropriate place to post this problem. The rest of the tables seem to be loading, but
the site is totally messed after the import. mydomain.com/user comes up as page not found.
Drupal 6 / UC2 / importing with PhpMyadmin
Error
SQL query:
CREATE ALGORITHM = UNDEFINEDDEFINER = `cdman` @ `%` SQL SECURITY DEFINER VIEW `cdman`.`uc_order_products_pair_vw` AS SELECT `op1`.`nid` AS `nid` , `op2`.`nid` AS `pair_nid` , SUM( `op2`.`qty` ) AS `pair_sum_qty` , COUNT( `op2`.`nid` ) AS `order_count`
FROM (
`cdman`.`uc_order_products` `op1`
JOIN `cdman`.`uc_order_products` `op2`
)
WHERE (
(
`op1`.`order_id` = `op2`.`order_id`
)
AND (
`op1`.`nid` <> `op2`.`nid`
)
)
GROUP BY `op1`.`nid` , `op2`.`nid`
ORDER BY `op1`.`nid` , COUNT( `op2`.`nid` ) DESC , SUM( `op2`.`qty` ) DESC ;
MySQL said:
#1227 - Access denied; you need the SUPER privilege for this operation




