mysqldump

How to retrieve MYSQL records as an INSERT statement.

I'm trying come up with the best method of synchronizing particular rows of 2 different database tables. So, for example there's 2 product tables in different databases as such... Origin Database product{ merchant_id, product_id, ... additional fields } Destination Database product{ merchant_id product_id .....

mysqldump doesn't run correctly

I write some code with PHP to backup database. Here my code: exec("mysqldump --opt -h localhost -u root test > mydb.sql"); But I get 0-byte in my file (mydb.sql). I also run with passthru(), system(), but it still gets 0-byte. I try to use command. It works. I use the lastest XAMPP for my localhost. So, how can I do to make it wor...

Moving mysql files across servers

I have a massive MySQL database (around 10 GB), and I need to copy it to a different server (slicehost). I don't want to do a DB dump and reimport b/c I think that would take forever. Is it possible to just move the raw SQL files from one machine to the next, setup an identical mysql server, and flip the switch? ...

Using nohup mysqldump from php script is inserting a '!' and breaking to a new line.

I'm trying to run a mysqldump from php using the nohup command to prevent the script from hanging. Here's the command (The database is mc6_erik_test, everything else is just a table list until you get to the end) exec("mysqldump -u root -pPassword -h vfmy1-dev.mountainmedia.com mc6_erik_test access_log admin affiliate affiliate_2_produ...

Can't delete a mySQL table. (Error 1050)

I have a pesky table that will not delete and it's holding up my dev environment refresh :( I know this table exists. Example... mysql> select * from uc_order_products_qty_vw limit 10; +-----+-------------+---------+---------+---------+---------+ | nid | order_count | avg_qty | sum_qty | max_qty | min_qty | +-----+-------------+-------...

Dump mysql view as a table with data - version 2

Hello, Q: Is there a way to direct MYSQLDUMP to export VIEW's with data (and not just the CREATE SQL)? I want to use the resulting SQL to create a new table. Thanks! Jon ...

Can I get a dump of all my databases *except one* using mysqldump?

I'm currently using mySQLdump to backup my dev machine and servers. There is one project I just started, however, that has a HUUUUUGE database that I don't really need backed up, and i'll be a big problem to add it to the rest of the backup cycle. I'm currently doing this: "c:\Program Files\mysql\MySQL Server 5.1\bin\mysqldump" -u roo...

mysqldump parameter to ensure DROP VIEW IF EXISTS rather than incorrect DROP TABLE IF EXISTS

Wonder if there is a parameter I can pass in mmysqldump equivalent for SQL Servery mysqldump that will make the incorrect "DROP TABLE IF EXISTS" statements into "DROP VIEW IF EXISTS", so that populating a database in an automated development environment refresh will work? Clarification, I'm getting DROP TABLE IF EXISTS statements in my ...

What does /*!xxxxxx statement */ generated by mysqldump mean?

I was always curious about what these comment enclosed preprocessor-like statements that mysqldump generates for me mean. Here's an example: /*!40000 ALTER TABLE abc DISABLE KEYS */; The general pattern seems to be /*![some numeric code] [some statement] */; Please point to proper documentation if exists. Otherwise explain. :) ...

Mysqldump more than one table?

How can I use mysqldump to dump certain tables that start with common prefix? ...

mysqldump on remote server

If there are two machines client and server .From client how to do a mysqldump to the server such that the dump is avaliable on the client and not stored in the server Thanks.. ...

database design in MySQL and Hibernate

Hi everybody, I am new to the all technologies just familiar with the introduction of both... I am planning to make railway reservation project, in that I want to use MySQL with Hibernate... So I have one sample design of database to make a project, I need help to combine the MySQL with Hibernaete... Database Design... trains (ID,name,...

mysqldump with character issues

php code: exec('mysqldump --opt --compress --host='.DB_HOST.' --user='.DB_USER.' --password='.DB_PASS.' '.DB_NAME.' > file.sql'); some characters are not being exported as they are in the DB. For example "ñ" becomes "ñ" -- am i missing a parameter in the mysqldump instruction? BTW, the DB is utf8. thanks! ...

MySQL: How to turn one database to read-only?

I need to turn one database into read-only, so I can clone the database and make schema modifications on the clone before we switch the application to the new database. I know the way to turn the MySQL database server into read-only, but that will make it impossible to do the schema change on the new cloned database. I searched and didn...

mysqldump command not working?

I am using mysqldump to take backup of my database, but the command is not working.. the command i am using is mysqldump -u root dbname> 'c:\backupdatafolder\backup.sql' i am running this command in MySQL cli but not running,..is there any thing wrong in the command? ...

How to Dump only specific data table from a database in MySQL?

How to Dump only specific table from a database like if my Database has 10 table's and i want to dump only 3 tables of my choice...is it possible with "mysqldump" command... ...

how to mysqldump remote db from local machine

Hi folks, I need to do a mysqldump of a database on a remote server, but the server does not have mysqldump installed. I would like to use the mysqldump on my machine to connect to the remote database and do the dump on my machine. I have tried to create an ssh tunnel and then do the dump, but this does not seem to work. I tried: ssh ...

mysqldump problem with case sensitivity? Win->linux

When i dump a table with uppercase letters using mysqldump it comes out as lower case in my > dump.sql file. I found a report here in 2006, almost 4 years old http://bugs.mysql.com/bug.php?id=19967 A solution here suggest making linux insensitive. I rather not if possible. Whats the easiest way to copy a win32 db into linux? ...

Recreation of MySQL DB using "mysql mydb < mydb.sql" is really slow when the table has tens of millions of records. How to improve it?

It seems that a MySQL database that has a table with tens of millions of records will get a big INSERT INTO statement when the following mysqldump some_db > some_db.sql is done to back up the database. (is it 1 insert statement that handles all the records?) So when reconstructing the DB using mysql some_db < some_db.sql then the...

BackUp MySql Database from CommandLine

I am able to backup mysql database via command line by executing the below : C:\MySQL\MySQL Server 5.0\bin\mysqldump\" -uroot -ppassword sample > \"D:/admindb/AAR12.sql\" But there is no DROP and CREATE database queries in my .mysql file What should i add in the syntax to get the create info to my generated .sql file ? -- M...