0
votes
3answers
23 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
21 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
58 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, …
1
vote
2answers
59 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 …
0
votes
1answer
87 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 …
1
vote
2answers
111 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
1answer
31 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
7answers
249 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 …
0
votes
1answer
25 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,
…
0
votes
1answer
32 views
How to import DB tables from mysqlhotcopy?
I used mysqlhotcopy to dump a database full of tables. I know have various .frm, .MYD, and .MYI files that I need to import into a different instance of MySQL. Do I just copy the …
0
votes
2answers
39 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 …
1
vote
4answers
174 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
192 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 questio …
1
vote
2answers
98 views
Dump my database with ant ?
Hi,
I don't find any information about how to dump my database (mysql) with a ant task.
maybe I must create my own ant task ?
ANT script ===generate==> myDataBase.sql
0
votes
1answer
47 views
MySQLdump results in lots of commented lines, no real content
I am trying to write a PHP program to automatically created backups of MySQL tables as sql files on the server:
$backup = "$path/$tablename.sql";
$table = "mydbname.mytablename" …
