[求助] need help on mySQL

fido555fido

新手上路
注册
2003-02-06
消息
666
荣誉分数
0
声望点数
0
在win2000 pro下刚装上mySQL,准备作DB server。

装的过程没问题,按照下面的document设置,实际上也没什么可设的,只是检查一下确实已经装上。
Installing MySQL


在win2000的service里面也已经有了该项服务。

接着,读这篇文章

Getting Started with MySQL 试图快速入门(有一点Oracle基础)

文章的例子提到user, db 这些 mySQL本身的 grant tables,很重要。但我这里没有(以root登录,select * from user 或者 select * from db 结果 “ERROR 1046: No Database Selected”:( )。再查头一篇文章里面提到“scripts”目录中的mysql_install_db 是用来initialise the mysql database containing the grant tables that store the server access permissions.

但我查过“scripts”目录,其下mysql_install_db和mysql_install_db.sh都是unix下执行的scripts,我没法执行,那位大侠指点一下我该怎么半?
 
俺没太搞懂你的问题.
但以俺的经验,在装了mysql后,安装Mysql control center和connector,run server, (用c:\mysql\bin\mysqld --console),再check two default databases(用c:\mysql\bin\mysql mysql 或c:\mysql\bin\mysql test to login to databases.): mysql(not 空) and test(空) with user "root" account. I've never got any problems.
Hope this will be helpful.
 
type in "show databases" to list all the dbs available;
type in "use mysql" to get in sample db;
type in "show tables" to list all the tables in this db.
 
谢谢两位答复。问题找到了,是我只login进去,没有选择DB而直接想query table。
 
后退
顶部