--检查数据库的等待事件 from v$session_waitwhere event not like 'SQL%' and event not like 'rdbms%' --找出系统中耗时的操作select b.username username,a.disk_reads reads, a.e ...
分类:
数据库 时间:
2016-10-28 03:16:26
阅读次数:
233
Given a set of words (without duplicates), find all word squares you can build from them. A sequence of words forms a valid word square if the kth row ...
分类:
其他好文 时间:
2016-10-28 02:42:37
阅读次数:
195
下面是网上收集的多种方法,大家可以测试下。(一) 昨晚浏览自己的Blog的时候,突然发现所有页面都无法显示,到后台查看的时候,发现一个”Table ‘xxx' is marked as crashed and should be repaired” 的错误。连忙上网搜索,原来修改这个严重的错误很简单 ...
分类:
数据库 时间:
2016-10-25 10:04:49
阅读次数:
353
最近工作中遇到,要使用angularJS的post方法来下载excel的情况。网上找到一个帖子:http://stackoverflow.com/questions/22447952/angularjs-http-post-convert-binary-to-excel-file-and-downl ...
分类:
Web程序 时间:
2016-10-21 19:56:02
阅读次数:
272
在ORACLE数据库中有物理读(Physical Reads)、逻辑读(Logical Reads)、一致性读(Consistant Get)、当前模式读(DB Block Gets)等诸多概念,如果不理解或混淆这些概念的话,对你深入理解一些知识无疑是一个障碍,但是这些概念确实挺让让人犯晕的。下面我... ...
分类:
数据库 时间:
2016-10-09 06:50:10
阅读次数:
326
A palindrome is a string that reads the same from the left as it does from the right. For example, I, GAG and MADAM are palindromes, but ADAM is not. ...
分类:
其他好文 时间:
2016-10-07 20:43:22
阅读次数:
161
查询出性能最差的10条sqlSELECT*FROM(selectPARSING_USER_ID,EXECUTIONS,SORTS,COMMAND_TYPE,DISK_READS,sql_textFROMv$sqlareaorderBYdisk_readsDESC)whereROWNUM<10;HASH_VALUE:SQL语句的Hash值。ADDRESS:SQL语句在SGA中的地址。这两列被用于鉴别SQL语句,有时,两条不..
分类:
数据库 时间:
2016-09-28 16:53:13
阅读次数:
194
先看解释: nextInt(): it only reads the int value, nextInt() places the cursor in the same line after reading the input. next(): read the input only till t ...
分类:
编程语言 时间:
2016-09-21 15:56:42
阅读次数:
201
12050 Palindrome NumbersA palindrome is a word, number, or phrase that reads the same forwards as backwards. For example,the name “anna” is a palindro ...
分类:
其他好文 时间:
2016-09-19 01:28:13
阅读次数:
172