0
votes
5answers
26 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
73 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 …
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
31 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 …
0
votes
1answer
69 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
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
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
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
63 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 …
0
votes
4answers
51 views
Tool to copy SQL Server 2008 db to SQL Server 2008 Express?
I have a typical dev scenario: I have a SQL 2008 database that I want to copy every so often to my local instance of 2008 Express so that I can do dev, make changes, etc. to the local copy. I have …
1
vote
1answer
38 views
Backing Up Views with Mysql Dump
Hi,
I want to back up only the Views with mysqldump.
Is this possible?
If so, how?
1
vote
3answers
80 views
Options for maintaining MySQL databases for a django development team
What are some options to avoid the latency of pointing local django development servers to a remote MySQL database?
If developers use local MySQL databases to avoid the latency, what are some …
