0
votes
2answers
22 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 f …
0
votes
1answer
19 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 co …
0
votes
3answers
777 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 inclu …
0
votes
3answers
25 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 l …
0
votes
2answers
123 views
mysqldump passthru returncode’s
Hello,
I am trying to do a mysql dump via php.
This is the code
$backupFile = $table. "-". date("Y-m-d-H:i:s") . '.gz';
//Command nog aanpassen....
$command = "mysqldum …
0
votes
4answers
36 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 lo …
1
vote
1answer
27 views
Backing Up Views with Mysql Dump
Hi,
I want to back up only the Views with mysqldump.
Is this possible?
If so, how?
2
votes
3answers
2k views
script to convert mysql dump sql file into format that can be imported into sqlite3 db
hi,
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 …
1
vote
3answers
65 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, …
0
votes
1answer
28 views
Error during installing dump.
I have the following dump:
CREATE TABLE `testdata`.`carer` (
`ID` bigint(20) NOT NULL auto_increment,
`IS_DELETED` bit(1) default NULL,
`name` varchar(255) default NULL,
…
2
votes
7answers
285 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 …
1
vote
2answers
70 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 si …
1
vote
2answers
147 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 b …
0
votes
2answers
48 views
How do you update the structure of an entire MySQL database?
ok, say you have two dbs. one you use as a master template which goes through various revisions, let’s say we’re now on revision 3. but the second db is a copy of the template as i …
0
votes
1answer
115 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-tabl …
