Ctrl+/ 或 Ctrl+Shift+/ 注释(// 或者/*...*/ )Ctrl+D 复制行Ctrl+X 删除行快速修复 alt+enter (modify/cast)代码提示 alt+/ctr+G 定位某一行Shift+F6 重构-重命名Ctrl+R 替换文本Ctrl+F 查找文本 Ctrl ...
分类:
其他好文 时间:
2016-11-22 20:20:54
阅读次数:
230
create table tb2 as select * from emp;alter table tb2 modify empno number(4) not null;翻到20W行create index idxtb21 on tb2(empno);select INDEX_NAME from ...
分类:
数据库 时间:
2016-11-19 15:25:13
阅读次数:
367
由于在公司服务器上在某个时段查询某个sql执行比较慢,然后查到了某个sql里面含有in,造成数据库服务器经常超时,又不想一条一条的看,然后写了一个方法 CREATE Procedure GetKey @Key Varchar(200)='',@Type VarChar(10)='and' As Se ...
分类:
其他好文 时间:
2016-11-17 13:25:44
阅读次数:
146
1:使用stat命令查看一个文件的访问时间(Access)、修改时间(modify)、状态改变时间(Change)#statindex.php2:批量解压.tar.gz方法1:#fortarin*.tar.gz;dotarzxvf$tar;done方法2:#ls*.tar.gz|xargs-itarzxvf{}3:查看根目录下大于1G的文件#find/-size+1024M4:查看服务器IP..
分类:
系统相关 时间:
2016-11-17 02:25:21
阅读次数:
227
SQL[连载3]sql的一些高级用法 SQL 高级教程 SQL SELECT TOP SQL SELECT TOP 子句 SELECT TOP 子句用于规定要返回的记录的数目。 SELECT TOP 子句对于拥有数千条记录的大型表来说,是非常有用的。 注释:并非所有的数据库系统都支持 SELECT ...
分类:
数据库 时间:
2016-11-16 15:17:25
阅读次数:
278
Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Note: Do not modify the linked list. Follow up:Can you ...
分类:
编程语言 时间:
2016-11-15 19:29:31
阅读次数:
148
1. login ssh fetch@<robot ip or robot name> 2. set robot master modify .bashrc in robot's computer using ssh export ROS_MASTER_URI=http://<robot ip or ...
分类:
其他好文 时间:
2016-11-15 10:46:45
阅读次数:
186
http://v.youku.com/v_show/id_XMTgxODYzOTU2OA==.html
分类:
其他好文 时间:
2016-11-14 15:59:11
阅读次数:
133
Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Note: Do not modify the linked list. Follow up:Can you ...
分类:
其他好文 时间:
2016-11-13 14:19:03
阅读次数:
143
1、 在web容器中设置(此处以tomcat为例) 在tomcat-6.0\conf\web.xml中设置,以下是tomcat 6.0中的默认配置: Tomcat默认session超时时间为30分钟,可以根据需要修改,负数或0为不限制session失效时间。 2、 在工程的web.xml中设置 3、 ...
分类:
编程语言 时间:
2016-11-12 20:12:35
阅读次数:
255