Re: Can't open file error number 24

2010-01-10 Thread Dan Nelson
In the last episode (Jan 11), Sathish said: > We have been using MYSQL in our dedicated server for long time without > problem, Suddenly we noticed an error stating " Can't open file error > number 24". > > When we rebooted the machine , MYSQL started working aga

RE: Can't open file error number 24

2010-01-10 Thread Neil Aggarwal
> problem, Suddenly we noticed an error stating " Can't open file error > number 24". If I recall correctly, error 24 means the disk partition is full. Neil -- Neil Aggarwal, (281)846-8957, http://UnmeteredVPS.net MySQL pre-installed on a virtual private server

Can't open file error number 24

2010-01-10 Thread Sathish
Hi, We have been using MYSQL in our dedicated server for long time without problem, Suddenly we noticed an error stating " Can't open file error number 24". When we rebooted the machine , MYSQL started working again fine. We have to fix this problem not to happen again, We h

Re: Can't open file: 'my_table.MYI': Could be the reason of a server reboot?

2006-08-08 Thread Michael Loftis
sqld: Can't open file: 'my_table.MYI' (errno: 145) 060808 1:27:39 [ERROR] /usr/sbin/mysqld: Can't open file: 'my_table.MYI' (errno: 145) 060808 1:27:39 [ERROR] /usr/sbin/mysqld: Can't open file: 'my_table.MYI' (errno: 145) 060808 1:27:39 [ERROR] /usr/

Re: Can't open file: 'my_table.MYI': Could be the reason of a server reboot?

2006-08-08 Thread chris smith
On 8/8/06, thomas Armstrong <[EMAIL PROTECTED]> wrote: Hi. My Linux server has just restarted due to memory problems. Browsing mySQL logs, I've found out 5,000 lines like these in less than one hour: -- 060808 1:27:39 [ERROR] /usr/sbin/mysqld: Can't open fil

Can't open file: 'my_table.MYI': Could be the reason of a server reboot?

2006-08-08 Thread thomas Armstrong
Hi. My Linux server has just restarted due to memory problems. Browsing mySQL logs, I've found out 5,000 lines like these in less than one hour: -- 060808 1:27:39 [ERROR] /usr/sbin/mysqld: Can't open file: 'my_table.MYI' (errno: 145) 060808 1:27:39 [ERROR] /us

Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread murthy gandikota
Hi Micheal Thanks for your suggestions. I use mysqldump to restore the DB's. Apparently mysqldump doesn't create forward declarations for views. So I had to manually feed the views in correct order to avoid errors. Also to import the DB sfg into sfgnew I had to substitute all of the `sfg` patt

Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread Michael Stassen
murthy gandikota wrote: > Here are some pertinent facts: > a) stopped mysqld > b) copied files from sfg to sfgnew in the var directory > c) set the permissions to 777 (read, write, execute) for all the files in sfgnew > d) restarted mysqld Dan Buettner wrote: > Murthy, do you have

Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread Dan Buettner
Murthy, if you want to dump database A and restore into database B, it's basically a 3-step process. You have to first create B, then dump A, then pipe the dump of A into B. Using the --no-data option with mysqldump will dump only structure, no data. something like this: mysql -u root -psec

Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread Paul DuBois
At 6:14 -0700 6/14/06, murthy gandikota wrote: I'm getting the following error ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1) This is the output from mysqld 060613 19:59:34 InnoDB error: Cannot find table sfgnew/agent from the internal data

Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread murthy gandikota
*mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006 8:12 AM To: murthy gandikota Cc: mysql@lists.mysql.com Subject: Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1) Murthy, doing some quick reading on InnoDB table definitions, it appears that MySQL itself keeps s

Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread murthy gandikota
ing similar to recreate your tables and move them. HTH. -phpninja -Original Message- From: Dan Buettner [*mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006 8:12 AM To: murthy gandikota Cc: mysql@lists.mysql.com Subject: Re: ERROR 1016 (HY000): Can't open file: 'agent

Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread phpninja
murthy gandikota Cc: mysql@lists.mysql.com Subject: Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1) Murthy, doing some quick reading on InnoDB table definitions, it appears that MySQL itself keeps some info in the .frm file, while InnoDB keeps some info within the table

Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread Dan Buettner
u don't have execute permission for the mysql user on that dir, MySQL can't list the contents ... Dan murthy gandikota wrote: I'm getting the following error ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1) This is the output from mysqld 060613 19:59:34

Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread murthy gandikota
(777 works, or 775/770 if > owned by mysql user) on your new directory ('sfgnew')? If you don't > have execute permission for the mysql user on that dir, MySQL can't > list > the contents ... > > Dan > > murthy gandikota wrote: > > > >

Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread Dan Buettner
rote: > > I'm getting the following error > ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1) > > This is the output from mysqld > > 060613 19:59:34 InnoDB error: > Cannot find table sfgnew/agent from the

Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread murthy gandikota
(777 works, or 775/770 if owned by mysql user) on your new directory ('sfgnew')? If you don't have execute permission for the mysql user on that dir, MySQL can't list the contents ... Dan murthy gandikota wrote: > > I'm getting the following error > ER

Re: ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread Dan Buettner
tting the following error ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1) This is the output from mysqld 060613 19:59:34 InnoDB error: Cannot find table sfgnew/agent from the internal data dictionary of InnoDB though the .frm file for the table exists. May

ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1)

