The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
17 views

Incremental Backup With MysqlBackup 3.8.1

I want to make a Incremental backup of my database,and for that i am using mysql Enterprise backup.The problem is that when I write down the command mysqlbackup --user=root --password=password ...
-1
votes
1answer
93 views

Creating TAR file reading standard output [closed]

I'm trying to get into tar file the stdout generated from Mysqldump: mdm@deb606:~$ mysqldump --opt test1 -u root -ppassword | tar -czf example.tar.gz doesn't work. At the moment I've temporary ...
0
votes
1answer
88 views

Why is percona xtrabackup so slow and big

When I call innobackupex with no arguments, it produces a backup of all databases. It takes three minutes, and produces an 8gb output. When I run mysqldump --all-databases, it takes 1 minutes, and ...
0
votes
0answers
27 views

Restore enum field values

I changed possible values from a enum field from a mysql table. I think with this change some values from changed field were lost. Is it possible somehow to restore these values? I have a mysqlbinlog ...
1
vote
1answer
246 views

MySQL Insert into multiple databases - issue the whole code

I wouldn't want to talk too much, here is my code (I know it is not PDO, but it will once it can work). Almost everything working!!! Now I am doing the logs and I am stuck! - UPDATE thanks to Michael ...
0
votes
1answer
134 views

Fail to re-import .sql file generated by batch script

I am using the following Batch script. It generates a .sql file with same size as the one i get when i manually use the mysqldump command from the command line. However, when i try to load this .sql ...
0
votes
3answers
107 views

Clone MySQL with dump->import or replicator

I have a LAMP (CentOS) serving about 100 normal CMS (mostly Joomla) sites. I have rsync on the files, but I would also like to backup the databases to another server offsite. I've been reading and ...
3
votes
1answer
3k views

mysqldump not creating create database syntax

I am using mysql database. I am using mysqldump to create a dump of my database. I want the database to be dumped such that there is a drop database if exists command followed by create database ...
0
votes
2answers
100 views

Back up MYSQL data after loosing access to PHPMYADMIN interface

I just want to know how to back up data From MYSQL database and Still be able to use that data again on reinstalling MYSQL ? NOTE-- i got into this problem after changing my ROOT password . I ...
2
votes
1answer
2k views

My MySQL Slave server has stopped replicating its' Master

I have a backup server that replicates my production server's mysql database, awhile ago I setup a staging server with the same php script with the only difference being that I gave it a read only ...
0
votes
2answers
419 views

Mysql dump of single table

I am trying to make some normal (understand restorable) backup of mysql backup. My problem is, that I only need to back up a single table, which was last created, or edited. Is it possible to set ...
0
votes
1answer
141 views

Force row_format on mysqldump

I am converting a whole server to use Barracuda file format and dynamic row format. Here's what I did: full mysqldump configured *innodb_file_per_table = 1* and *innodb_file_format=barracuda* ...
0
votes
1answer
94 views

MySQL backup multi-client DB for single client

I am facing a problem for a task I have to do at work. I have a MySQL database which holds the information of several clients of my company and I have to create a backup/restore procedure to backup ...
0
votes
1answer
68 views

MySQL Dump Restore

What is a good PHP script for restoring a large MySQL database from a local file that has already been uploaded to the server? Thanks.
0
votes
3answers
887 views

Archive MySQL data using PHP every week

I have a MySQL DB that receives a lot of data from a source once every week on a certain day of the week at a given time (about 1.2million rows) and stores it in, lets call it, the "live" table. I ...
0
votes
2answers
399 views

How do I restore MySQL DB from backup

My server recently crashed and I have backed the Mysql files using raid. BACKED UP DIRECTORY /backup/var/lib/mysql I installed new OS(RHEL5.3) to my server and I want to restore my DB to MySQL ...
0
votes
1answer
662 views

restoring mysql backup .myd .frm

I am having to restore a mysql database from .myd and .frm files. And Ii have no idea where to begin, I tried just copying them over while preserving file permisssions but to no avail what other steps ...