Today See>
http://wenku.baidu.com/view/b08f3575f46527d3240ce061.html
http://wenku.baidu.com/view/a3419558be23482fb4da4c9e.html
http://www.cnblogs.com/ggjucheng/archive/2012/01/08/2316661.html
http://geosoft.no/development/javastyle.html
http://code.taobao.org/p/yule/src/trunk/
http://blog.csdn.net/javablogs/article/details/8849015
http://www.pudn.com/downloads107/doc/detail442147.html
https://github.com/UniversityofWarwick/j2ssh-fork
Shell in a box
http://stackoverflow.com/questions/7751843/formatting-output-of-queries-in-sqlplus
http://www.csdn.net/article/a/2011-01-18/290363
ftp://ftp.software.ibm.com/aix/tools/perftools/perfpmr
http://hougbin.iteye.com/blog/847033
http://www.oracle-base.com/dba/script.php?category=monitoring&file=sessions.sql
http://www.databasejournal.com/features/oracle/article.php/3375351/Watching-SQL-Execute-on-Oracle---Part-II.htm
http://www.oracle-wiki.net/startsqllistsqlstmtsessid
http://www.orasql.com/blog/archives/2013/03/25/97.htm
http://stackoverflow.com/questions/11414216/oracle-queries-executed-by-a-session
http://dba.stackexchange.com/questions/8828/how-do-you-show-sql-executing-on-an-oracle-database
http://chenjc-it.iteye.com/blog/1370986
http://docs.oracle.com/cd/B28359_01/server.111/b28320/dynviews_3016.htm
随机推荐
- Android listview 的优化
接[Android listview的应用][1] 在我们上一篇[Android listview的应用][1]中,我们的adapter中的getView()方法中每次都将布局重新加载一遍,这样就会导 ...
- Python之路第六天,基础(8)-反射
反射 利用字符串的形式去对象(模块)中操作(寻找/检查/删除/设置)成员(函数). Python中反射用到的4个内置函数:getattr(),setattr(),hasattr(),delattr() ...
- ORA-01653:表无法通过64(在表空间USERS中)扩展
问题描述:oracle插入数据时显示ORA-01653 表无法通过64(在表空间USERS中)扩展 原因: oracle 表空间满了,需要扩展 截图: 解决方法: 1.首先查下表空间 select ...
- Metropolis Hasting算法
Metropolis Hasting Algorithm: MH算法也是一种基于模拟的MCMC技术,一个非常重要的应用是从给定的概率分布中抽样.主要原理是构造了一个精妙的Markov链,使得该链的稳态 ...
- poj2387-Til the Cows Come Home dijkstra获得水的问题
Til the Cows Come Home Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 29539 Accepted ...
- Android 多线程:使用Thread和Handler (从网络上获取图片)
当一个程序第一次启动时,Android会同时启动一个对应的主线程(Main Thread),主线程主要负责处理与UI相关的事件,如:用户的按键事件,用户接触屏幕的事件以及屏幕绘图事件,并把相关的事件分 ...
- 创建和使用RMAN存储脚本
创建和使用RMAN存储脚本:1.连接恢复目录(可以不连接到目标库):C:\Users\Administrator>rman target sys/rusky@rusky catalog=rcat ...
- 【贪心】【TOJ4107】【A simple problem】
Given three integers n(1≤n≤1018), m(1≤m≤105), k(1≤k≤1018). you should find a list of integer A1,A2,- ...
- 初始Knockout
Kncokout是一个轻量级的ui类库,通过应用MVVN模式得JavaScript前端简单化. MVVN模式:http://www.cnblogs.com/xueduanyang/p/3601471. ...
- UVA 1603 Square Destroyer
题意: 给定一个火柴棒拼成的方格阵,然后去掉一些火柴棒,问至少再去掉几根火柴棒能够让图中一个正方形都没有. 思路: 1. 由于题目中给定了 n 的范围,2 * n * (n + 1) <= 60 ...