摘要: 文章来源于网络!! 1、MySQL常用命令 create database name; 创建数据库 use databasename; 选择数据库 drop database name 直接删除数据库,不提醒 show tables; 显示表 describe tablename; 表的详细描述 s 阅读全文
posted @ 2017-11-26 11:48 enjie 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 文章来源:http://blog.csdn.net/gray13/article/details/6365654 因为要装pl/sql所以要查找tnsnames.ora文件。。看看怎么查这个文件在linux下的哪个目录 find / -name tnsnames.ora 查到: /opt/app/o 阅读全文
posted @ 2017-11-26 11:45 enjie 阅读(224831) 评论(3) 推荐(6) 编辑
摘要: 文章来源:http://blog.csdn.net/yabingshi_tech/article/details/39577449 有的文章(环境:在Linux下安装的mysql)提到了my.ini文件。 可是,我在自己机器上并没有找到该文件。 下面是网上查的资料-- linux版本是my.cnf, 阅读全文
posted @ 2017-11-26 11:37 enjie 阅读(25700) 评论(0) 推荐(2) 编辑
摘要: mysql什么时候需要flush privileges flush privileges 命令本质上的作用是将当前user和privilige表中的用户信息/权限设置从mysql库(MySQL数据库的内置库)中提取到内存里。MySQL用户数据和权限有修改后,希望在"不重启MySQL服务"的情况下直接 阅读全文
posted @ 2017-11-26 11:35 enjie 阅读(11703) 评论(0) 推荐(0) 编辑
摘要: 重新安装mariaDB数据库时,出现安装权限问题,中止安装发现居然能够登陆mysql,但是登陆时可以不填密码,操作数据库时会报错:ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'mysql'。我是远程登录数 阅读全文
posted @ 2017-11-26 11:28 enjie 阅读(8378) 评论(0) 推荐(0) 编辑