Difference between revisions of "MySQL"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(tidied up by moving stuff to subpages)
(6 intermediate revisions by the same user not shown)
Line 10: Line 10:
 
The MySQL package (at least in Linux) has a number of helper utilities available, including [[MySQL Workbench]] (a combination of the former [[MySQL Administrator]] and [[MySQL Query Browser]] applications).
 
The MySQL package (at least in Linux) has a number of helper utilities available, including [[MySQL Workbench]] (a combination of the former [[MySQL Administrator]] and [[MySQL Query Browser]] applications).
 
==Articles==
 
==Articles==
 +
* '''SQL Syntax''':
 +
** [[/GROUP_CONCAT]]
 +
** [[/INSERT]]
 +
* '''Versions''': stuff particular to specific versions
 +
** [[/version/5.7]]
 
* '''Related'''
 
* '''Related'''
 
** [[MS Access and MySQL]]
 
** [[MS Access and MySQL]]
 
* '''How-To''':
 
* '''How-To''':
** [[backing up MySQL data]]
+
** [[/porting/data]]: backing up and restoring
** [[MySQL notes]]: any loose notes not ready to be an article yet
+
** [[/notes]]: disorganized information, mostly how-to
 
* '''Components''':
 
* '''Components''':
 
** [[MySQL Administrator]]
 
** [[MySQL Administrator]]
** [[MySQL Query Browser]]
+
** [[MySQL Query Browser]] - now replaced with Workbench
* [[/notes]]: disorganized information
+
** [[MySQL Workbench]]
 
* [[/archive]]: older stuff that probably is no longer applicable
 
* [[/archive]]: older stuff that probably is no longer applicable
 +
 
==Links==
 
==Links==
 
===Reference===
 
===Reference===
Line 26: Line 32:
 
** [http://dev.mysql.com/doc/refman/4.1/en/ Version 4.1 Manual]
 
** [http://dev.mysql.com/doc/refman/4.1/en/ Version 4.1 Manual]
 
* {{wikipedia}}
 
* {{wikipedia}}
* [http://hashmysql.org/ HashMySQL wiki]: official wiki of the unofficial-but-[http://dev.mysql.com/doc/refman/5.1/en/irc.html sanctioned] #mysql [[IRC]] channel on [[Freenode]]
+
* [http://hashmysql.org/ HashMySQL wiki]: official wiki of the unofficial-but-[http://dev.mysql.com/doc/refman/5.1/en/irc.html sanctioned] #mysql [[IRC]] channel on [[freenode]]
 +
 
 
===How To===
 
===How To===
 +
* '''repair munged tables'''
 +
** [https://dev.mysql.com/doc/refman/5.5/en/mysqlcheck.html 4.5.3 mysqlcheck — A Table Maintenance Program]
 
* '''data recovery'''
 
* '''data recovery'''
 
** [http://dev.mysql.com/doc/refman/5.5/en/backup-and-recovery.html Chapter 7. Backup and Recovery]
 
** [http://dev.mysql.com/doc/refman/5.5/en/backup-and-recovery.html Chapter 7. Backup and Recovery]
 
** [http://egil.biz/how-to-recover-mysql-data-from-innodb/ How to recover MySQL data from Innodb?] - if you have a copy of /var/www/lib/mysql but MySQL can't see the data
 
** [http://egil.biz/how-to-recover-mysql-data-from-innodb/ How to recover MySQL data from Innodb?] - if you have a copy of /var/www/lib/mysql but MySQL can't see the data
 
*** The important thing to remember is that not all of the data is in the *.fr? files.
 
*** The important thing to remember is that not all of the data is in the *.fr? files.
 +
 
===News===
 
===News===
 +
* '''2016-05-13''' [https://medium.com/@adamhooper/in-mysql-never-use-utf8-use-utf8mb4-11761243e434 In MySQL, never use "utf8". Use "utf8mb4".]
 
* '''2007-06-21''' [http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9025427&pageNumber=1 MySQL's architect discusses open source, database in a cloud, other IT issues]
 
* '''2007-06-21''' [http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9025427&pageNumber=1 MySQL's architect discusses open source, database in a cloud, other IT issues]

Revision as of 16:37, 19 May 2021

About

MySQL is a FOSS database engine and server. It fills roughly the same niche as Microsoft SQL Server.

The MySQL package (at least in Linux) has a number of helper utilities available, including MySQL Workbench (a combination of the former MySQL Administrator and MySQL Query Browser applications).

Articles

Links

Reference

How To

News