1.下载Process Explorer 2.打开Process Explorer,查看CPU使用情况最高的进程 3.双击该进程,查看详情 4. 获取cpu使用最好的线程tid 5. 查询sql_id select sql_id from v$session where paddr in( sele ...
分类:
数据库 时间:
2020-11-01 09:55:17
阅读次数:
20
VB 数据库操作实例:写入软件版本号(版本控制代码实现)
分类:
数据库 时间:
2020-10-31 02:07:39
阅读次数:
23
尝试描述ndis网卡驱动的收发包过程 设置一个_NDIS_MINIPORT_DRIVER_CHARACTERISTICS结构,包含初始化,处理中断,发包等很多自己写的handle,初作为参数提供给MRegisterMiniportDriver函数 MRegisterMiniportDriver会首先 ...
分类:
其他好文 时间:
2020-10-30 12:40:37
阅读次数:
25
1. 没有上报101,直接上报了201,看下LOG,其中的上报下载进度成功 case OTA_EVENT_REPORT_DOWNLOAD_PROGRESS_OK: { ota_log_printf("Report download progress success\r\n"); if(ctx->do ...
分类:
其他好文 时间:
2020-10-30 12:35:50
阅读次数:
23
alignment top_right #是否嵌入桌面 background yes #是否绘制窗口边框 draw_borders no #窗口边框 border_width 10 #cpu_avg_samples 2 #默认颜色 #default_color cornflowerblue #默认字 ...
分类:
其他好文 时间:
2020-10-29 10:29:31
阅读次数:
29
问题描述:com.mysql.jdbc.exceptions.jdbc4.MySQLTransactionRollbackException: Lock wait timeout exceeded; try restarting transaction 方案一、临时解决此问题 查找出此问题的thre ...
分类:
数据库 时间:
2020-10-29 10:26:12
阅读次数:
27
str=‘helloworld‘join合并,以join前的string为分隔符,将列表中的元素合并为一个新的字符串str_1=‘*‘.join([‘Are‘,‘you‘,‘ok‘])print(str_1)#结果Are*you*ok分隔,split将string根据分隔符分隔成列表,也可以带参数num(分隔次数)splitlines,按照行(‘\r‘,‘\
分类:
编程语言 时间:
2020-10-29 10:01:01
阅读次数:
21
SELECT table_name,table_type,table_schema FROM information_schema.TABLES WHERE table_schema = 'security_domain' AND table_type = 'BASE TABLE'; ...
分类:
数据库 时间:
2020-10-29 09:56:35
阅读次数:
29
You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the following defin ...
分类:
其他好文 时间:
2020-10-27 11:41:41
阅读次数:
23
Python自动的os库是和操作系统交互的库,常用的操作包括文件/目录操作,路径操作,环境变量操作和执行系统命令等。 文件/目录操作 获取当前目录(pwd): os.getcwd() 切换目录(cd): os.chdir('/usr/local/') 列出目录所有文件(ls):os.listdir( ...
分类:
编程语言 时间:
2020-10-27 11:33:55
阅读次数:
30