上一页 1 ··· 167 168 169 170 171 172 173 174 175 ··· 324 下一页
摘要: 1, 查看MySQL服务器配置信息 mysql> show variables; 2, 查看MySQL服务器运行的各种状态值 mysql> show global status; 3, 慢查询 mysql> show variables like '%slow%'; + + + | Variable 阅读全文
posted @ 2016-04-07 20:08 emanlee 阅读(1207) 评论(0) 推荐(0) 编辑
摘要: 1. 为查询缓存优化查询 当有很多相同的查询被执行了多次的时候,这些查询结果会被放到一个缓存中,这样,后续的相同的查询就不用操作表而直接访问缓存结果了。 2. EXPLAIN SELECT 查询 使用 EXPLAIN 关键字可以知道MySQL是如何处理SQL语句的。这可以查询语句或是表结构的性能瓶颈 阅读全文
posted @ 2016-04-07 19:15 emanlee 阅读(2030) 评论(0) 推荐(0) 编辑
摘要: 一、java.lang.OutOfMemoryError: PermGen space PermGen 解决方法: 手动设置MaxPermSize大小修改 TOMCAT_HOME/bin/catalina.sh 在“echo "Using CATALINA_BASE: $CATALINA_BASE" 阅读全文
posted @ 2016-03-30 23:09 emanlee 阅读(2014) 评论(0) 推荐(0) 编辑
摘要: SQL> exec pro_gz_day_report; ORA-01031: insufficient privileges ORA-06512: at "....", line 6 ORA-06512: at line 2 限不足无法创建表,可以通过如下方案解决: grant create an 阅读全文
posted @ 2016-03-10 21:17 emanlee 阅读(771) 评论(0) 推荐(0) 编辑
摘要: MySQL复制表结构 表数据 1、复制表结构及数据到新表CREATE TABLE 新表 SELECT * FROM 旧表这种方法会将oldtable中所有的内容都拷贝过来,当然我们可以用delete from newtable;来删除。不过这种方法的一个最不好的地方就是新表中没有了旧表的primar... 阅读全文
posted @ 2016-01-18 22:12 emanlee 阅读(10808) 评论(0) 推荐(0) 编辑
摘要: Graphical ParametersYou can customize many features of your graphs (fonts, colors, axes, titles) through graphic options.One way is to specify these o... 阅读全文
posted @ 2016-01-08 15:00 emanlee 阅读(1157) 评论(0) 推荐(1) 编辑
摘要: JSONObject.fromObjectjava.lang.ClassNotFoundException: org.apache.commons.lang.exception.NestableRuntimeException需要的有额外的6个包,必不可少,一定要注意: 1.commons-bean... 阅读全文
posted @ 2016-01-05 22:37 emanlee 阅读(2510) 评论(0) 推荐(0) 编辑
摘要: appcompat v7 问题 SDK低于4.0,新建第一个Activity时会自动产生appcompat_v7 http://jingyan.baidu.com/article/2d5afd69e846d285a2e28eff.html -------------------- 升级sdk 到5. 阅读全文
posted @ 2016-01-05 16:40 emanlee 阅读(600) 评论(0) 推荐(0) 编辑
摘要: 1 下载并安装JDK,并且设置环境变量2 下载安装installer_r24.3.4-windows.exe (Android SDK Manager)3 使用Android SDK Manager 安装各种包4 设置 Path 环境变量,把以下加入: C:\Program Files (x86)... 阅读全文
posted @ 2016-01-03 20:35 emanlee 阅读(4704) 评论(0) 推荐(0) 编辑
摘要: 前导:安装 numpyhttp://sourceforge.net/projects/numpy/files/http://sourceforge.net/projects/numpy/files/NumPy/1.7.2/numpy-1.7.2-win32-superpack-python2.7.e... 阅读全文
posted @ 2015-12-24 23:22 emanlee 阅读(537) 评论(0) 推荐(0) 编辑
上一页 1 ··· 167 168 169 170 171 172 173 174 175 ··· 324 下一页