1、查看连接到‘TestDB2’数据库的连接 select * from master.dbo.sysprocesses where dbid = DB_ID('TestDB2') *查询某个数据库用户的连接情况 sp_who 'sa' 2、查看数据库允许的最大连接 select @@MAX_CON... ...
分类:
数据库 时间:
2020-09-17 17:37:42
阅读次数:
48
一、用如下语句找出sql到底是在哪里慢了 示例: SET STATISTICS io ON SET STATISTICS time ON go 你要测试的sql语句 select top 100 * from TBL_Cot_RecStaticList go SET STATISTICS profi ...
分类:
数据库 时间:
2020-09-17 17:34:16
阅读次数:
40
QSS中 QLabel { background-color: rgba(255, 255, 224, 50%); border: 2px solid black; } 0%表示全透明,100%表示不透明 ...
分类:
其他好文 时间:
2020-09-17 17:29:08
阅读次数:
20
.get("RZZGMCM") instanceof String){ formbean.getBean().put("RZZGMCM_ARR", (formbean.getBean().get("RZZGMCM").toString().split("," ...
分类:
编程语言 时间:
2020-09-17 17:13:46
阅读次数:
32
int romanToInt(char * s){ int* hash = (int*)calloc(26,sizeof(int)); hash['I'-65] = 1; hash['V'-65] = 5; hash['X'-65] = 10; hash['L'-65] = 50; hash['C' ...
分类:
其他好文 时间:
2020-09-17 17:09:44
阅读次数:
20
''' 斗地主:v1.0 ''' import random def creat_poker(): # 扑克9种:2-10 poker_num = [str(i) for i in range(2, 11)] # 剩下的4种 poker_str = ['A', 'J', 'Q', 'K'] # 2个 ...
分类:
编程语言 时间:
2020-09-17 17:07:42
阅读次数:
27
windows时间同步小脚本: @echo off net stop w32time net start w32time w32tm /config /manualpeerlist:时间服务器IP /syncfromflags:manual /update ...
1. 登录服务器 2. 登录docker docker exec -it ***容器名*** /bin/bash 3. 查看 PHP版本 php -v 4. 查找扩展包 yum search bcmath 5 选择版本并安装 yum install php72-php-bcmath.x86_64 6 ...
分类:
Web程序 时间:
2020-09-17 16:58:55
阅读次数:
47