tl,
Friday, September 20, 2002, 11:34:26 AM, you wrote:
t> |                                                          |
t>  CREATE TABLE `zinutes` (
t>   `hid` int(10) unsigned NOT NULL default '0',
t>   `tipas` int(10) unsigned NOT NULL default '0',
t>   `msg` text NOT NULL,
t>   `autorius` varchar(60) NOT NULL default '',
t>   `email` varchar(60) NOT NULL default '',
t>   `data` datetime NOT NULL default '0000-00-00 00:00:00',
t>   `host` varchar(60) NOT NULL default '',
t>   `id` int(10) unsigned NOT NULL auto_increment,
t>   PRIMARY KEY  (`id`),
t>   KEY `hid` (`hid`)
t> ) TYPE=ISAM PACK_KEYS=1 
t> |___________________________________________________________|

mysql> repair table zinutes;
t> 
+--------------+--------+----------+--------------------------------------------------------+
t> | Table        | Op     | Msg_type | Msg_text                                       
        |
t> 
+--------------+--------+----------+--------------------------------------------------------+
t> | alio.zinutes | repair | error    | The handler for the table doesn't support 
check/repair |
t> 
+--------------+--------+----------+--------------------------------------------------------+
t> 1 row in set (0.00 sec)

Use isamchk utility to repair ISAM tables. For more info run
    isamchk --help

BTW I suggest you to use MyISAM tables intead. ISAM is a
deprecated table type:
           http://www.mysql.com/doc/en/ISAM.html


-- 
For technical support contracts, goto https://order.mysql.com/?ref=ensita
This email is sponsored by Ensita.net http://www.ensita.net/
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Victoria Reznichenko
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.net
       <___/   www.mysql.com





---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to