Difference between revisions of "SQL"
(→Database procedures: MediaWiki SQL queries) |
m (→Fixing crashed tables) |
||
Line 15: | Line 15: | ||
To fix a crashed table just use '''repair TABLENAME''' from the MySQL command line, or to automatically scan all tables and fix them run the following from the shell. | To fix a crashed table just use '''repair TABLENAME''' from the MySQL command line, or to automatically scan all tables and fix them run the following from the shell. | ||
<source lang="bash"> | <source lang="bash"> | ||
− | mysqlcheck --auto-repair DBNAME -u USER -p | + | mysqlcheck -vvvv --auto-repair DBNAME -u USER -p |
</source> | </source> | ||
Latest revision as of 00:35, 23 September 2019
SQL (Structured Query Language) is a computer language used to create, retrieve, update and delete data from relational database management systems. SQL has been standardised by both ANSI and ISO.
SQL is commonly spoken either as the names of the letters ess-cue-el, or like the word sequel. The official pronunciation of SQL according to ANSI is ess-cue-el. However, each of the major database products (or projects) containing the letters SQL has its own convention: MySQL is officially and commonly pronounced "My Ess Cue El"; PostgreSQL is expediently pronounced postgres (being the name of the predecessor to PostgreSQL); and Microsoft SQL Server is commonly spoken as Microsoft-sequel-server. See MediaWikiLite for information about SQLite support in MediaWiki, or MSSQL for information about Microsoft SQL Server support. We're now using MariaDB for our SQL server which is a drop-in replacement for MySQL but is fully open source and more efficient too.
Contents
Backup & restore
See backup for details about this as it's doesn't outside the SQL environment so doesn't belong in this article. But don't forget to set the default character set to the same as the dump used when you import the data!
To restore only a single database from a full dump use the following:
mysql -D DBNAME -o DBNAME < dump.sql
Fixing crashed tables
To fix a crashed table just use repair TABLENAME from the MySQL command line, or to automatically scan all tables and fix them run the following from the shell.
mysqlcheck -vvvv --auto-repair DBNAME -u USER -p
Database procedures
- MediaWiki SQL queries
- Reset MySQL root password
- Renaming MySQL tables and databases
- Rename a MediaWiki database
- Reset a wiki user password
- Set a user preference
- Manually backup a wiki
- Add a wiki database
Character sets
See also
- MariaDB
- Good thread on table lock problems and solutions
- SQL Tutorial - A nice tutorial on SQL
- Official MySQL Documentation
- W3C SQL Tutorial (QuickRef)
- Introduction to SQL joins
- List of common differences between MySQL and MSSQL
- HeidiSQL - see and edit data and structures from MariaDB, MySQL, Microsoft SQL or PostgreSQL databases
- We can do better than SQL