Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. ERROR 1031 (HY000) at line 291001: Table storage engine for 'catalog_product_relation' doesn't have this option
  2.  
  3. mysql -h localhost -u <user> -D <database> -p < <file>
  4.  
  5. cat magento-db-dump.sql | grep '=FIXED'
  6.  
  7. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Catalog Product Relation Table';
  8. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Catalog Product To Website Linkage Table';
  9.  
  10. sed -i 's/ROW_FORMAT=FIXED//g' magento-db-dump.sql
  11.  
  12. sed -i '' 's/ROW_FORMAT=FIXED//g' magento-db-dump.sql
  13.  
  14. LC_ALL=C sed -i '' 's/ROW_FORMAT=FIXED//g' magento-db-dump.sql
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement