MySQL Forums
Forum List  »  Backup

Dump& redump NO data inserted
Posted by: Ubunter Lynux
Date: July 13, 2012 03:44AM

Hello,
A couple of days agoo we got desaster in our system, and we had to recover and re-install the whole server.

But after recovering, i'm trying to recover from the dumps backups, but there's something wrong, no data is being inserted into the new DB.

I mean, when I DUMP from the old server, I done, a check task first, then dump as:

<quote>mysqlcheck -a -r -o -uroot -p my_crm
mysqldump -uroot -p my_crm > /home/backups/my_crm_`date +%Y-%m-%d`.sql</quote>

And now, tryiong to recover, I give:
<quote>
mysqldump -u root -p my_crm < /home/backups/my_crm.sql
Enter password:
-- MySQL dump 10.13 Distrib 5.1.61, for redhat-linux-gnu (x86_64)
--
-- Host: localhost Database: my_crm
-- ------------------------------------------------------
-- Server version 5.1.61

/*!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 */;
/*!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 2012-07-13 10:46:40
</quote>


But, when i go to the server, I get nothing, as below:
<quote>
# mysql -u root -p my_crm
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 6746
Server version: 5.1.61 Source distribution

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

mysql> show tables;
Empty set (0.00 sec)</quote>


What's wrong here, why there's no data inserted, when the dump is showing completed task? Even, when I go to /var/lib/mysql/my_crm i have nothing there, it's empty, and no data being inserted :(

Any idea, please!

Options: ReplyQuote


Subject
Views
Written By
Posted
Dump& redump NO data inserted
2901
July 13, 2012 03:44AM
1496
July 13, 2012 11:53AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.