Magento 1.x - General error: 1813 Tablespace exists (Google Cloud SQL)
Magento 1.x - General error: 1813 Tablespace exists (Google Cloud SQL)
我在 Google Cloud SQL 上使用 Magento 1.x 多年。昨天在我尝试重新索引 catalog_product_price index:
时出现此错误
SQLSTATE[HY000]: General error: 1813 Tablespace '`myproductiondb`.`catalog_product_index_price_idx`' exists. in /var/www/html/lib/Zend/Db/Statement/Pdo.php:234
我尝试使用以下方法删除表空间:
DROP TABLESPACE catalog_product_index_price_idx Engine=InnoDB;
命令运行成功,但是当我尝试重新索引价格时,错误 1813 再次出现。
有什么提示吗?
我还没有找到“合适的”解决方案。所以我转储了原始数据库,创建了新数据库并从那里导入了原始数据库的数据。我已更改脚本以连接到新数据库,现在一切正常。
我在 Google Cloud SQL 上使用 Magento 1.x 多年。昨天在我尝试重新索引 catalog_product_price index:
时出现此错误SQLSTATE[HY000]: General error: 1813 Tablespace '`myproductiondb`.`catalog_product_index_price_idx`' exists. in /var/www/html/lib/Zend/Db/Statement/Pdo.php:234
我尝试使用以下方法删除表空间:
DROP TABLESPACE catalog_product_index_price_idx Engine=InnoDB;
命令运行成功,但是当我尝试重新索引价格时,错误 1813 再次出现。
有什么提示吗?
我还没有找到“合适的”解决方案。所以我转储了原始数据库,创建了新数据库并从那里导入了原始数据库的数据。我已更改脚本以连接到新数据库,现在一切正常。