码迷,mamicode.com
首页 >  
搜索关键字:where case when    ( 36516个结果
Oracle CPU使用率过高问题处理
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 数据库操作实例:写入软件版本号(版本控制代码实现)
VB 数据库操作实例:写入软件版本号(版本控制代码实现)
分类:数据库   时间:2020-10-31 02:07:39    阅读次数:23
ndis网卡驱动收发包
尝试描述ndis网卡驱动的收发包过程 设置一个_NDIS_MINIPORT_DRIVER_CHARACTERISTICS结构,包含初始化,处理中断,发包等很多自己写的handle,初作为参数提供给MRegisterMiniportDriver函数 MRegisterMiniportDriver会首先 ...
分类:其他好文   时间:2020-10-30 12:40:37    阅读次数:25
MT7621调试FOTA升级中的问题
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
conky配置(附配置项作用解释)
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
问题描述:com.mysql.jdbc.exceptions.jdbc4.MySQLTransactionRollbackException: Lock wait timeout exceeded; try restarting transaction 方案一、临时解决此问题 查找出此问题的thre ...
分类:数据库   时间:2020-10-29 10:26:12    阅读次数:27
Python字符串string常用方法和函数
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
SQL查询数据库中所有表名
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
116. Populating Next Right Pointers in Each Node 连接右节点
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操作
Python自动的os库是和操作系统交互的库,常用的操作包括文件/目录操作,路径操作,环境变量操作和执行系统命令等。 文件/目录操作 获取当前目录(pwd): os.getcwd() 切换目录(cd): os.chdir('/usr/local/') 列出目录所有文件(ls):os.listdir( ...
分类:编程语言   时间:2020-10-27 11:33:55    阅读次数:30
36516条   上一页 1 ... 58 59 60 61 62 ... 3652 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!