0
votes
4answers
850 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 …
0
votes
5answers
25 views
mysqldump table names prefix
I have two mysql databases that have almost the same structure and representing the data of the same web app but one of them represents the current version and second one was made long time ago.
How …
1
vote
7answers
70 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 …
0
votes
1answer
55 views
Foreign key constraints while dumping data
mysqldump --compact --no-create-info -h192.168.150.180 -uroot -p live pnlbus_stops | sed s/pnlbus_stops/bus_stops/g | mysql test
I am getting an error:
ERROR 1062 (23000) at line 1: Duplicate entry …
1
vote
4answers
78 views
I’m looking for an english language word list
Does anyone know where I could locate an english language word list in the form of a SQL dump?
I found a word list online but it's a large plain text file; the words are delimited by a new line …
1
vote
1answer
29 views
I exported via mysqldump to a file. How do I find out the file encoding of the file ?
Given a text file in ubuntu (or debian unix in general), how do I find out the file encoding of the file ? Can I run od or hexdump on it to fingerprint its encoding ? What should I be looking out for …
1
vote
9answers
2k 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 …
0
votes
1answer
67 views
How to I use mysqldump to export only the CREATE TABLE commands?
I'm try 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 --no-data …
0
votes
2answers
42 views
MySQL lost after upgrading to Snow Leopard
I made a silly mistake of upgrading Leopard a tad too soon.
I thought I dumped my mysql files but the last backup is about a month old.
Now I upgraded the computer to Snow Leopard, and trying to run …
0
votes
1answer
42 views
Why does mysqldump need to be fully pathed when called from a controller or model?
When I call mysqldump from a controller or model I need to fully path the binary, when I call it from Rake I don't need to.
If I do not fully path I get a zero byte file...
I can confirm both …
0
votes
1answer
19 views
mysqldump with partitioned table
Hi, I have a large MyiSam table and I recently partitioned it. I backup the db every day usng mysqldump but rather than bakcup the entire large table, I'd like to just backup certain partition(s). Is …
0
votes
0answers
40 views
ERROR 1005 (HY000) at line 244: Can’t create table ‘./intranet2/dept.frm’ (errno: 150)
I dumped a DB from the production:
mysqldump -u user_name -p intranet2 > intranet2.sql
into the development server:
mysql -u user_name -p intranet2 < intranet2.sql
and I get this:
ERROR 1005 …
0
votes
2answers
61 views
mysqldump entire structure but only data from selected tables in a single command
My database has 3 tables: table1, table2 and table3
I would like to do a mysqldump on this database with the following conditions:
Dump structure for all tables
Only dump data for table1 and …
0
votes
1answer
24 views
mysql dump stops when a row is updated
When i try to get a dump of a mysql database, the dump stops when a row in it is updated. How can i prevent that? I already tried following options with no result:
-f (forces continu even when …
0
votes
3answers
33 views
Generated MySQL DDL fails to regenerate database
I just used the MySQL mysqldump tool to generate DDL so I could create the sane database on another machine. When I try to run it on the target machine I get this error:
Script line: 28 Key column …
