Re: ERROR 1146 (42S02): Table 'ois.metadata' doesn't exist

2012-03-15 Thread Adarsh Sharma
Thanks Andrew , I got my schema back :-) . But Is it possible to get back all procedures that are created on these tables. Thanks once again. Andrew Moore wrote: You should be able to get the table structure again using the frm files http://www.mysqlperformanceblog.com/2008/12/17/recovering

Re: ERROR 1146 (42S02): Table 'ois.metadata' doesn't exist

2012-03-15 Thread Adarsh Sharma
Thanks baron , below are the contents of my error.log :- 120315 17:17:51 [Note] Plugin 'FEDERATED' is disabled. 120315 17:17:51 InnoDB: Initializing buffer pool, size = 8.0M 120315 17:17:51 InnoDB: Completed initialization of buffer pool InnoDB: The user has set SRV_FORCE_NO_LOG_REDO on InnoDB

Re: ERROR 1146 (42S02): Table 'ois.metadata' doesn't exist

2012-03-15 Thread Baron Schwartz
It sounds like InnoDB itself might have failed to start, but there is not enough information to know for sure. Please check the server's error log. On Thu, Mar 15, 2012 at 2:01 AM, Adarsh Sharma wrote: > Dear All, > > Is there any way to recover data or only schema of corrupted innodb > tables.My

Re: ERROR 1146 (42S02): Table doesn't exist

2012-01-24 Thread Johan De Meersman
- Original Message - > From: "Adarsh Sharma" > > 1. Go to data dir : cd /hdd2-1/mysql_data/ > 2. mv abc abc1 Whatever gave you the idea that it's a good plan to start messing with the files of a service whose inner workings you have no clue about? > ERROR 1146 (42S02): Table 'abc1.job_

Re: error 1146 X.1 does not exist

2006-02-02 Thread Gleb Paharenko
Hello. MySQL CC is not supported now, and could have some problems with a fresh versions of MySQL. If error doesn't appear in latest MySQL Administrator then everything is ok. > [local] ERROR 1146: Table 'llcopy.1' doesn't exist Have a look here: http://dev.mysql.com/doc/refman/5.0/en/cannot-f

RE: error 1146 X.1 does not exist

2006-02-02 Thread Kerry Frater
I have seen the problem with the INSERT syntax. The new version doesn't like the use of "'s to surround text and prefers single quotes. I still don't see where the dbname.1 error is from Kerry -Original Message- From: Kerry Frater [mailto:[EMAIL PROTECTED] Sent: 02 February 2006 10:05 T

Re: Error 1146

2004-07-14 Thread SGreen
I don't see 'caldata.resource' anywhere in the statement you posted. Are you sure you are sending the correct string to MySQL for execution as you didn't post what MySQL tried to execute (based on its error message) for us to look at. This may be a "variable name typo" issue. One very simple

Re: Error 1146 "Table mysql.proc doesn't exist"

2004-06-01 Thread Josh Trutwin
On Tue, 1 Jun 2004 14:50:11 +0200 "Bungarz, Kai" <[EMAIL PROTECTED]> wrote: > Hi! > I'm using mysql-max-nt, Version 5, running on Windows 2000. > While inserting rows into a table from a perl script, i get error > 1146:"table mysql.proc doesn't exist". > The application ran without any error wit

Re: ERROR 1146 (42S02): Table 'mysql.proc' doesn't exist

2004-01-08 Thread Morten Gulbrandsen
Well I will test that on my win2k server machine is now down running instead Suse 9.0. Thanks, If I know that it runs satisfactorily under suse, I'm satisfied, I have suse 8.2, but I can go for suse 9.0 If necessary. Anyway you have the option for to download the package without installer,

Re: ERROR 1146 (42S02): Table 'mysql.proc' doesn't exist

2004-01-08 Thread miguel solorzano
At 20:02 8/1/2004 +0100, Morten Gulbrandsen wrote: hi, Well I will test that on my win2k server machine is now down running instead Suse 9.0. Anyway you have the option for to download the package without installer, then is just an issue to unzip the files in the right place. You should this option

Re: ERROR 1146 (42S02): Table 'mysql.proc' doesn't exist

2004-01-08 Thread Morten Gulbrandsen
MySQL 5.0 should install and run on any Win32 OS, then I guess that some installation's steps/options has failed for to add the missed files. Interesting, obviously something is missing, anyway 5.0.0.a is present. I could try that, It is important for us to know what exactly is failing, my

Re: ERROR 1146 (42S02): Table 'mysql.proc' doesn't exist

2004-01-08 Thread miguel solorzano
At 14:40 8/1/2004 +0100, Morten Gulbrandsen wrote: Hi, Thank you, I am comparing the two \mysql\data\mysql directories, finding that many files are simply missing in my installation. I had another mysql version previously, which I removed, I also have a different operating system. win2k MySQL 5.

Re: ERROR 1146 (42S02): Table 'mysql.proc' doesn't exist

2004-01-08 Thread Morten Gulbrandsen
- Original Message - From: "miguel solorzano" <[EMAIL PROTECTED]> To: "Morten Gulbrandsen" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, January 08, 2004 6:42 AM Subject: Re: ERROR 1146 (42S02): Table 'mysql.proc' doesn'

Re: ERROR 1146 (42S02): Table 'mysql.proc' doesn't exist

2004-01-07 Thread miguel solorzano
At 05:26 8/1/2004 +0100, Morten Gulbrandsen wrote: Hi, I wasn't able to repeat: Microsoft Windows XP [versão 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. c:\>cd\mysql\bin C:\mysql\bin>mysql -uroot test Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 to

re: ERROR 1146

2002-09-23 Thread Victoria Reznichenko
hans, Sunday, September 22, 2002, 3:48:33 PM, you wrote: hs> trying to do my first steps with mysql, i have done the following : hs> mysql> USE mysql; hs> Reading table information for completion of table and column names hs> You can turn off this feature to get a quicker startup with -A hs> Dat

RE: ERROR 1146

2002-09-23 Thread Andrew Braithwaite
Hans, You're trying to insert into the wrong table to set up permissions. You should use the 'user' table for this. Eg: INSERT INTO user VALUES But I would recommend the command line command "GRANT" to do that instead See: http://www.mysql.com/doc/en/GRANT.html for details...

Re: ERROR 1146

2002-09-22 Thread Max Morawski
hans schneidhofer wrote: >hi list, >trying to do my first steps with mysql, i have done the following : >mysql> USE mysql; >Reading table information for completion of table and column names >You can turn off this feature to get a quicker startup with -A > >Database changed >mysql> INSERT INTO my

RE: ERROR 1146: Table 'test.test' doesn't exist - Why is mysql adding a postfix to my USE request?

2002-08-10 Thread William dw
>From: david [mailto:[EMAIL PROTECTED]] >Sent: Saturday, August 10, 2002 1:42 PM >Subject: ERROR 1146: Table 'test.test' doesn't exist - Why is mysql adding a postfix to my USE request? > >Why is mysql adding a postfix to my USE request? I know that test.test >doesn't exist, i don't want it to, i'

Re: ERROR 1146: Table 'test.test' doesn't exist - Why is mysql adding a postfix to my USE request?

2002-08-10 Thread Mike Hall
What are you trying to do here? MySQL is giving this error because the table 'test' does not exist in the 'test' database. Are you mistaking database for tables? I think perhaps you need to take a look more carefully at the manual about creating tables. Mike - Original Message - From: