Stuart Fox wrote:
> 
> Hi
> 
> Can anybody tell me what this error means
> 
> user@server#isamckh -av {database}/*.ISM
> 
> isamchk: error: 22 when opening ISAM-table '{database}/tax.ISM'(all
> tables)
> 
If this was part of a script, then database was a variable that
contained the full
path to the database, and ${database} would expand to its value.
The line would have been:

isamchk -av ${database}/*.ISM

There is no directory named {database}
Replace {database} with the full path to the database.
EX:

isamchk -av /usr/local/mysql/data/mydatabase/*.ISM

---------------------------------------------------------------------
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