Created
January 26, 2011 07:57
-
-
Save zeljkoprsa/796392 to your computer and use it in GitHub Desktop.
Code to insert at the top and the bottom of the exported "Magento db" to get properly imported again. By Branko Ajzele http://ajzele.net/moving-magento-site-from-development-to-live-server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Place these lines of SQL code on very top of the .sql file: | |
SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT; | |
SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS; | |
SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION; | |
SET NAMES utf8; | |
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; | |
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; | |
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO'; | |
SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0; | |
Place these lines of SQL code on very end of the .sql file: | |
SET SQL_MODE=@OLD_SQL_MODE; | |
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; | |
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS; | |
SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT; | |
SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS; | |
SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION; | |
SET SQL_NOTES=@OLD_SQL_NOTES; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment