Tagged Questions
A command-line interface for administrators or end users to export data from the server to files
38
votes
6answers
30k views
Run MySQLDump without Locking Tables
I want to copy a live production database into my local development database. Is there a way to do this without locking the production database?
I'm currently using:
mysqldump -u root ...
32
votes
1answer
15k views
Skip certain tables with mysqldump
Is there a way to restrict certain tables from the mysqldump command?
For example, I'd use the following syntax to dump only table1 and table2:
mysqldump -u username -p database table1 table2 > ...
23
votes
7answers
51k views
How do I restore a MySQL .dump file?
I was given a .dump MySQL database file that I need to restore as a database on my Windows Server 2008 machine.
I tried using MySQL Administrator, but I got the following error:
The selected file ...
12
votes
9answers
7k views
Can I restore a single table from a full mysql mysqldump file?
I have a mysqldump backup of my mysql database consisting of all of our tables which is about 440 megs. I want to restore the contents of just one of the tables form the mysqldump. Is this possible? ...
10
votes
4answers
2k views
How to deal with enormous line lengths created by mysqldump
I'm using mysqldump in a cron job to backup a database with over 2 million rows.
It creates a text file which can be used to restore the datalog from the command line.
I thought it would be useful ...
10
votes
3answers
10k views
Import SQL dump into MySQL
I'm confused how to import a SQL dump file.
I can't seem to import the database without creating the database first in MySQL.
This is the error displayed when database_name has not yet been created:
...
9
votes
2answers
1k views
Mysqldump more than one table?
How can I use mysqldump to dump certain tables that start with common prefix?
9
votes
3answers
7k views
How To Avoid Repair With Keycache?
I have had some experience with optimizing the my.cnf file but my database has around 4 million records (MyISAM). I am trying to restore from a mysqldump but every time I do I eventually get the ...
8
votes
5answers
21k views
How can I access the MySQL command line with XAMPP for Windows?
How can I access the MySQL command line with XAMPP for Windows?
7
votes
5answers
348 views
MySQL database backup: performance issues
Folks,
I'm trying to set up a regular backup of a rather large production database (half a gig) that has both InnoDB and MyISAM tables. I've been using mysqldump so far, but I find that it's taking ...
7
votes
4answers
1k views
Is it viable to handle MySQL backups with git?
Today I had this really neat idea for backing up my database: put the dump file in a git repository, then commit on each dump so that I have both the most recent copy, but can easily roll back to any ...
7
votes
1answer
1k views
Can you automatically create a mysqldump file that doesn't enforce foreign key constraints?
When I run a mysqldump command on my database and then try to import it, it fails as it attempts to create the tables alphabetically, even though they may have a foreign key that references a table ...
7
votes
4answers
5k views
How can I use mysqldump to replicate views between accounts?
I'm using mysqldump to replicate a database between accounts on a particular machine. Everything works just great, except when we get to our defined views. Because the dump includes a line like the ...
6
votes
3answers
472 views
Importing MySQL database from one server to another
I have got two dedicated servers with root access. Both are running Linux. I want to import database from Server1 to Server2. I have already created an empty database on Server2.
I want to know Linux ...
6
votes
2answers
2k views
How do I use mysqldump to export only the CREATE TABLE commands?
I'm trying to use mysqldump to export only the DB schema -- no data, no additional SQL comments, just the CREATE TABLE commands. Here's what I've got so far:
mysqldump -h localhost -u root -p ...
6
votes
6answers
3k views
mysqldump table without dumping the primary key
I have one table spread across two servers running MySql 4. I need to merge these into one server for our test environment.
These tables literally have millions of records each, and the reason they ...
6
votes
7answers
9k views
script to convert mysql dump sql file into format that can be imported into sqlite3 db
i have an export sql file containing tables and data from mysql and i want to import it into a sqlite 3 db.
please can you tell me the best way?
i get error reading file in via sqlite3 binary.
6
votes
2answers
3k views
Limiting the number of records from mysqldump?
I am trying to load a small sample of records from a large database into a test database.
How do you tell mysqldump to only give you n records out of 8 million?
Thanks
5
votes
3answers
197 views
How to dump mysql database?
I want to dump mysql database only the tables which have data, Can u please give me your suggestion. this is more helpful
Thanks & Regards,
Vara Kumar.PJD
5
votes
2answers
554 views
dump all mysql tables into separate files automagically?
I'd like to get dumps of each mysql table into separate files. The manual indicates that the syntax for this is
mysqldump [options] db_name [tbl_name ...]
Which indicates that you know the table ...
5
votes
1answer
380 views
Selective Export of MySQL database
I have a webapp that spans many different users, each with selective permissions about what they are able to see. The app is built on top of a MySQL database.
One feature I am interested in ...
5
votes
9answers
1k views
How can I get rid of these comments in a MySQL dump?
I'm trying to create a simple structure only dump of my database. Using mysqldump gives me a result like:
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET ...
5
votes
2answers
7k views
Edit very large sql dump/text file (on linux)
I have to import a large mysql dump (up to 10G). However the sql dump already predefined with a database structure with index definition. I want to speed up the db insert by removing the index and ...
4
votes
2answers
4k views
how to mysqldump remote db from local machine
I need to do a mysqldump of a database on a remote server, but the server does not have mysqldump installed. I would like to use the mysqldump on my machine to connect to the remote database and do ...
4
votes
3answers
941 views
Can I get a dump of all my databases *except one* using mysqldump?
I'm currently using mySQLdump to backup my dev machine and servers.
There is one project I just started, however, that has a HUUUUUGE database that I don't really need backed up, and i'll be a big ...
4
votes
1answer
487 views
Can't delete a mySQL table. (Error 1050)
I have a pesky table that will not delete and it's holding up my dev environment refresh :(
I know this table exists. Example...
mysql> select * from uc_order_products_qty_vw limit 10;
...
4
votes
3answers
4k views
Import MySQL database into a MS SQL Server
I have a .sql file from a MySQL dump containing tables definitions and the data to be inserted in this tables. How can I convert this database represented in the dump file into a MS SQL server ...
4
votes
10answers
824 views
Compare structures of two databases?
I wanted to ask whether it is possible to compare the complete database structure of two huge databases.
We have two databases, the one is a development database, the other a production database.
...
4
votes
1answer
1k views
Import single database from --all-databases dump
Is it possible to import a single database from an --all-databases mysqldump? I guess I can modify the file manually but wondering if there are any command line options to do this.
I am moving ...
4
votes
4answers
3k views
Compress a Mysqldump that is SSH'd to another machine
I have the following:
mysqldump -u xxxx
-h localhost
--password=xxxxx databasename |
ssh username@00.000.00.202 "dd of=httpdocs/backup`date ...
4
votes
1answer
603 views
mysqldump skipping some tables while taking a dump
I'm trying to take a full dump of my database. While taking a dump, mysqldump skips a few tables, especially those with foreign keys. It's not that every table with foreign keys is skipped. Some ...
4
votes
4answers
11k views
mysql dump tables only
Hi there
In my database I have some tables and views.
How can I export all the tables( and not the views ) from my database from command line?
4
votes
2answers
4k views
Dump MySQL view as a table with data
Say I have a view in my database, and I want to send a file to someone to create that view's output as a table in their database.
mysqldump of course only exports the 'create view...' statement ...
4
votes
7answers
8k views
Too many open files error on Ubuntu 8.04
mysqldump: Couldn't execute 'show fields from `tablename`': Out of resources when opening file './databasename/tablename#P#p125.MYD' (Errcode: 24) (23)
on checking the error 24 on the shell it says
...
4
votes
1answer
6k views
How to obtain a correct dump using mysqldump and single-transaction when DDL is used at the same time?
I'm new to MySQL and I'm figuring out the best way to perform an on-line hot logical backup using mysqldump. This page suggests this command line:
mysqldump --single-transaction --flush-logs ...
4
votes
5answers
2k views
MySQL permissions issue - should be non-issue
This is making me kind of crazy: I did a mysqldump of a partitioned table on one server, moved the resulting SQL dump to another server, and attempted to run the insert. It fails, but I'm having ...
4
votes
10answers
7k views
Does mysqldump --password really do what it says?
I'm trying to use mysqldump to dump a schema, and it mostly works but I ran into one curiosity: the -p or --password option seems like it is doing something other than setting the password (as the man ...
3
votes
1answer
41 views
mysqldump partial database
I recently decided to switch the company through which i get my hosting, so to move my old db into my new db, i have been trying to run this:
mysqldump --host=ipaddress --user=username ...
3
votes
1answer
137 views
Mysqldump -x option to escape XML characters
I'm exporting a MySQL database as XML using mysqldump -x. Many of my fields contain apostrophes and other characters which confuse mysqldump-x-restore's XSLT stylesheet.
It's not sufficient to just ...
3
votes
6answers
250 views
Using a .php file to generate a MySQL dump
Here's the information I have:
I am working with a Linux based system using MySQL and PHP5. I need to be able to generate a mysqldump from within a .php file, and then have that dump be stored in a ...
3
votes
1answer
182 views
Can I merge two databases into one in Mysql if they both have the same schema?
I have two databases in MySQL that already have data. they have exactly the same schema. I would like to merge those two databases into one only. I tried:
mysqldump -u root -p --databases database1 ...
3
votes
2answers
498 views
Import of 8GB mysql dump takes a long time
I've got an 8GB MYSQL database dump of InnoDB tables created with mysqldump. I import the data with:
mysql -uroot -p my_db < dump.sql
An 5 GB dump of the DB was imported within an hour. The 8 GB ...
3
votes
4answers
863 views
Import MySQL dump to PostgreSQL database
I tried several ways through internet and scripts to use MySQL dump "xxx.sql" and ORACLE dump "xxx.dump" to postgresql database. Nothing worked for me. Kindly anyone suggest me to do this.
I want to ...
3
votes
2answers
2k views
Mysqldump only tables with certain prefix / Mysqldump wildcards?
I have this huge, messy database I am cleaning up. It houses 500+ tables, which is the result of combining Magento Enterprise with Joomla in one single DB.
To make things worse, there is a set of 70+ ...
3
votes
3answers
485 views
script to dump single record from table in mysql
I want to dump single record from mysql table named as table1 for id = 5.
What is mysql query for same?
I think we can use mysqldump but i have used it with full records of table. But how to use it ...
3
votes
7answers
241 views
mysql password is messing up my dump
ok so i need to do a mysqldump of a database and this is what i have
mysqldump -uroot -psdfas@N$pr!nT --databases app_pro > /srv/DUMPFILE.SQL
but i am getting this error
-bash: !nT: event not ...
3
votes
2answers
411 views
mysqldump option to include column names in first row
I'm using mysqldump to dump all my tables to CSV files like so:
mysqldump -u -p -t -TC:\Temp --fields-terminated-by=,
Is there an option to have mysqldump include the column names in the first row ...
3
votes
2answers
678 views
how to get remote mysql database dump to my local machine?
I have remote server credentials and mysql root password. When I access remote machine and trying to take dump it throws "'Got error 28 from storage engine' when trying to dump tablespaces". So I ...
3
votes
2answers
1k views
Where I can find a list of “mysqldump” exit codes?
I know that exit code = 0 means No error.
I got exit code = 2. What does it means ?
Where I can see the complete list of mysqldump exit codes ?
3
votes
1answer
311 views
How do I do a faster MySQL Import?
We need to dump existing production data and then import it to a development DB for final rounds of testing.
In pseudo-commands, currently we:
mysqldump ....
mysql -u __USER__ __DB__ < ...