Rodica Rosu Fridez wrote:
Bonjour,
Parlez vous anglais? Mon francais, est plutot limite.
Nous avons rencontré ce message d'erreur lorsqe l'on veut accéser notre plateforme e-commerce www.styltech.ch
La personne qui administrait le site ne travaille plus chez nous. J'ai trouvé la documentation qui nous conseille:
1016 - Can't open file '<database table name>.MYI' (errno: 145)
Yes, your table is marked as having crashed, and you need to repair it
(by one of the following methods)
To find out, type:
perror 145
in the command line
Now to fix it, try:
check table database_table_name;
in the mysql prompt. Then you can do repair table database_table_name;
You can also use the myisamchk command - read more about it at
http://dev.mysql.com/doc/refman/5.0/en/myisamchk.html
Hope this helps!
The error message will always be shown until the database table involved has
been
repaired.
The following methods are available to repair damaged database tables,
depending on
whether the database server is still running or not:
1. Using the "repair table" SQL statement
2. Using the "myisamchk" command
The <database table name> part in the commands below must be replaced with the
actual
database table name as shown in the error message.
1. Using the "repair table" SQL statement
The following SQL statement can be executed when the database server is
still running:
repair table <database table name>;
2. Using the "myisamchk" command
The following command, which is part of the MySQL installation, can be
executed on the server when the database server is no longer running:
myisamchk /path/to/database/directory/<database table name>.MYI
Dans quel fichier devrais-je intervenir?
--
Colin Charles, Community Engineer
MySQL AB, Melbourne, Australia, www.mysql.com
Mobile: +614 12 593 292 / Skype: colincharles
Web: http://www.bytebot.net/blog/
MySQL Forge: http://forge.mysql.com/
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]