0
votes
1answer
23 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
17 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
28 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
20 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
27 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
38 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
28 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
66 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 …
1
vote
2answers
74 views
Library to read a MySQL dump?
I am looking for a library that will allow me to read a mysql dump.
I don't want to have to create a MySQL database and import the library and use the MySQL API. I would prefer simply a library that …
0
votes
1answer
125 views
--single-transaction --lock-tables options of mysqldump- what happens internally?
Hello,
I did find other posts similar to this, but wanted a little extra information on these options of mysqldump. I have understood that the --single-transaction and --lock-tables are mutually …
1
vote
2answers
156 views
How to write the Mysql binary log position of master when doing a mysqldump from slave?
I am currently running mysqldump on a Mysql slave to backup our database. This has worked fine for backing up our data itself, but what I would like to supplement it with is the binary log position …
2
votes
7answers
293 views
Best database engine for huge datasets
I do datamining and my work involves loading and unloading +1GB database dump files into MySQL. I am wondering is there any other free database engine that works better than MySQL on huge databases? …
0
votes
1answer
42 views
I need to make new database in mysql with Java
How can I dump database schema to MySQL database with Java JDBC conncetor? I have my database schema in text file.
1
vote
4answers
220 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 …
2
votes
5answers
213 views
Backup MySQL database
Hi,
I have a MySQL Database of about 1.7GB. I usually back it up using mysqldump and this takes about 2 minutes. However, I would like to know the answers to the following questions:
1) Does …
