GoldenGate过程 abend,报错OGG-00868 ORA-02396: Exceeded Maximum Idle Time, Please Connect Again参考原始:GoldenGate Processes Abend with OGG-00868 ORA-02396: Ex...
分类:
其他好文 时间:
2015-06-17 11:03:55
阅读次数:
151
查看当前tcp监听端口[op@TIM html]$ netstat -nltp(Not all processes could be identified, non-owned process infowill not be shown, you would have to be root to s...
分类:
Web程序 时间:
2015-06-17 01:47:12
阅读次数:
162
http://www.chengxuyuans.com/oracle/90720.html select value from v$parameter where name = 'processes'; alter system set processes = 300 scope = spfi...
分类:
数据库 时间:
2015-06-16 10:49:40
阅读次数:
192
1、Android 颜色对比
/** Calculates the constrast between two colors, using the algorithm provided by the WCAG v2. */
public static float computeContrastBetweenColors(int bg, int fg) {
fl...
分类:
移动开发 时间:
2015-06-15 11:14:30
阅读次数:
150
Nginx优化选项参数注释:worker_processes#nginx进程数。具体用法:worker_processes8;#建议按照cpu核数目来指定,通常设置为cpu核数的倍数。参数注释:worker_cpu_affinity#设置进程绑定cpu,这个跟worker_processes协同工作。具体用法:worker_processes8worker_cpu_affinity..
分类:
其他好文 时间:
2015-06-14 00:42:39
阅读次数:
175
#rac有两个节点,在节点1上做更改,更改后重启。
#节点2上无需再更改,但是需要重启数据库.
#node1:
#更改processes和session数
altersystemsetprocesses=1500scope=spfile;
altersystemsetsessions=1655scope=spfile;
createpfilefromspfile;
shutdownimmediate;
startup
sh..
分类:
其他好文 时间:
2015-06-12 15:10:36
阅读次数:
146
一时兴起,想试试能不能用perl实现字符贪吃蛇,算法如下: 定义2个数组@bg、@snake,@bg用来显示整个界面,@snake从蛇头开始保存蛇的坐标点。 蛇每移动一次,新的坐标点放到@snake头部,并去除最后一个元素,再改变@bg对应坐标的值。 通过控制台窗口不断清屏再打印,使蛇“看...
分类:
其他好文 时间:
2015-06-12 13:22:46
阅读次数:
169
## processes 进程管理
##ps查看当前系统执行的线程列表,进行瞬间状态,不是连续状态,连续状态需要使用top名称查看 更多常用参数请使用 man ps查看
ps
##显示所有进程详细信息
ps aux
##-u 显示某个用户的进程列表
ps -f -u www-data
## -C 通过名字或者命令搜索进程
ps -C apache2
## --sort ...
分类:
系统相关 时间:
2015-06-12 11:50:00
阅读次数:
188
ORA-12516:TNS:
监听程序找不到符合协议堆栈要求的可用处理程‘错误,要解决该问题首先查看一下数据库现有的进程数,是否已经达到参数processes的大校ORA-01012:notloggedon解决办法对数据库进行查询或者操作之时才会出现ORA-01012SQL>select
count(*)fromv$process;selectcou..
分类:
数据库 时间:
2015-06-11 23:10:05
阅读次数:
194
在给网页加背景图时会遇到:图片过大,只能显示出部分,不能完整的显示出来,实现不了设计的效果,怎么办?无标题文档View Codebackground:url(images/hi-wifi-bg.jpg) no-repeat center center; background-size:100% 10...
分类:
Web程序 时间:
2015-06-11 18:41:12
阅读次数:
304