操作系统是suse linux,安装的是压缩版的mysql 5.5,已经安装成功了。
mysql服务可以起来,并且用mysql front远程也能连上,并且也创建了数据库,还导入了数据。
但是在执行查询的时候就报错了。
---------------------------
错误
---------------------------
SQL 执行错误 # 1146. 从数据库的响应:
Table 'smplatform.OMS_USER' doesn't exist
---------------------------
确定
---------------------------
我查了/usr/local/mysql/data下的linux-9p0s.err文件,错误如下:
121011 2:15:31 [Note] /usr/local/mysql/bin/mysqld: Normal shutdown
121011 2:15:31 [Note] Event Scheduler: Purging the queue. 0 events
121011 2:15:33 [Warning] /usr/local/mysql/bin/mysqld: Forcing close of thread 23 user: 'smplatform'
121011 2:15:33 [Warning] /usr/local/mysql/bin/mysqld: Forcing close of thread 22 user: 'smplatform'
121011 2:15:33 InnoDB: Starting shutdown...
121011 2:15:35 InnoDB: Shutdown completed; log sequence number 22123213
121011 2:15:35 [Note] /usr/local/mysql/bin/mysqld: Shutdown complete
121011 02:15:35 mysqld_safe mysqld from pid file /usr/local/mysql/data/linux-9p0s.pid ended
121011 02:16:46 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
121011 2:16:46 [Note] Plugin 'FEDERATED' is disabled.
121011 2:16:46 InnoDB: The InnoDB memory heap is disabled
121011 2:16:46 InnoDB: Mutexes and rw_locks use GCC atomic builtins
121011 2:16:46 InnoDB: Compressed tables use zlib 1.2.3
121011 2:16:46 InnoDB: Using Linux native AIO
121011 2:16:46 InnoDB: Initializing buffer pool, size = 128.0M
121011 2:16:46 InnoDB: Completed initialization of buffer pool
121011 2:16:46 InnoDB: highest supported file format is Barracuda.
121011 2:16:47 InnoDB: Waiting for the background threads to start
121011 2:16:48 InnoDB: 1.1.8 started; log sequence number 22123213
121011 2:16:48 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
121011 2:16:48 [Note] - '0.0.0.0' resolves to '0.0.0.0';
121011 2:16:48 [Note] Server socket created on IP: '0.0.0.0'.
121011 2:16:49 [Note] Event Scheduler: Loaded 0 events
121011 2:16:49 [Note] /usr/local/mysql/bin/mysqld: ready for connections.
Version: '5.5.25' socket: '/tmp/mysql.sock' port: 3306 MySQL Community Server (GPL)
搞了一天了,没有结果,求高手帮忙解决,再拜!
分享到:
相关推荐
【2】linux的mysql区分大小写,数据库中的表名与输入的sql语句中的使用的表名大小写不一致导致的 【3】数据库操作时,误删mysql的文件导致(常见于数据库升级或迁移) 【4】在编译安装mysql时,没有指定innodb存储引擎...
在使用帝国CMS进行数据更新和管理网站内容时,可能会遇到一些技术问题,例如在尝试刷新数据表时出现错误提示“Table ‘empirecms.phome_ecms_’ doesn’t exist”。 这个错误通常是因为数据库中的某个数据表不存在...
MySQL的错误1146 "Tabel doen’t exist"(正确的拼写应该是“Table doesn’t exist”)通常表示试图访问的表不存在。然而,当这个错误出现在你明明知道表存在的情况下,那么问题可能就出在大小写规则上。 在MySQL中...
2. 错误1146: Table 'database.table' doesn't exist 这个错误意味着尝试访问的表不存在于指定的数据库中。解决方法是检查表名和数据库名的拼写,确保它们是准确无误的,或者创建缺失的表。 3. 错误1215: Cannot ...
关于MySQL提示"Table '表名' doesn't exist"的错误,这可能涉及到数据文件的迁移问题。MyISAM类型的表由".frm"、".MYD"和".MYI"三个文件组成,可以直接复制使用。然而,InnoDB类型的表只包含".frm"文件,数据存储在...
在使用帝国CMS 7.0时,用户可能会遇到数据更新批量生成时出错的问题,具体表现为系统提示“Table ‘表前缀_ecms_news_data_’ doesn't exist”。这个错误是由于系统试图访问一个不存在的数据库表,实际的表名应该是...
3. 错误代码1146: "Table 'database.tablename' doesn't exist",表示尝试访问的表不存在。检查数据库和表名是否正确拼写,并确认表已被创建。 4. 错误代码1215: "Cannot add foreign key constraint",这通常发生...
在上述例子中,开发者在Windows环境下开发时未遇到问题,但在部署到Linux服务器后,由于Linux的大小写敏感特性,导致了“Table 'kytu.tb_sutyHo' doesn't exist”的错误。实际上,表名为`tb_sutyho`,而不是`tb_...
5. 在执行添加数据时出现 “Field 'name' doesn't have a default value” 错误,可能导致错误的原因是( )。 a) INSERT 语句出现了语法问题 b) name 字段没有指定默认值,且添加了 NOT NULL 约束 c) name 字段...
7. Table 'cms0726.test' doesn't exist 如果代码中指定了一个不存在的表名,就会出现这个错误。确保数据库中存在对应的表,并且表名拼写无误。 8. Unknown column 'abc' in 'field list' 当执行一个SQL查询时,...