首先用sql语句是可以创建的
再者:看你的意思是你平时是用其他工具管理数据库的吧,比如mysqlfront或者navicat之类的,其实你完全可以是用这个工具管理你的远程数据库啊,跟本地连接是一样的,只不过连接地址填写你远程数据库的地址就行。我本人管理远程数据库就是这么管理的。
很明显权限不够,,你是用Windows验证登录还是sa登录?
登录Windows请用超级管理员Administrator
推荐用sa登录数据库
在使用MySQL数据库时,有时会遇到MySQL函数不能创建的情况。
出错信息大致类似:
ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
目前,oracle不支持win7,网上有些方法说只要修改安装文件中的LOG文件等,我都测试过了,不是很稳定,你可以在微软官网中,下载虚拟机和xp模式,然后进入虚拟机安装。另,win7的虚拟机最好装微软的,用vm不稳定,容易死机。
解决方法如下:
1. mysql> set global log_bin_trust_function_creators = 1;
2. 系统启动时 --log-bin-trust-function-creators=1
3. 在my.ini(linux下为my.conf)文件中 [mysqld] 标记后加一行内容为 log-bin-trust-function-creators=1