2006-06-14 Thread murthy gandikota
I'm getting the following error ERROR 1016 (HY000): Can't open file: 'agent.ibd' (errno: 1) This is the output from mysqld 060613 19:59:34 InnoDB error: Cannot find table sfgnew/agent from the internal data dictionary of InnoDB though the .frm file for the

Re: 4.0.20 -> 4.1.9 Can't open file: 'Autor.ibd'

2005-01-21 Thread Marten Lehmann
Hello, I hope that you have not destroyed the ibdata file. The tables are there. Did you edit the my.cnf in the upgrade? What does mysqld print to the .err log? when we changed from 4.0.20 to 4.1.9 we moved to a new server and copied only the database directories, but no error-logs or ibdata fil

Re: 4.0.20 -> 4.1.9 Can't open file: 'Autor.ibd'

2005-01-20 Thread Heikki Tuuri
Marten, - Original Message - From: "Marten Lehmann" <[EMAIL PROTECTED]> Newsgroups: mailing.database.myodbc Sent: Thursday, January 20, 2005 5:47 PM Subject: 4.0.20 -> 4.1.9 Can't open file: 'Autor.ibd' Hello, some weeks ago we switched from mysql 4.

4.0.20 -> 4.1.9 Can't open file: 'Autor.ibd'

2005-01-20 Thread Marten Lehmann
Hello, some weeks ago we switched from mysql 4.0.20 to 4.18 and later to 4.1.9. A customer now told us, that he can't access his old InnoDB-tables. He gets #1016 - Can't open file: 'Autor.ibd' (errno: 1) if he tries to access the table "Autor". This happens to oth

Re: Problem with Merge Table,"ERROR 1016: Can't open file: '#sql-407f_f.MRG'. (errno: 144)"

2004-06-10 Thread cristi
yes mr egor -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Problem with Merge Table,"ERROR 1016: Can't open file: '#sql-407f_f.MRG'. (errno: 144)"

2004-06-10 Thread Egor Egorov
Michael Arndt <[EMAIL PROTECTED]> wrote: > a) what could be reason /solution for the following Problem: > > ERROR 1016: Can't open file: '#sql-407f_f.MRG'. (errno: 144) [EMAIL PROTECTED] egor]$ perror 144 Error code 144: Unknown error 144 144 = Table is cras

Problem with Merge Table,"ERROR 1016: Can't open file: '#sql-407f_f.MRG'. (errno: 144)"

2004-06-09 Thread Michael Arndt
Hello *, a) what could be reason /solution for the following Problem: ERROR 1016: Can't open file: '#sql-407f_f.MRG'. (errno: 144) b) in which directory the below reported intermediate file should be generated mysql> use syslog Database changed mysql> AL

Error: 1016 Can't open file: 'tablename.MYI.

2003-10-24 Thread Marius Røstad
Hello! I get this error from my MySQL-database: Error: 1016 Can't open file: 'tablename.MYI. (errno: 145). I know what to do to fix this, but I need to know what causes this error. If anyone know, please respond. Best regards

Re: full disk: ERROR 1016: Can't open file

2003-06-26 Thread gerald_clark
t;describe my_table" and I get: ERROR 1016: Can't open file: 'my_table.MYD'. (errno: 145). I freed up some space under /var but I still recieve the above messages. Does this mean that my table has been corrupted? Is there any wa

full disk: ERROR 1016: Can't open file

2003-06-26 Thread Vikas Gupta
Hello all, My /var partition has become full, and now when I try load my db (the files are in /var/lib/mysql/db/) I get the following message for the table "my_table": use db; Didn't find any fields in table 'my_table' I then do "describe my_table" and

Re: Can't open file

2002-06-05 Thread Victoria Reznichenko
1016: Can't open file: 'action.MYD'. (errno: 145). LQq> The record in this table is temporary, after I delete all record from action. Everything is seem to ok. But it will repeat same problem soon. LQq> How can I fix it? $ perror 145 Error code 145: Unknown error 145 145

Re: Can't open file

2002-06-04 Thread Sammy Lau
essage when I try to use the table in a >query: > > mysql> select * from action; > error 1016: Can't open file: 'action.MYD'. (errno: 145). > > The record in this table is temporary, after I delete all record from action. >Everything is seem to ok.

Can't open file

2002-06-04 Thread Liu Qianghua-qch1942
Hi, everyone, I am making use of mySQL to provide my client a solution. However, one of tables often crash and produces the folloing error message when I try to use the table in a query: mysql> select * from action; error 1016: Can't open file: 'action.MYD'. (errno: 145).

Can't open file: 'netgroup.MYD'. (errno: 144)

2001-01-31 Thread mills
I'm running a simple master/slave configuration with mysql-3.23.29-gamma under Solaris 2.6. Sometime last night, one of the tables disappeared on the slave. I got thousands of errors like this: Can't open file: 'netgroup.MYD'. (errno: 144) I fixed it with `drop

Replication Problem - Error 1016 - can't open file:

2001-01-23 Thread hi2 mysql
mirror-ed DB at our end. We were successful in mirroring our tables initially using LOAD TABLE FROM MASTER. But some of the tables on Slave server have very short life. They presumabely die, giving this sort of Error : Error 1016: Can't open file: 'ftp_customer.MYD'. This al