LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   [Mysql] mysqldump doesn't work when restoring data (https://www.linuxquestions.org/questions/linux-software-2/%5Bmysql%5D-mysqldump-doesnt-work-when-restoring-data-757826/)

Kunsheng 09-25-2009 08:19 PM

[Mysql] mysqldump doesn't work when restoring data
 
I used 'mysqldump' to back up a database into 'test.sql' then tried drop the database and try to restore again, yet not working at all.

There was a table 'd1' in the original database, but No table is actually restored when executing the command.

I am using command 'mysqldump -u root -p[my_password] [database_name] < test.sql.

The content of the script is as below, I already create a database with corresponding name in mysqldump before executing it:

Code:

-- MySQL dump 10.13  Distrib 5.1.31, for debian-linux-gnu (i486)
--
-- Host: localhost    Database: dummy
-- ------------------------------------------------------
-- Server version        5.1.31-1ubuntu2

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `d1`
--

DROP TABLE IF EXISTS `d1`;
SET @saved_cs_client    = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `d1` (
  `id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `d1`
--

LOCK TABLES `d1` WRITE;
/*!40000 ALTER TABLE `d1` DISABLE KEYS */;
/*!40000 ALTER TABLE `d1` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2009-09-26  1:04:30


Does anyone have some idea ?


Thanks,

-Kun

Smartpatrol 09-25-2009 11:24 PM

...


All times are GMT -5. The time now is 10:57 AM.