MySQL Forums
Forum List  »  Backup

Re: mysqldump and mediawiki
Posted by: Joshua Whopper
Date: June 04, 2012 03:49PM

This is what I get. Everything seems ok.


mysql> SHOW CREATE TABLE category;
+----------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table |
+----------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| category | CREATE TABLE `category` (
`cat_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`cat_title` varchar(255) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL,
`cat_pages` int(11) NOT NULL DEFAULT '0',
`cat_subcats` int(11) NOT NULL DEFAULT '0',
`cat_files` int(11) NOT NULL DEFAULT '0',
`cat_hidden` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`cat_id`),
UNIQUE KEY `cat_title` (`cat_title`),
KEY `cat_pages` (`cat_pages`)
) ENGINE=InnoDB AUTO_INCREMENT=96 DEFAULT CHARSET=latin1 |
+----------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.05 sec)



mysql> CHECK TABLE category
-> ;
+-----------------+-------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+-----------------+-------+----------+----------+
| wikidb.category | check | status | OK |
+-----------------+-------+----------+----------+
1 row in set (0.02 sec)

mysql>

Options: ReplyQuote


Subject
Views
Written By
Posted
3932
May 21, 2012 02:12PM
1433
June 04, 2012 03:39PM
Re: mysqldump and mediawiki
1616
June 04, 2012 03:49PM
1738
June 04, 2012 04:03PM
1716
June 04, 2012 04:16PM
1665
June 30, 2012 04:23AM
1454
July 03, 2012 10:01AM
1366
July 03, 2012 11:52AM
1475
June 15, 2012 09:58AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.