码迷,mamicode.com
首页 >  
搜索关键字:reads    ( 984个结果
一些性能查询的SQL 备忘
--检查数据库的等待事件 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
[LeetCode] Word Squares 单词平方
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
Git常用命令总结
Git常用命令
分类:其他好文   时间:2016-10-21 22:06:03    阅读次数:358
angularJS通过post方法下载excel文件
最近工作中遇到,要使用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 物理读 逻辑读 一致性读 当前模式读总结浅析
在ORACLE数据库中有物理读(Physical Reads)、逻辑读(Logical Reads)、一致性读(Consistant Get)、当前模式读(DB Block Gets)等诸多概念,如果不理解或混淆这些概念的话,对你深入理解一些知识无疑是一个障碍,但是这些概念确实挺让让人犯晕的。下面我... ...
分类:数据库   时间:2016-10-09 06:50:10    阅读次数:326
Uva 11151 - Longest Palindrome
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
查看性能差的sql语句
查询出性能最差的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
Java中关于nextInt()、next()和nextLine()的理解
先看解释: 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
UVa12050
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
984条   上一页 1 ... 79 80 81 82 83 ... 99 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!