solution:change application pool from ApplicationPoolIdentity to NetworkService.
分类:
数据库 时间:
2015-03-13 16:23:51
阅读次数:
222
学习动态性能表第12篇--V$DB_OBJECT_CACHE 2007.6.4 本视图提供对象在library cache(shared pool)中对象统计,提供比v$librarycache更多的细节,并且常用于找出shared pool中的活动对象。v$db_object_cache中的常用....
分类:
数据库 时间:
2015-03-13 14:18:02
阅读次数:
170
学习动态性能表第四篇-(1)-V$SQLTEXT 2007.5.29 本视图包括Shared pool中SQL语句的完整文本,一条SQL语句可能分成多个块被保存于多个记录内。 注:V$SQLAREA只包括头1000个字符。V$SQLTEXT中的常用列HASH_VALUE:SQL语句的Hash值A.....
分类:
数据库 时间:
2015-03-12 16:45:11
阅读次数:
138
练习 trie 1 #include 2 #include 3 #define maxn 1000000 4 5 struct node { 6 int v; 7 char *str; 8 node *son[26]; 9 }pool[maxn], *tail=pool...
分类:
其他好文 时间:
2015-03-12 11:09:23
阅读次数:
120
1 import os 2 import sys 3 4 def find_file(root_dir, type): 5 dirs_pool = [root_dir] 6 dest_pool = [] 7 8 def scan_dir(directory): 9 ...
分类:
编程语言 时间:
2015-03-11 21:36:42
阅读次数:
164
Sort List问题:Sort a linked list inO(nlogn) time using constant space complexity.思路: 归并排序我的代码:public class Solution { public ListNode sortList(ListN...
分类:
其他好文 时间:
2015-03-11 21:30:59
阅读次数:
165
golang 中支持 长量 const or staticpackage mainimport ( "fmt" "math")const s string = "constant"const a = 3000func main() { const s = 3000 fmt.P...
分类:
其他好文 时间:
2015-03-11 14:36:18
阅读次数:
139
我这里使用docker的容器做测试机给开发使用,使用都没问题,但随着项目增加,有的项目需要更大的硬盘,我通过(http://dl528888.blog.51cto.com/2382721/1606170)来动态扩展容器的空间,满足使用需求,但我当前设置的dockerpool却不足了(默认pool是100g,每个容器给予10g空间..
分类:
其他好文 时间:
2015-03-10 19:49:16
阅读次数:
219
由于项目的原因,需要查看后台代码执行的查询语句以及检查其逻辑是否正确;步骤:(1).首先在数据库里面刷新共享此--刷新共享池alter system flush shared_pool;(2).在界面中操作你要查看后台直接的功能;(3)、在PL/SQL数据库中执行以下语句;--查询用户最近执行的SQ...
分类:
数据库 时间:
2015-03-10 13:35:46
阅读次数:
157
一、利用无线来查看adb shell> adb tcpip 5555连接:> adb connect IP:5555见后文《调试注意事项》二、模拟按键> adb shell input keyevent "value"部分常见按键对应值:Key | Constant ValueBack 4Power...
分类:
数据库 时间:
2015-03-10 11:41:42
阅读次数:
204