You can now run Oracle E-Business Suite on Oracle Cloud. EBS customers can take advantage of rapid environment provisioning, elastic infrastructure th ...
分类:
数据库 时间:
2016-05-24 16:38:04
阅读次数:
217
第一步: 关闭MySQL服务。 第二步: 打开DOS窗口,在里面输入安装MqSQL的目录本机为:C:\Program Files\MySQL\MySQL Server 5.6\bin 第三步: 在命令窗口输入:mysqld --skip-grant-tables 回车。--skip-grant-ta ...
分类:
数据库 时间:
2016-05-24 00:16:46
阅读次数:
164
1.修改mysql 配置文件 在/etc/mysql/my.cnf中,注释掉 skip-external-locking bind-address = 127.0.0.1 2.重启mysql sudo /etc/init.d/mysql restart 这时如果运行 sudo lsof -i -P ...
分类:
数据库 时间:
2016-05-23 18:51:55
阅读次数:
222
题目链接:
题目:https://leetcode.com/problems/course-schedule/题目:
There are a total of n courses you have to take, labeled from 0 to n - 1.Some courses may have prerequisites, for example to take course 0...
分类:
其他好文 时间:
2016-05-23 15:16:34
阅读次数:
112
题目链接:https://leetcode.com/problems/course-schedule-ii/题目:
There are a total of n courses you have to take, labeled from 0 to n - 1.Some courses may have prerequisites, for example to take course 0 yo...
分类:
其他好文 时间:
2016-05-23 15:14:52
阅读次数:
141
简单粗暴 工具xwamp 路径:H:\xampp\mysql\bin\my.ini.php 打开my.ini,在[mysqld]下面添加 skip-external-lockingskip-name-resolveskip-grant-tables 停止mysql ->打开xwamp的shell可以 ...
分类:
数据库 时间:
2016-05-22 06:14:48
阅读次数:
282
Problem: You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 ...
分类:
其他好文 时间:
2016-05-22 06:12:12
阅读次数:
130
1.首先确认服务器出于安全的状态,最安全的状态是到服务器的Console上面操作,并且拔掉网线。2.修改MySQL的登录设置:#vim/etc/my.cnf在[mysqld]的段中加上一句:skip-grant-tables例如:[mysqld]skip-grant-tables保存并且退出vim。3.重新启动mysqld#/etc/init.d/mysqldres..
分类:
数据库 时间:
2016-05-22 00:48:16
阅读次数:
254
由于公司没有服务器,买的阿里云的服务器用于开发,所以就在本地连接服务器的mysql。 连接很慢,打开表也很慢,一开始没多想,以为是网络慢而已。 最近,开发经常要使用navicat连接数据库,实在是太慢了,5、6秒打开一个表,所以去网上搜了搜看是否有解决办法。 发现了这个参数 skip-name-re ...
分类:
数据库 时间:
2016-05-21 11:33:10
阅读次数:
163
今天在更新ROOT密码时出错updateusersetpassword=‘123456‘whereuser="root"这样写是错的应该为updateusersetpassword=password(‘123456‘)whereuser="root"错误操作之后,导致mysql数据库消失了。解决方法:关闭/etc/init.d/mysqldstop然后,usr/bin/mysqld_safe--skip-grant-ta..
分类:
数据库 时间:
2016-05-18 22:10:23
阅读次数:
231