1. 监控事例的等待 select event,sum(decode(wait_Time,0,0,1)) "Prev",sum(decode(wait_Time,0,1,0)) "Curr",count(*) "Tot" from v$session_Wait group by event orde...
分类:
数据库 时间:
2014-06-27 19:18:03
阅读次数:
273
Editplus是一款很好的文本编辑器,但是默认会生成后缀名为.bak的备份文件,很容易造成文件目录的混乱。其实可以通过修改参数属性,让Editplus不要生成这种文件,以Editplus3.3.1为例,去掉create backup file when saving 上的勾就行了。如何设置Edit...
分类:
其他好文 时间:
2014-06-27 17:52:57
阅读次数:
195
public void deleteDimension() { //定义数据库 Database db = HostApplicationServices.WorkingDatabase; //获取当前文...
分类:
Web程序 时间:
2014-06-27 16:42:51
阅读次数:
535
?C程序设计笔记第一课单词:main 主函数 else 否则int 整数型 for 循环float 浮点型 while 当...的时候char 字符型 swichprintf 输出函数 case 案例scanf 输入函数 default 默认 if 如果 ...
分类:
其他好文 时间:
2014-06-27 16:38:12
阅读次数:
263
Given a string s consists of upper/lower-case alphabets and empty space characters
' ',
return the length of last word in the string.
If the last word does not exist, return 0.
Note...
分类:
其他好文 时间:
2014-06-26 13:55:01
阅读次数:
179
I used to see my senior developers use WITH (NOLOCK) when querying in SQL Server and wonder why they use. Now i explored it and found thatit's useful ...
分类:
数据库 时间:
2014-06-26 12:51:12
阅读次数:
265
Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.Analysis: 这个题简单的版本是判断两个单词是不是anagram,一...
分类:
其他好文 时间:
2014-06-26 12:47:48
阅读次数:
144
Given s1, s2,
s3, find whether s3 is formed by the interleaving of s1 and
s2.
For example,
Given:
s1 = "aabcc",
s2 = "dbbca",
When s3 = "aadbbcbcac", return true.
When ...
分类:
其他好文 时间:
2014-06-26 10:10:19
阅读次数:
214
ORA-00937: 非单组分组函数错误
select count(*), t.user_name
from sys_user t, sys_department a, sys_dep_type d
where t.dep_id = a.dep_id
and a.dep_id = d.dep_id
and t.recd_is_del = 0
group by t.u...
分类:
其他好文 时间:
2014-06-26 08:07:37
阅读次数:
231
groupby多表多字段关联查询自己遇到一个问题,就是开始的时候需要一个字段的名字和数量,但是是同个一个表的。数据库代码如下:select
l.batchnum,count(l.batchnum)batcount
fromts_outphone_listljoints_outphone_batchbonl.batchnum=b.batchnumleftjoinom_user_listomonl...
分类:
数据库 时间:
2014-06-26 06:32:47
阅读次数:
506