active questions tagged mysqldump - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T05:19:21Z http://stackoverflow.com/feeds/tag/mysqldump http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1842076/how-to-i-use-mysqldump-to-export-only-the-create-table-commands 0 How to I use mysqldump to export only the CREATE TABLE commands? FM 2009-12-03T18:52:51Z 2009-12-03T19:30:48Z <p>I'm try to use <code>mysqldump</code> to export only the DB schema -- no data, no additional SQL comments, just the <code>CREATE TABLE</code> commands. Here's what I've got so far:</p> <pre><code>mysqldump -h localhost -u root -p --no-data --compact some_db </code></pre> <p>It almost achieves what I want, but I'd like to eliminate the "character set" lines (those like the first 3 lines in the example output below). Is there a <code>mysqldump</code> option to do that?</p> <pre><code>/*!40101 SET character_set_client = @saved_cs_client */; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `foo` ( `id` int(11) NOT NULL AUTO_INCREMENT, `bar_id` int(11) DEFAULT NULL, `bazz` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=369348 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bar` ( ...etc. </code></pre> <p>Here's my version info, in case that matters:</p> <pre><code>mysqldump Ver 10.13 Distrib 5.1.34, for Win32 (ia32) mysql Ver 14.14 Distrib 5.1.34, for Win32 (ia32) </code></pre> http://stackoverflow.com/questions/1828201/mysql-lost-after-upgrading-to-snow-leopard 0 MySQL lost after upgrading to Snow Leopard Richard Testani 2009-12-01T19:08:14Z 2009-12-01T20:22:06Z <p>I made a silly mistake of upgrading Leopard a tad too soon.</p> <p>I thought I dumped my mysql files but the last backup is about a month old.</p> <p>Now I upgraded the computer to Snow Leopard, and trying to run the old mysql server wasn't happening. So I read you must reinstall mysql with a newer version which I did and it ran just fine and starts up just fine.</p> <p>However - it seems it setup a new install, but since the older version cannot run on this platform - how can I dump the old data?</p> <p>I tried mysqldump but it wasnt connecting.</p> <p>Any ideas would be fantastic!</p> http://stackoverflow.com/questions/1803728/why-does-mysqldump-need-to-be-fully-pathed-when-called-from-a-controller-or-model 0 Why does mysqldump need to be fully pathed when called from a controller or model? Kris 2009-11-26T13:41:05Z 2009-11-30T09:42:29Z <p>When I call <code>mysqldump</code> from a controller or model I need to fully path the binary, when I call it from Rake I don't need to.</p> <p>If I do not fully path I get a zero byte file...</p> <p>I can confirm both processes are run using the same user.</p> <pre><code># Works in a controller, model and Rake task system "/usr/local/mysql/bin/mysqldump -u root #{w.database_name} &gt; #{target_file}" # Only works in a Rake task system "mysqldump -u root #{w.database_name} &gt; #{target_file}" </code></pre> <p>If I call the Rake task from the action it also fails (zero byte file).</p> <p>OS: Mac Ruby 1.8.6</p> <p>EDIT: I use <code>Etc.getpwuid(Process.uid).name</code> to get the User of the current process</p> http://stackoverflow.com/questions/1816162/mysqldump-with-partitioned-table 0 mysqldump with partitioned table Russ 2009-11-29T17:41:49Z 2009-11-29T18:02:38Z <p>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 there any way that I can specify which partitions to dump using mysqldump? </p> http://stackoverflow.com/questions/1784329/error-1005-hy000-at-line-244-cant-create-table-intranet2-dept-frm-errno 0 ERROR 1005 (HY000) at line 244: Can't create table './intranet2/dept.frm' (errno: 150) rtacconi 2009-11-23T16:36:54Z 2009-11-23T16:36:54Z <p>I dumped a DB from the production:</p> <p>mysqldump -u user_name -p intranet2 > intranet2.sql</p> <p>into the development server:</p> <p>mysql -u user_name -p intranet2 &lt; intranet2.sql</p> <p>and I get this:</p> <p>ERROR 1005 (HY000) at line 244: Can't create table './intranet2/dept.frm' (errno: 150)</p> <p>I tried to put this in the beginning of the sql file:</p> <p>SET FOREIGN_KEY_CHECKS = 0; </p> <p>but I still getting the same message. mysqldump should be able to recreate a database otherwise who can I trust that my backup?</p> http://stackoverflow.com/questions/1764387/mysqldump-entire-structure-but-only-data-from-selected-tables-in-a-single-command 0 mysqldump entire structure but only data from selected tables in a single command tvor 2009-11-19T16:02:48Z 2009-11-19T16:11:54Z <p>My database has 3 tables: table1, table2 and table3</p> <p>I would like to do a mysqldump on this database with the following conditions:</p> <ul> <li>Dump structure for all tables</li> <li>Only dump data for table1 and table2, ignore data in table3</li> </ul> <p>Currently, I do this with 2 mysqldump statements</p> <pre><code>mysqldump -u user -p -d db &gt; db_structure.sql mysqldump -u user -p db --ignore-table=db.table3 &gt; table1_and_table2_data.sql </code></pre> <p>Import them in the same order they were dumped (structure, then data from table1 and table2)</p> <p>Is there a way to combine this into a single mysqldump command?</p> http://stackoverflow.com/questions/1757377/mysql-dump-stops-when-a-row-is-updated 0 mysql dump stops when a row is updated MichaelD 2009-11-18T16:46:41Z 2009-11-18T17:20:02Z <p>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:</p> <ul> <li>-f (forces continu even when error)</li> <li>-x (lock all tables)</li> </ul> <p>when i log any error, i get nothing</p> <p>Command i'm using:</p> <p>mysqldump --user=* --password=* --all-databases --log-error=*.log | gzip > *.gz</p> http://stackoverflow.com/questions/154332/how-can-i-use-mysqldump-to-replicate-views-between-accounts 0 How can I use mysqldump to replicate views between accounts? Adam Bellaire 2008-09-30T18:29:16Z 2009-11-17T19:24:56Z <p>I'm using <strong>mysqldump</strong> 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 includes a line like the following ...</p> <pre><code>/*!50013 DEFINER=`user_a`@`localhost` SQL SECURITY DEFINER */ </code></pre> <p>... when loading the dump into mysql on user_b we receive an error: </p> <pre><code>ERROR 1227 (42000) at line 657: Access denied; you need the SUPER privilege for this operation </code></pre> <p>Needless to say, I don't have SUPER privilege on this mysql instance. Is there a way to convince <strong>mysqldump</strong> to dump the views in a user-agnostic way? I can't find anything in the manual on this point. Do I have to actually parse the dumpfile to replace the usernames? Or am I missing something?</p> http://stackoverflow.com/questions/1745606/generated-mysql-ddl-fails-to-regenerate-database 0 Generated MySQL DDL fails to regenerate database stanlick 2009-11-16T23:39:04Z 2009-11-16T23:57:17Z <p>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:</p> <p>Script line: 28 Key column 'friendPrimaryKeyInYour Phone' doesn't exist in table</p> <p>running this statement:</p> <pre><code>/*!40101 SET character_set_client = utf8 */; CREATE TABLE `friend` ( `id` bigint(20) unsigned NOT NULL, `dependentId` bigint(20) unsigned NOT NULL, `friendPrimaryKeyInYourPhone` int(10) unsigned NOT NULL, `friendNameInYourPhone` varchar(45) NOT NULL, `date` datetime NOT NULL, PRIMARY KEY (`id`,`friendPrimaryKeyInYourPhone`) USING BTREE, UNIQUE KEY `idx_dependendentId_phonePk` (`dependentId`,`friendPrimaryKeyInYour Phone`), KEY `idx_phonePk` (`friendPrimaryKeyInYourPhone`), KEY `idx_dependentId` (`dependentId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; </code></pre> <p>Any idea how MySQL could generate this DDL and seconds later consider it invalid?</p> http://stackoverflow.com/questions/767295/mysqldump-passthru-returncodes 0 mysqldump passthru returncode's sanders 2009-04-20T07:51:03Z 2009-11-10T19:35:20Z <p>Hello,</p> <p>I am trying to do a mysql dump via php.</p> <p>This is the code </p> <pre><code>$backupFile = $table. "-". date("Y-m-d-H:i:s") . '.gz'; //Command nog aanpassen.... $command = "mysqldump --opt -h $dbhost -u $dbuser -p $dbpass $dbname | gzip &gt; $backupFile"; //$status = system($command); echo $backupFile ."&lt;br&gt;"; $status = passthru($command, $a); echo "output:" . $a; </code></pre> <p>The value of $a = 2. But I can't find what it means. I also can't find the backup file anywhere.</p> <p>Any idea's?</p> http://stackoverflow.com/questions/1695154/tool-to-copy-sql-server-2008-db-to-sql-server-2008-express 0 Tool to copy SQL Server 2008 db to SQL Server 2008 Express? DaveBurns 2009-11-08T02:29:26Z 2009-11-09T03:51:18Z <p>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 some constraints though: the source db is part of a live e-commerce site in shared hosting so I can't detach it and the hosting service wants me to pay $5 for each ad hoc back up I invoke.</p> <p>What I'd like is some tool that I can invoke ad hoc to take a snapshot (complete, not incremental) of the live db that I can then import in my local one. I've tried the SSMS 2008 Copy Database Wizard but it gives me an error saying I can't do that with Express. I tried the Generate Scripts tool and thought that was going to make it - the export to my local disk worked but when I went to import using SQLCMD (the script was 1GB so SSMS errored when I tried to open it there), it told me there was a syntax error a few thousand lines in. </p> <p>Coming from the MySQL world, this process is trivial. All I want is an analog of mysqldump and then a command-line way to import that file into a db. Surely there's an easy way to do this in the SQL Server world? This seems like the most basic use-case for developers.</p> <p>[ Yes, I've seen a few other questions here that seem similar but I didn't think they had the same constraints. ]</p> http://stackoverflow.com/questions/1658204/backing-up-views-with-mysql-dump 1 Backing Up Views with Mysql Dump Charles Faiga 2009-11-01T20:15:43Z 2009-11-01T20:34:13Z <p>Hi,</p> <p>I want to back up only the Views with mysqldump.</p> <p>Is this possible? </p> <p>If so, how?</p> http://stackoverflow.com/questions/489277/script-to-convert-mysql-dump-sql-file-into-format-that-can-be-imported-into-sqlit 2 script to convert mysql dump sql file into format that can be imported into sqlite3 db spudnik1979 2009-01-28T20:48:12Z 2009-10-29T21:06:14Z <p>hi,</p> <p>i have an export sql file containing tables and data from mysql and i want to import it into a sqlite 3 db.</p> <p>please can you tell me the best way?</p> <p>i get error reading file in via sqlite3 binary.</p> http://stackoverflow.com/questions/1573375/options-for-maintaining-mysql-databases-for-a-django-development-team 1 Options for maintaining MySQL databases for a django development team Ian Cohen 2009-10-15T16:07:46Z 2009-10-16T14:20:25Z <p>What are some options to avoid the latency of pointing local django development servers to a remote MySQL database? </p> <p>If developers use local MySQL databases to avoid the latency, what are some useful tools to sync schema updates of the remote db with the local db and avoid manually creating, downloading, and loading dumps? </p> <p>Thanks!</p> http://stackoverflow.com/questions/1437377/error-during-installing-dump 0 Error during installing dump. Max 2009-09-17T08:04:09Z 2009-10-15T22:42:31Z <p>I have the following dump:</p> <pre><code>CREATE TABLE `testdata`.`carer` ( `ID` bigint(20) NOT NULL auto_increment, `IS_DELETED` bit(1) default NULL, `name` varchar(255) default NULL, `account_id` bigint(20) NOT NULL, `patient_carer_id` bigint(20) NOT NULL, PRIMARY KEY (`ID`), KEY `FK5A0E781D4C45C51` (`patient_carer_id`), KEY `FK5A0E7818BCEF0FB` (`account_id`), CONSTRAINT `FK5A0E781D4C45C51` FOREIGN KEY (`patient_carer_id`) REFERENCES `patients` (`ID`), CONSTRAINT `FK5A0E7818BCEF0FB` FOREIGN KEY (`account_ID`) REFERENCES `account` (`ID`) ) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8 </code></pre> <p>but as result i see the following: ERROR 1061 (42000): Duplicate key name 'FK5A0E7818BCEF0FB'</p> <p>Yep, key's name and constrain's name are same. But with other key we haven't any problems. But if I'll change KEY <code>FK5A0E7818BCEF0FB</code> to <code>FK5A0E7818BCEF0FB1</code> , it will be working.</p> <p>for more information, dumps of two other tables:</p> <pre><code>CREATE TABLE `testdata`.`account` ( `ID` bigint(20) NOT NULL auto_increment, `IS_DELETED` bit(1) default NULL, `name` varchar(255) NOT NULL, `template` varchar(255) default NULL, `logoCache` bigint(20) default NULL, `suspended` bit(1) default NULL, `contactPerson` varchar(255) default NULL, `contactPersonPosition` varchar(255) default NULL, `clearLogo` bit(1) default NULL, `scheduling_settings_id` bigint(20) default NULL, `billing_id` bigint(20) default NULL, `settingsId` bigint(20) default NULL, `geocodingProvider_ID` bigint(20) default NULL, `mapProvider_ID` bigint(20) default NULL, `salesChannel_ID` bigint(20) default NULL, `available_time_id` bigint(20) default NULL, PRIMARY KEY (`ID`), UNIQUE KEY `scheduling_settings_id` (`scheduling_settings_id`), UNIQUE KEY `billing_id` (`billing_id`), UNIQUE KEY `settingsId` (`settingsId`), KEY `FKB9D38A2DBF9BE64A` (`mapProvider_ID`), KEY `FKB9D38A2D64C6436C` (`billing_id`), KEY `FKB9D38A2DBAC9B04B` (`geocodingProvider_ID`), KEY `FKB9D38A2D641A10EA` (`available_time_id`), KEY `FKB9D38A2D7D7F6D28` (`settingsId`), KEY `FKB9D38A2D44D2DE01` (`scheduling_settings_id`), KEY `FKB9D38A2D9A025321` (`salesChannel_ID`) ) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8 CREATE TABLE `testdata`.`patients` ( `ID` bigint(20) NOT NULL auto_increment, `IS_DELETED` bit(1) default NULL, `gpName` varchar(255) default NULL, `title` varchar(255) default NULL, `firstName` varchar(255) NOT NULL, `lastName` varchar(255) NOT NULL, `nhsNumber` varchar(255) NOT NULL, `sex` varchar(255) default NULL, `dateOfBirth` datetime default NULL, `weight` varchar(255) default NULL, `notificationMethod` varchar(255) default NULL, `ethnicity_id` bigint(20) default NULL, `mobilityCode_ID` bigint(20) default NULL, `homeLocation_ID` bigint(20) default NULL, `account_id` bigint(20) NOT NULL, `original_patient_id` bigint(20) default NULL, PRIMARY KEY (`ID`), KEY `FK49A9760E511FA9D3` (`ethnicity_id`), KEY `FK49A9760E8BCEF0FB` (`account_id`), KEY `FK49A9760EC7B193C1` (`mobilityCode_ID`), KEY `FK49A9760EC0EFD76E` (`homeLocation_ID`), KEY `FK49A9760ED05CD81` (`original_patient_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2434 DEFAULT CHARSET=utf8 </code></pre> http://stackoverflow.com/questions/1321276/best-database-engine-for-huge-datasets 2 Best database engine for huge datasets Mark 2009-08-24T09:12:24Z 2009-10-15T22:05:03Z <p>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? is PostgreSQL better in terms of performance? </p> <p>I only use basic SQL commands so speed is the only factor for me to choose a database</p> http://stackoverflow.com/questions/1568838/library-to-read-a-mysql-dump 1 Library to read a MySQL dump? Joseph Turian 2009-10-14T20:37:33Z 2009-10-15T00:16:51Z <p>I am looking for a library that will allow me to read a mysql dump.</p> <p>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 can parse the mysql dump format.</p> <p>I prefer a python library, but other scripting languages are okay.</p> http://stackoverflow.com/questions/1522976/how-to-write-the-mysql-binary-log-position-of-master-when-doing-a-mysqldump-from 1 How to write the Mysql binary log position of master when doing a mysqldump from slave? wbharding 2009-10-05T23:51:10Z 2009-10-13T14:22:58Z <p>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 of the master that corresponds with the data generated by the mysqldump.</p> <p>Doing this would allow us to restore our slave (or setup new slaves) without having to do a separate mysqldump on the main database where we grab the binary log position of the master. We would just take the data generated by the mysqldump, combine it with the binary log information we generated, and voila... be resynced.</p> <p>So far, my research has gotten me very CLOSE to being able to accomplish this goal, but I can't seem to figure out an automated way to pull it off. Here are the "almosts" I've uncovered:</p> <ul> <li>If we were running mysqldump from the main database, we could use the "--master-data" parameter with mysqldump to log the master's binary position along with the dump data (I presume this would probably also work if we started generating binary logs from our slave, but that seems like overkill for what we want to accomplish)</li> <li>If we wanted to do this in a non-automated way, we could log into the slave's database and run "STOP SLAVE SQL_THREAD;" followed by "SHOW SLAVE STATUS;" (<a href="http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html</a>). But this isn't going to do us any good unless we know in advance we want to back something up from the salve.</li> <li>If we had $500/year to blow, we could use the InnoDb hot backup plugin and just run our mysqldumps from the main DB. But we don't have that money, and I don't want to add any extra I/O on our main DB anyway.</li> </ul> <p>This seems like something common enough that somebody must have figured out before, hopefully that somebody is using Stack Overflow?</p> http://stackoverflow.com/questions/1525110/how-do-you-update-the-structure-of-an-entire-mysql-database 0 How do you update the structure of an entire MySQL database? scrumpyjack 2009-10-06T11:49:50Z 2009-10-06T11:59:48Z <p>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 it was at revision 1.</p> <p>because db 2 is in use, you don’t want to drop any tables, but you do need to update the structure of the entire db to the latest version of db 1.</p> <p>is there any method of doing this without having to manually go through and make all the same changes again and again (over many dbs at various versions) and without losing any of the data?</p> <p>i know data integrity is the problem, because some data may no longer be valid etc etc, but isn't there a way to override that?</p> <p>ideally i just want to be able to use the mysqldump of the structure of db 1 and overwrite any conflicting tables in db 2 with the new versions from db 1 without losing all the data. if there's any way to do this in phpmyadmin, that would be grand.</p> http://stackoverflow.com/questions/1513179/-single-transaction-lock-tables-options-of-mysqldump-what-happens-internally 0 --single-transaction --lock-tables options of mysqldump- what happens internally? Keshav 2009-10-03T08:22:44Z 2009-10-05T16:39:34Z <p>Hello,</p> <p>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 exclusive operations. Following are my questions regarding these options.</p> <p>a) Suppose I have chosen to use --lock-tables option. In this case the mysqldump acquires a read lock on all the tables. So any other process trying to write to the tables will go into a blocked (wait) state. But if the mysqldump takes a really long time, would the processes that are waiting continue to wait indefinitely?</p> <p>I tried this experiment for example- I have a Java (JDBC) program writing to a mysql database table called MY_TEST. I logged in to mysql console and issue "LOCK TABLES MY_TEST READ;" command manually. So the Java process got blocked waiting for the lock to get released. My question is would there be a connection time out or any such problem if the read lock does not get released for long time? I waited for two minutes and did not notice any error and the java process continued normally once the lock was released using "UNLOCK tables" command. Is this behavior specific to the java mysql driver or can I expect the same thing from a C program using mysql driver?</p> <p>b) My second question is on the --single-transaction option. Suppose I have 10 InnoDB tables, out of which 3 tables are related to each other (using FK) and the others being independent but still using InnoDB engine. Does single transaction apply only for the 3 tables which are inter-related using FK? or can I expect the state of the 7 independent tables to be exactly how it was when the 3 inter-dependent tables were dumped.</p> <p>Thanks!<br /> -Keshav</p> http://stackoverflow.com/questions/1519403/i-need-to-make-new-database-in-mysql-with-java 0 I need to make new database in mysql with Java newbie 2009-10-05T10:58:44Z 2009-10-05T11:23:22Z <p>How can I dump database schema to MySQL database with Java JDBC conncetor? I have my database schema in text file.</p> http://stackoverflow.com/questions/504475/problem-importing-mysql-procedures-generated-from-mysqldump-routines 1 Problem importing mysql procedures generated from mysqldump --routines Clayton 2009-02-02T19:09:58Z 2009-10-04T10:00:03Z <p>I use the mysqldump tool to make copies of my database. The problem is, when I use the --routines parameter to output my stored procedures along with my data, the generated output causes an error when I try to import it.</p> <p>It goes something like this:</p> <pre><code>% mysqldump --routines MyDB | mysql MyDB2 </code></pre> <p>(where MyDB2 already exists but is empty)</p> <p>The error I get is the following:</p> <pre><code>ERROR 1064 (42000) at line 307: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 23 </code></pre> <p>Everything works correctly if I omit the --routines.</p> <p>Has anyone else encountered this?</p> http://stackoverflow.com/questions/1489324/how-to-import-db-tables-from-mysqlhotcopy 0 How to import DB tables from mysqlhotcopy? Matt Huggins 2009-09-28T20:56:17Z 2009-09-28T20:59:06Z <p>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 these files into a specific folder on the 2nd system, or do I have to run mysqlhotcopy with another command line option to perform the import?</p> http://stackoverflow.com/questions/1486088/cron-fails-on-single-apostrophe 0 Cron fails on single apostrophe shantanuo 2009-09-28T09:05:01Z 2009-09-28T14:58:00Z <p>The following does work as expected:</p> <p>date +'%d-%b-%Y-%H-%M'</p> <p>28-Sep-2009-14-28</p> <p>But none of the following 4 entries from crontab are working.</p> <pre><code>* * * * * date +\'%d-%b-%Y-%H-%M\' &gt;&gt; /backup/shantanu/testing.txt * * * * * date +'%d-%b-%Y-%H-%M' &gt;&gt; /backup/shantanu/testing1.txt * * * * * date +"%d-%b-%Y-%H-%M" &gt;&gt; /backup/shantanu/testing2.txt * * * * * date +\"%d-%b-%Y-%H-%M\" &gt;&gt; /backup/shantanu/testing3.txt </code></pre> <p>Error: /bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /bin/sh: -c: line 1: syntax error: unexpected end of file</p> <p>I can save the same code in a shell script and set the cron, but I will like to know if it is possible to directly set a cron for the task.</p> <p>The actual cron entry that I am trying to set looks something like this...</p> <p>16 * * * * mysqldump myDB myTB > /backup/ABCbc$(date +'%d-%b-%Y-%H-%M').sql 2> /backup/ABCbc_errORS$(date +'%d-%b-%Y-%H-%M').txt</p> http://stackoverflow.com/questions/1292446/backup-mysql-database 2 Backup MySQL database TM 2009-08-18T08:02:22Z 2009-09-27T10:47:27Z <p>Hi,</p> <p>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:</p> <p>1) Does mysqldump block read and/or write operations to the database? Because in a live scenario, I would not want to block users from using the database while it is being backed up.</p> <p>2) It would be ideal for me to only backup the WHOLE database once in, say, a week, but in the intermediate days only one table needs to be backed up as the others won't change. Is there a way to achieve this?</p> <p>3) Is mysqlhotcopy a better alternative for these purposes?</p> <p>Thanks in advance, TM</p> http://stackoverflow.com/questions/1440019/mysqldump-results-in-lots-of-commented-lines-no-real-content 0 MySQLdump results in lots of commented lines, no real content Andrew Swift 2009-09-17T16:48:19Z 2009-09-17T17:06:51Z <p>I am trying to write a PHP program to automatically created backups of MySQL tables as sql files on the server:</p> <pre> $backup = "$path/$tablename.sql"; $table = "mydbname.mytablename"; exec( sprintf( '/usr/bin/mysqldump --host=%s --user=%s --password=%s %s --quick --lock-tables --add-drop-table > %s', $host, $user, $password, $table, $backup ) ); </pre> <p>All that I get in the resulting .sql file is this:</p> <pre> -- MySQL dump 10.10 -- -- Host: localhost Database: mydbname.mytablename -- ------------------------------------------------------ -- Server version 5.0.27 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; </pre> <p>It seems fishy that the results list Database:mydbname.mytablename.</p> <p>I don't know where to start looking. My host, in helping my set up the program initially, said I would need to deactivate safe_mode (was already done) and give access to the binary (I don't know what this means).</p> <p>Since the host takes two days to reply every time I ask a question, I'd like to resolve this myself if possible.</p> http://stackoverflow.com/questions/1421871/compress-a-mysqldump-that-is-sshd-to-another-machine 1 Compress a Mysqldump that is SSH'd to another machine neilc 2009-09-14T14:21:07Z 2009-09-14T17:17:20Z <p>I have the following:</p> <pre><code> mysqldump -u xxxx -h localhost --password=xxxxx databasename | ssh username@00.000.00.202 "dd of=httpdocs/backup`date +'%Y-%m-%d-%H-%M-%S'`.sql" </code></pre> <p>...which SSH's a mysqldump to a remote machine. </p> <p>I need to compress the mysqldump before it is SSH'd as the dump is 500mb and its eating up my bandwidth allowance. </p> http://stackoverflow.com/questions/1419586/mysqldump-and-tab-speed 0 mysqldump and --tab speed iceangel89 2009-09-14T03:42:10Z 2009-09-14T04:23:45Z <p>according to the MySQL Certification Guide, when --tab option is used, </p> <p>a SELECT ... INTO OUTFILE is used to generate a tab delimited file in the specified directory, a file containing SQL (CREATE TABLE) will also be generated</p> <p>and that</p> <p>using --tab to produce tab-delimited dump files is much faster</p> <p>but how can it be faster if both generate a SQL file and the --tab 1 has an extra tab delimited 1?</p> http://stackoverflow.com/questions/1410795/dump-my-database-with-ant 1 Dump my database with ant ? unknown (google) 2009-09-11T13:15:18Z 2009-09-11T13:33:03Z <p>Hi,<br /> I don't find any information about how to dump my database (mysql) with a ant task.<br /> maybe I must create my own ant task ?</p> <p>ANT script ===generate==> myDataBase.sql</p> http://stackoverflow.com/questions/1403237/migrating-mysql-to-a-table-with-different-structure 0 Migrating MySQL to a table with different structure Ruiwen 2009-09-10T03:35:50Z 2009-09-10T05:27:44Z <p>Hi all,</p> <p>My company's currently moving our databases around, shifting one set of tables out from the old MySQL instance into the new. We've done some development prior to this migration, and some tables' structure has been altered from the original (eg. columns were dropped). </p> <p>So currently I've dumped the data from the old database and am now attempting to reinsert them into the new table. Of course, the import borks when it tries to insert rows with more fields than the table has.</p> <p>What's the best way (preferably scriptable, because I foresee myself having to do this a few more times) to import only the fields I need into the new table?</p>