码迷,mamicode.com
首页 >  
搜索关键字:reads    ( 984个结果
查询Oracle性能差的、正在执行或执行过的SQL语句
查找前十条性能差的sql.SELECT * FROM (select PARSING_USER_ID,EXECUTIONS,SORTS, COMMAND_TYPE,DISK_READS,sql_text FROM v$sqlarea order BY disk_reads DESC )where R...
分类:数据库   时间:2014-09-02 11:50:14    阅读次数:231
UVA - 12050 Palindrome Numbers
Description A palindrome is a word, number, or phrase that reads the same forwards as backwards. For example, the name "anna" is a palindrome. Numbers can also be palindromes (e.g. 151 or 753357)....
分类:其他好文   时间:2014-08-19 12:57:34    阅读次数:189
Word histogram
Here is a program that reads a file and builds a histogram of the words in the file: process_file loops through the lines of the file, passi...
分类:其他好文   时间:2014-08-17 15:30:32    阅读次数:176
Word frequency analysis
Write a program that reads a file, breaks each line into words, scripts whitespace and punctuation from the words, and converts them to lowercase. Mod...
分类:其他好文   时间:2014-08-10 23:51:20    阅读次数:278
UVA 465-- Overflow (atof 函数)
Overflow  Write a program that reads an expression consisting of two non-negative integer and an operator. Determine if either integer or the result of the expression is too large to be rep...
分类:其他好文   时间:2014-08-09 21:35:29    阅读次数:321
std::cin
Input: Executing std::cin >> v discards any whitespace characters in the standard input stream, then reads from the standard input into variable v. It...
分类:其他好文   时间:2014-08-09 13:18:47    阅读次数:198
[译]MySQL不加锁实现一致性读的机制分析
原文直通车:Consistent Nonlocking Reads MySQL的一致性读的机制是是这样实现的:InnoDB引擎为一个事务Tx提供一个在时间T1的版本快照(T1就是在本 事务中首次执行查询语句的时间点)。事务Tx中可以查询到时间点T1之前提交的数据,时间点T1之后提交的数据在 Tx中是...
分类:数据库   时间:2014-08-08 17:46:46    阅读次数:454
Storm中的LocalState 代码解析
官方的解释这个类为:/** * A simple, durable, atomic K/V database. *Very inefficient*, should only be * used for occasional reads/writes. Every read/write hits d...
分类:其他好文   时间:2014-08-05 22:23:00    阅读次数:321
计算cost--全表扫描
下面教大家如何手工算出oracle执行计划中的cost值。 成本的计算方式如下: Cost = (        #SRds * sreadtim +        #MRds * mreadtim +        CPUCycles / cpuspeed        ) / sreadtime #SRds - number of single block reads 单...
分类:其他好文   时间:2014-08-04 18:06:07    阅读次数:310
【MySQL案例】ERROR 1418
By default, for a CREATE FUNCTION statement to be accepted, at least one of DETERMINISTIC, NOSQL, or READS SQL DATA must be specified explicitly. Otherwise an error occurs: ERROR1418 (HY000): This function has none of DETERMINISTIC, NO SQL,or READSSQL DATA...
分类:数据库   时间:2014-08-04 17:46:57    阅读次数:296
984条   上一页 1 ... 95 96 97 98 99 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!