John,
Wednesday, October 23, 2002, 5:21:38 PM, you wrote:

JP> PHP starts to output the error "Too many references: cannot splice - error
JP> 144"

JP> When logging into mysql, I get:
JP> "Didn't find any fields in table IDRefs"
JP> started with -A, I get:
JP> "cannot open file: IDRefs.MYD (error: 144)"

$ perror 144
144 = Table is crashed and last repair failed

Your table is corrupted, try to repair it with REPAIR TABLE or
myisamchk:
          http://www.mysql.com/doc/en/Repair.html
          
JP> optimize table IDRefs;
JP> "Can't open file: 'IDRefs.MYD'. (errno: 13)"

JP> explain IDRefs;
JP> "ERROR 1016: Can't open file: 'IDRefs.MYD'. (errno: 13)"
JP> delete from IDRefs;
JP> "Query OK, 0 rows affected (0.02 sec)"
JP> explain IDRefs;
JP> OK
JP> etc
JP> (nothing in mysql.err)

MySQL server doesn't have permissions on that file ...

JP> I have changed the query to INSERT DELAYED in case too many clients are
JP> locking the table, should I change it back?

Did you install MySQL server from binary or from source?


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