active questions tagged mysql-management - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T07:03:51Zhttp://stackoverflow.com/feeds/tag/mysql-managementhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1874616/linux-mysql-memory-requirements1Linux Mysql Memory requirementsg85822009-12-09T15:23:40Z2009-12-12T13:44:50Z
<p>I have:</p>
<ul>
<li>32 bit - Red Hat Enterprise Linux Server release 5.1 (Tikanga)</li>
<li>Mysql 5</li>
<li>10G RAM</li>
</ul>
<p>What are the memory allocation limits with respect to mysql?
Maximum memory usage possible.
Any supporting documents from redhat site?</p>
http://stackoverflow.com/questions/1698750/best-gui-for-managing-mysql-5-11Best GUI for managing MySQL 5.1?Scott Mayfield2009-11-09T01:59:31Z2009-12-09T20:26:57Z
<p>What is the best GUI for managing MySQL 5.1 installation? Would like something as close to SQL Server's management tools as possible as that's where my experience is. The management client would need to run under Windows (XP, Vista (32 and 64-bit flavors), and 7 (32 and 64-bit flavors).</p>
http://stackoverflow.com/questions/1869833/re-runnable-mysql-upgrade-script0Re-runnable mysql upgrade scriptManish V2009-12-08T21:05:09Z2009-12-08T21:19:56Z
<p>Is there a way in mysql to write a re-runnable sql script?
I tried the : 'IF EXISTS' syntax but that only seems to work for stored procedures.
It doesn't seem the 'select if' syntax will do what I want.</p>
<p>Ideally I would like to do something like:</p>
<pre><code>IF NOT EXISTS (select * from table where name='Name') Then insert into table values('Name');
else select 'Name has already been inserted into table';
end if;
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1787868/migrating-wordpress-from-sub-domain-to-root0Migrating Wordpress from sub-domain to root.Jordan2009-11-24T04:52:26Z2009-11-24T19:36:08Z
<p>Hi.</p>
<p>I am about to start building a new site in Wordpress on the same domain as the old site. I need the old site to stay live until the new one is launched and I also need to develop online.</p>
<p>What is the best way to go about this? Should I create a subdomain or subfolder?</p>
<p>How would I go about migrating the Wordpress site & database from this testing area to the root on completion? </p>
<p>Thanks. </p>
http://stackoverflow.com/questions/1789290/drag-drop-mysql-web-form-builder0drag drop mysql web form buildershafi2009-11-24T10:50:45Z2009-11-24T11:07:17Z
<p>Hi,</p>
<p>I would like to have a tool with which I can easily develop(dragNdrop) front-end for mysql table and publish it to web. I am not sure whether I can try oracle forms, as my database is MySQL. Even if I can use Oracle forms to connect to MySQL, I would like to know any other third party tool which can do the job easily & quickly.</p>
<p>Thanks & Regards
`Shafi</p>
http://stackoverflow.com/questions/1768893/upload-95gb-csv-file-into-mysql-myisam-table-via-load-data-infile-csv-engine-an1Upload 95Gb csv file into MySQL MyISAM table via Load data infile: CSV engine an alternative?Jan2009-11-20T07:28:09Z2009-11-21T23:56:37Z
<p>Hi guys,</p>
<p>I'm trying to upload a 95Gb csv file into a MySQL database (MySQL 5.1.36) via the following command:</p>
<pre><code>CREATE TABLE MOD13Q1 (
rid INT UNSIGNED NOT NULL AUTO_INCREMENT,
gid MEDIUMINT(6) UNSIGNED NOT NULL ,
yr SMALLINT(4) UNSIGNED NOT NULL ,
dyyr SMALLINT(4) UNSIGNED NOT NULL ,
ndvi DECIMAL(7,4) NOT NULL comment 'NA value is 9',
reliability TINYINT(4) NOT NULL comment 'NA value is 9',
ndviquality1 TINYINT(1) NOT NULL ,
ndviquality2 TINYINT(1) NOT NULL ,
primary key (rid),
key(gid)
) ENGINE = MyISAM ;
LOAD DATA INFILE 'datafile.csv' INTO TABLE MOD13Q1 FIELDS TERMINATED by ',' LINES TERMINATED BY '\r\n'
IGNORE 1 LINES
(gid, yr, dyyr, ndvi, reliability,
ndviquality1, ndviquality2
) ;
</code></pre>
<p>I'm running this script via dos at the moment...but the database is not responding. It works for smaller .csv files (1.5Gb) fine. Would it work for this file size?</p>
<p>Do you have any recommendation on how to do this more efficiently/faster? Would engine = csv be an alternative (indexing not activated! -> so queries might run super slow?). </p>
<p>Thanks and cheers,
Jan</p>
http://stackoverflow.com/questions/1697305/large-mysql-innodb-database-slow-query-performance-disappearing-tables-and-l1large mysql (innodb) database - slow query performance, disappearing tables and long time to restore backupsRon2009-11-08T17:48:07Z2009-11-08T18:59:24Z
<p>I've a database with 3 of the tables having rows in excess of 20 million each. I've used GUIDs as primary keys (unfortunately). Now our database is about 20GB and growing 5GB per month.</p>
<p>It takes about 2 hrs to take full backup of the database, and 30hrs to restore on a box with 4GB RAM.</p>
<p>We once have all the tables from database disappeared. other mysql databases in same server were alright except one - for which only data was disappeared leaving empty tables.</p>
<p>A select query (among many slow queries) - which get max of a date column in one of 20m table takes about 5 mins to return result. This query used pretty frequently.</p>
<p>What I'm looking answers for</p>
<ol>
<li>recommended db design changes</li>
<li>ways to improved select query performance - max date column on 20m records</li>
<li>other queries' performance</li>
<li>how to go about handling future db growth</li>
</ol>
<p>Thanks all for your attention.</p>
http://stackoverflow.com/questions/1527069/how-to-structure-groups-within-a-website-admin-admin-powers-user-identity1How to structure groups within a website? (admin, admin powers, user identity)Doug2009-10-06T17:49:02Z2009-11-03T11:46:30Z
<p>I am going to be making a small user system but I have questions.</p>
<ol>
<li><p>If I were to make a registration table (mysql), what is wrong with just storing the password and username into the database without encryption?</p></li>
<li><p>I am trying to think of how to build the admin portion. Should I just check a column in the database to see if user is admin or not? If true, then admin page will be revealed. </p></li>
<li><p>For admin powers, let's say I have 3 powers: delete user, approve user, and move user. In a few scenarios, I may want to give some people only the ability to approve, or delete, or all, or any combination. How would I make this? I was thinking of having a column for each power and have the script check each column. Let's assume I have over 20 powers that will be added.</p></li>
<li><p>If I have a website where people can create groups and become admins of their groups and the these admins can give different combination of admin powers to people in their group (For ex, Zack creates and group called Mountain and grants one member the ability approve new group members and grants a second member the ability to delete members and assigns a third member the ability to delete and approve. How will I structure this in MySQL? Should I use a columns that say what group are they admin of and what ability do they have? E.g. columns: Delete, Approve, GroupMemberOf, GroupAdminOf and use checks.</p></li>
</ol>
<p>I have an idea but I want to learn the more sophisticated ways.</p>
<p><strong>Thanks for the answers so far, however, I am really looking for ideas on a structure ( Question 2 - 4 ).</strong> Please let me know if I can help clear up the question.</p>
http://stackoverflow.com/questions/1641221/how-do-i-use-macports-to-downgrade-a-dynamic-library0How do I use MacPorts to downgrade a dynamic library?Andrey Fedorov2009-10-29T01:55:11Z2009-10-29T03:17:29Z
<p>My py-mysql is farking because I've upgraded MySQL which replaced <code>libmysqlclient_r.15.dylib</code> with <code>libmysqlclient_r.16.dylib</code>. How do I find and get back the older version?</p>
<p>EDIT: I found that to intall an older version of MySQL, I need to do @, but I'm still looking for the way to find the older versions.</p>
http://stackoverflow.com/questions/1629403/what-are-your-experiences-regarding-performance-with-amazon-rds0What are your experiences regarding performance with amazon-rdsflybywire2009-10-27T08:24:45Z2009-10-27T09:24:21Z
<p>Did you try amazon-rds? How is it, performance-wise?</p>
http://stackoverflow.com/questions/1627383/cant-create-mysql-trigger-with-trigger-privilege-on-5-1-320Can't create MySQL trigger with TRIGGER privilege on 5.1.32Mike2009-10-26T21:14:20Z2009-10-27T03:44:12Z
<p>My fellow developers and I have our own development schemas on a shared MySQL development database. My assignment requires me to create triggers in my schema, yet I've been unsuccessful so far.</p>
<pre><code>CREATE TRIGGER myTrigger AFTER DELETE on myTable
FOR EACH ROW BEGIN
-- DO STUFF
END;
</code></pre>
<p>MySQL says:
ERROR 1419 (HY000): You do not have the SUPER privilege and binary logging is enabled (you <em>might</em> want to use the less safe log_bin_trust_function_creators variable)</p>
<p>I checked the MySQL manual (<a href="http://dev.mysql.com/doc/refman/5.1/en/privileges-provided.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.1/en/privileges-provided.html</a>):</p>
<blockquote>
<p>The TRIGGER privilege enables you to create and drop triggers. You must have this privilege for a table to create or drop triggers for that table. This privilege was added in MySQL 5.1.6. (Prior to MySQL 5.1.6, trigger operations required the SUPER privilege.) </p>
</blockquote>
<p>We are running "5.1.32-enterprise-gpl-advanced-log", so the TRIGGER privilege should be sufficient; however, the DBA granted me the TRIGGER privilege on <code>mySchema</code>.* and I can see it when I do SHOW GRANTS;, yet I still get this error about needing the "SUPER" privilege. We don't want to give all of the developers SUPER.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1533344/mysql-shell-client-read-only-access-or-safe-history-option0MySQL shell/client: Read-only access, or "safe history" option?Jim Dennis2009-10-07T18:25:40Z2009-10-07T18:33:14Z
<p>Yesterday I was working on a shell script to perform some moderately complex table insertions to a MySQL database. Naturally I was keeping a <code>mysql</code> client shell window open to for running <code>describe</code> commands, sample queries, and to remove my test rows between test cycles.</p>
<p>Yes this was on a live, production database.</p>
<p>At the point where I was done with my coding I asked a colleague to look over my work before running the script to process a batch entries. We went over everything, he agreed that it looked right to him, and I fired off the script. No problem.</p>
<p>Then I went back to my live shell, pulled up a line from the history, changed the <code>where</code> clause to look at the resulting insertions, and hit <strong>[Enter]</strong> ...</p>
<p>... unfortunately I hadn't looked at the whole command I was editing! It was a <code>delete</code> statement rather than a <code>select</code>.</p>
<p>Ooops.</p>
<p>Okay, so I know that I could have set up a different DBMS server, restored a dump of this DB to that and done all my testing thereon. We all know that this it would have been the safer and more disciplined. We also all know that sometimes it's more expedient to work on a live store. (In this case the risks are somewhat lower than you might expect ... the DB in question is used for batch processing and we were able to restore from a backup that was only 20 minutes old within 10 minutes of the <code>delete</code>).</p>
<p>However, this brings to mind a question: Is there some option (or some patch) to the <code>mysql</code> client shell that would it read-only? Is there some option to modify what it stores in its interactive history? (Something which would mark <code>delete</code> and <code>drop table</code> and similarly "dangerous" statements as "prompt for verification before re-executing?" Does the <code>mysql</code> client have something similar to the <code>bash</code> <code>HISTIGNORE</code> feature?</p>
<p>What is a safer way to do this sort of work (short of working on a totally separate developmental copy of the DB)?</p>
http://stackoverflow.com/questions/1499568/truncate-all-tables-most-of-which-have-constraints-how-to-temoprarily-drop-th0truncate all tables (most of which have constraints). How to temoprarily drop them Nore2009-09-30T17:30:35Z2009-09-30T17:41:21Z
<p>I have a development database (MYSQL) which I would like to load with fresh data at some point. I would like to delete the content of all tables.
What is the best way, as automated as possible, to delete the content of all tables (including those that have foreign key constraints). Is there a truncate all/ drop all equivalent constraints?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1493722/mysql-command-for-showing-current-configuration0mysql command for showing current configurationBrian G2009-09-29T16:49:03Z2009-09-29T16:53:13Z
<p>Can not find a command that displays the current configuration of mysql from within the database.</p>
<p>I know I could look at /etc/mysql/my.cnf but that is not what I need.</p>
http://stackoverflow.com/questions/126791/best-mysql-server-monitoring-tool6Best MySQL Server Monitoring ToolMichael Pliskin2008-09-24T12:22:13Z2009-09-01T08:02:25Z
<p>I'd like some opinions about the best mysql monitoring tool available. I've tried <a href="http://www.mysql.com/products/enterprise/advisors.html" rel="nofollow">MySQL Enterprise Monitor</a>, and it is great for me except it's impossible to get MySQL sell something (<em>see comments for details</em>) - I'm ok to pay even if I find the pricing and bundling it with MySQL Enterprise only unreasonable.</p>
<p>I am also looking at <a href="http://www.webyog.com/en/monyog_feature_list.php" rel="nofollow">MONyog MySQL Monitor</a> now, gonna give it a try soon. Just wanna get some expert advice/field experience.</p>
http://stackoverflow.com/questions/105776/how-do-i-restore-a-mysql-dump-file4How do I restore a MySQL .dump file?Zack Peterson2008-09-19T21:27:00Z2009-08-28T03:17:43Z
<p>I was given a .dump MySQL database file that I need to restore as a database on my Windows Server 2008 machine.</p>
<p>I tried using MySQL Administrator, but I got the following error:</p>
<blockquote>
<p>The selected file was generated by
mysqldump and cannot be restored by
this application.</p>
</blockquote>
<p>How do I get this working?</p>
http://stackoverflow.com/questions/1326817/finding-similar-sentences-in-mysql1finding similar sentences in mysqlEBAGHAKI2009-08-25T08:27:13Z2009-08-25T19:28:36Z
<p>according to <a href="http://stackoverflow.com/questions/577463/finding-how-similar-two-strings-are">http://stackoverflow.com/questions/577463/finding-how-similar-two-strings-are</a>
there are several methods to calculate the similarity measure between two strings.</p>
<p>Soundex is a very poor algorithm and it's currently available for mysql.
Is there any other method implementation available for mysql? </p>
http://stackoverflow.com/questions/332353/mysql-permissions-issue-should-be-non-issue3MySQL permissions issue - should be non-issuebradheintz2008-12-01T21:44:54Z2009-08-21T23:43:20Z
<p>This is making me kind of crazy: I did a mysqldump of a partitioned table on one server, moved the resulting SQL dump to another server, and attempted to run the insert. It fails, but I'm having difficulty figuring out why. Google and the MySQL forums and docs have not been much help.</p>
<p>The failing query looks like this (truncated for brevity and clarity, names changed to protect the innocent):</p>
<pre><code>CREATE TABLE `my_precious_table` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`somedata` varchar(20) NOT NULL,
`aTimeStamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`,`aTimeStamp`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='/opt/data/data2/data_foo/' INDEX DIRECTORY='/opt/data/data2/idx_foo/'
/*!50100 PARTITION BY RANGE (year(aTimeStamp)) SUBPARTITION BY HASH ( TO_DAYS(aTimeStamp))
(PARTITION p0 VALUES LESS THAN (2007) (SUBPARTITION foo0 DATA DIRECTORY = '/opt/data/data2/data_foo' INDEX DIRECTORY = '/opt/data/data2/idx_foo' ENGINE = MyISAM),
PARTITION p1 VALUES LESS THAN (2008) (SUBPARTITION foo1 DATA DIRECTORY = '/opt/data/data2/data_foo' INDEX DIRECTORY = '/opt/data/data2/idx_foo' ENGINE = MyISAM),
PARTITION p2 VALUES LESS THAN (2009) (SUBPARTITION foo2 DATA DIRECTORY = '/opt/data/data2/data_foo' INDEX DIRECTORY = '/opt/data/data2/idx_foo' ENGINE = MyISAM),
PARTITION p3 VALUES LESS THAN MAXVALUE (SUBPARTITION foo3 DATA DIRECTORY = '/opt/data/data2/data_foo' INDEX DIRECTORY = '/opt/data/data2/idx_foo' ENGINE = MyISAM)) */;
</code></pre>
<p>The error is:</p>
<blockquote>
<p>ERROR 1 (HY000): Can't create/write to file '/opt/data/data2/idx_foo/my_precious_table#P#p0#SP#foo0.MYI' (Errcode: 13)</p>
</blockquote>
<p>"Can't create/write to file" looked like a permissions issue to me, but permissions on the targeted folders look thus:</p>
<pre><code>drwxrwxrwx 2 mysql mysql 4096 Dec 1 16:24 data_foo
drwxrwxrwx 2 mysql mysql 4096 Dec 1 16:25 idx_foo
</code></pre>
<p>For kicks, I've tried chowning to root:root and myself. This did not fix the issue.</p>
<p>Source MySQL server is version 5.1.22-rc-log. Destination server is 5.1.29-rc-community. Both are running on recent CentOS installations.</p>
<p><strong>Edit:</strong> A little more research shows that Errcode 13 is, in fact, a permissions error. But how can I get that on <code>rwxrwxrwx</code>?</p>
<p><strong>Edit:</strong> Bill Karwin's excellent suggestion didn't pan out. I'm working as the root user, and have all privilege flags set.</p>
<p><strong>Edit:</strong> Creating the table WITHOUT specifying data directories for the individual partitions works - but I need to put these partitions on a larger disk than the one on which this MySQL instance puts tables by default. And I can't just specify the DATA/INDEX DIRECTORY at the table level - that's not legit in the version of MySQL I'm using (5.1.29-rc-community).</p>
<p><strong>Edit:</strong> Finally came across the answer, thanks to the MySQL mailing list and internal IT staff. See below.</p>
http://stackoverflow.com/questions/1265962/is-there-an-equivalent-of-redgate-sql-compare-for-mysql-databases4Is there an equivalent of Redgate SQL Compare for MySQL databases?Nic Rodgers2009-08-12T12:45:24Z2009-08-12T13:11:43Z
<p>Joel is always talking about how great <a href="http://www.red-gate.com/products/SQL%5FCompare/index.htm" rel="nofollow">SQL Compare from Redgate software</a> is. SQL Compare only works with Microsoft SQL Server databases, but is there a good piece of software that works with MySQL and the other common databases that are part of the LAMP stack (PostgreSQL, Oracle, etc)?</p>
http://stackoverflow.com/questions/955394/mysql-optimizing-a-table-with-137000-rows2MYSQL Optimizing a table with 137000 rowsChris M2009-06-05T11:21:49Z2009-08-01T10:35:16Z
<p>I'm trying to optimize a <a href="http://www.redmine.org" rel="nofollow">redmine</a> database before it gets too much of a pain; the Changes (basically a log of all the SVN Changes) is at 137000 rows (ish) and the table is set to the b asic default settings. No key packing etc.</p>
<p>The table is as follows</p>
<pre><code>ID int[11] Auto Inc (PK)
changeset_id int[11]
action varchar[1]
path varchar[255]
from_path varchar[255]
from_revision varchar[255]
revision varchar[255]
branch varchar[255]
</code></pre>
<p>Indices: Primary (ID), <br>
changeset_id set to INDEX BTREE</p>
<p>All on latin1 charset based on a bit of info from <a href="http://forge.mysql.com/wiki/Top10SQLPerformanceTips" rel="nofollow">http://forge.mysql.com/wiki/Top10SQLPerformanceTips</a></p>
<p>The Table Engine is InnoDB
Pack Keys is set to Default (only packs char varchar)</p>
<p>All the other options are turned off.</p>
<p><strong>Whats the best way to optimize this? (Bar Truncate ;o) )</strong></p>
http://stackoverflow.com/questions/1112069/is-there-a-faster-way-to-load-mysqldumps2Is there a faster way to load mysqldumps?Ben K.2009-07-10T21:26:19Z2009-07-12T23:16:24Z
<p><code>mysqldump</code> is reasonably fast, but dumps of a medium-sized database (20-30 megs) take several minutes to load using <code>mysql my_database < my_dump_file.sql</code></p>
<p>Are there some mysql settings I can tune to speed up the load? Is there a better way to load saved data?</p>
<p>I've experimented using the mysqlimport utility with CSV-based dumps. These load slightly--but not appreciably--faster. I'm tempted to just copy raw database files around, but that seems like a bad idea.</p>
http://stackoverflow.com/questions/1077480/moving-raw-mysql-data-files-to-a-different-directory1Moving Raw MYSQL Data Files to a Different DirectoryMesidin2009-07-03T01:43:28Z2009-07-03T12:43:39Z
<p>I have a directory only backup of a previous server that hosted multiple sites. I had access to a few .sql backups for our databases, but there were some that had not been backed up in that fashion. I located the .MYD,.frm, and .MYI files for the tables in my db in the var/lib/mysql/db_name directory. </p>
<p>I would like to know if there is a way to get the data from these files and move them into the new existing mysql installation? I tried copying the files from the db folder to a db folder with the exact same name, but I still get a "Can't find db_name/table_name.frm" error when trying to access any of the tables. They do show up in phpmyadmin table list, the error comes up when trying to access the tables.</p>
<p>Is this possible? If so, how do I go about taking these table files and turning them into use-able data?</p>
<p>I am sorry if my question or explanation doesn't make any sense. This is part of an ongoing 11+ hour emergency server recovery project that got sprung on me today, so my brain is fried. I will answer any questions necessary.</p>
http://stackoverflow.com/questions/1014724/mysql-permission-errors-with-load-data0Mysql permission errors with 'load data'thaiyoshi2009-06-18T19:30:32Z2009-06-18T19:42:36Z
<p>I am running into a permission error when trying to load data from a flat file database dump into a new table. I know that the schema of the file and my table is the same and I tried tweaking the permissions. What else should I try?</p>
<pre><code>mysql> load data infile 'myfile.txt' into table mytable fields terminated by ',' enclosed by '"';
ERROR 1045 (28000): Access denied for user 'user'@'%'
grant all on mytable.* to 'user'@'%
</code></pre>
http://stackoverflow.com/questions/938047/how-to-make-mysql-accept-connections-externally0How to make mysql accept connections externallyTam2009-06-02T05:46:23Z2009-06-02T08:49:28Z
<p>Hello,</p>
<p>I have a VPS and I want to make mysql DB accept connection externally (from my PC for instance). I have Debian Linux installed on the server. I checked some tutorials online and they said to comment out: </p>
<pre><code>bind-address = 127.0.0.1
</code></pre>
<p>But this didn't seem to help! is there anything specific for VPSs? or Am I missing something else? The command that runs mysql is:</p>
<pre><code>/usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-external-locking --port=3306 --socket=/var/run/mysqld/mysqld.sock
</code></pre>
<p>Thanks,</p>
<p>Tam</p>
http://stackoverflow.com/questions/917815/mysql-c-how-do-i-make-a-list-of-a-list0MySQL c++ how do I make a list of a list?Nick Cordova-Dee2009-05-27T20:17:15Z2009-05-27T20:17:15Z
<p>I am trying to build a table that has a value that is actually a second table and that table also has a value that is actually a third table. My end result needs to be representative of a C++ object that has an array of objects as one of its data types. I have thought using the value for the next layer object in MySQL as a reference to another table but this would make the number of tables grow exponential. my program could handle the large number of tables as long as I don't reach the max number of tables for MySQL but I don't know this value either. So My question is either how do I make a table that contains a table that contains a table or what is the max number of tables both for MySQL?</p>
http://stackoverflow.com/questions/39536/how-to-download-a-live-mysql-db-into-a-local-test-db-on-demand-without-ssh3How to download a live MySQL db into a local test db on demand, without SSH?Charles Roper2008-09-02T13:42:16Z2009-05-20T06:36:26Z
<p>I have a fairly small MySQL database (a Textpattern install) on a server that I do not have SSH access to (I have FTP access only). I need to regularly download the live database to my local dev server on demand; i.e., I would like to either run a script and/or have a cron job running. What are some good ways of doing this?</p>
<p>Some points to note:</p>
<ul>
<li>Live server is running Linux, Apache 2.2, PHP 5.2 and MySQL 4.1</li>
<li>Local server is running the same (so using PHP is an option), but the OS is Windows</li>
<li>Local server has Ruby on it (so using Ruby is a valid option)</li>
<li>The live MySQL db <em>can</em> accept remote connections from different IPs</li>
<li>I cannot enable replication on the remote server</li>
</ul>
<p><strong><em>Update:</em></strong> I've accepted BlaM's answer; it is beautifully simple. Can't believe I didn't think of that. There was one problem, though: I wanted to automate the process, but the proposed solution prompts the user for a password. Here is a slightly modified version of the mysqldump command that passes in the password:</p>
<p><code>mysqldump -u USER --password=MYPASSWORD DATABASE_TO_DUMP -h HOST > backup.sql</code></p>
http://stackoverflow.com/questions/885859/comparing-data-from-mysql-backups0comparing data from mysql backupspedalpete2009-05-20T02:08:33Z2009-05-20T03:43:37Z
<p>I've got a few backups of my database, and I'm trying to figure out if there is a way to compare the data in the backups to see how the data as changed over time.
I do not have a timestamp on the fields I want to compare, but I do have a unique id on the row. The backups are .sql files created by using mysqldump. </p>
<p>Is there a process for doing this?</p>
http://stackoverflow.com/questions/36353/what-are-the-alternatives-to-using-phpmyadmin4What are the alternatives to using phpMyAdmin?different2008-08-30T21:25:44Z2009-05-11T21:38:12Z
<p>I've used phpMyAdmin for a while now - it gets the job done but it is very clunky and outdated, and has many features that I don't need. I'm looking for either a web based or (preferably) an OS X native alternative that is easy to use and isn't heavy on features.</p>
<p>Is there any programs out there that fit the bill?</p>
http://stackoverflow.com/questions/823059/mysql-query-browser-edit-button-disabled0mysql query browser edit button disabledcellis2009-05-05T02:31:57Z2009-05-05T02:33:40Z
<p>Has anyone had this problem? I deleted a column in the table editor and then went back to MySql Query Browser but the edit button was disabled. Can't seem to figure it out and I hate MySql's forum format so i decided to ask here. Any help is greatly appreciated!</p>
http://stackoverflow.com/questions/447470/rather-difficult-mysql-problem1Rather difficult mySQL problem ...titel2009-01-15T16:31:29Z2009-01-15T16:34:55Z
<p>Hello there,</p>
<p>A friend of mine is having an problem with an big mySQL database and quite a big number of repeating columns over multiple tables.</p>
<p>To describe the problem better, the database serves multiple services like FTP, Postfix, webmail, pretty much all the common services you would be running on a general use Linux server and all of these services are using this database. The problem is that most of the services don't know how to read from multiple tables, so if you use multiple tables entries like username, pasword, switches must be repeated in those service specific tables.
hing
Ex. UserProfile Table conains all user relevant data. (Username, Password)
ACL Table Contains Access related data (AccountEnabled, FTPEnabled, AccessType)
FTP Table contains FTP related data (Quota, directories etc)
I think you get the picture...
So if i need the ftp service I must read the UserProfile Table, The ACL Table and the FTP Table, but since I can't read from multiple tables, I only read the ftp table where I've duplicate the fields I need such as UserName, Password and FTPEnabled. </p>
<p>Now they are trying to create an application to administer all these services, you can imagine that this has been done by hand till now, and the server is serving more than a few hundred users. So, now they are trying to create a administrative interface that manages all those tables. The problem is that 30% of the that must be written is duplicate data.
Ex. Username and Password must be written 6 times in different Tables.</p>
<p>Is there a possibility to create a Table with "Symlink" or something similar?
So that you have all the data in one Temp Table that is accessible to all services and dynamically updated. Or is there any other "smart" way, you can think of, to make all of this easier?</p>
<p>Thank you in advance for your time,
titel</p>