小任班长 发布的文章

查看各数据库的连接数:

SELECT 
    DB_NAME(dbid) as DBName, 
    COUNT(dbid) as NumberOfConnections,
    loginame as LoginName
FROM
    sys.sysprocesses
WHERE 
    dbid > 0
GROUP BY 
    dbid, loginame

查看总连接数

SELECT 
    COUNT(dbid) as TotalConnections
FROM
    sys.sysprocesses
WHERE 
    dbid > 0
    

连接的更多信息(账号等), run:

sp_who2 'Active'

Note: The SQL Server account used needs the 'sysadmin' role (otherwise it will just show a single row and a count of 1 as the result),注意,需要sysadmin权限。

This shows the number of connections per each DB:

SELECT 
    DB_NAME(dbid) as DBName, 
    COUNT(dbid) as NumberOfConnections,
    loginame as LoginName
FROM
    sys.sysprocesses
WHERE 
    dbid > 0
GROUP BY 
    dbid, loginame

show total Connections

SELECT 
    COUNT(dbid) as TotalConnections
FROM
    sys.sysprocesses
WHERE 
    dbid > 0
    

If you need more detail, run:

sp_who2 'Active'

Note: The SQL Server account used needs the 'sysadmin' role (otherwise it will just show a single row and a count of 1 as the result)

TGitCache任务管理器中杀掉后依然会重新启动。这个进程的功能是实时扫描纳入SVN版本控制的文件夹,如有修改,显示不同的图标以示修改。但是这会占用内存、IO等资源

1.关闭方法:Explorer右键菜单→TortoiseGIt→Settings→Icon Overlays→Status cache,将这一项设成None。
44709-7l7fzq8ikr6.png

2.刷新图标状态
使用“Explorer右键菜单→TortoiseGIt→Check for modifications”显示差异

Have you ever needed to view your chat messages while reading an article within WeChat or playing a Mini Game? It’s a hassle to back out of your article mid-stream in order to check your messages.

Floating Window was initially introduced in 2017 as a way for you to save your place and minimize an article while checking other parts of WeChat like chats. We’ve now greatly expanded Floating Window so that you can “float” up to 10 different windows. Windows can be articles, document previews, or nearly any other type of content. When viewing a music or audio Mini Program, you’ll also be able to see what’s playing via our new music display in Floating Window. Floating Window makes multi-tasking within WeChat a breeze.
34732-jq0tp1373wn.png
When viewing an article, document preview, or other content, simply swipe right and hold to minimize the article to your Floating Window.

25929-cdj1scvk6.png

about more features,refer to:
https://blog.wechat.com/2019/07/17/wechat-7-0-5-for-ios-and-android/

1.点击Chrome浏览器右上角三个点,点击更多工具中的拓展程序 或 地址栏输入chrome://extensions/
2.打开开发者模式
37535-d4pff0q9sxg.png

3.将ctx文件的扩展名修改成 zip,拖放到插件管理页面 即可安装。

或者,修改ctx扩展名为rar或zip,解压后,通过“加载已解压的扩展程序”方式安装。

17595-5yxnxi7286.png

总结:

Chrome插件版
1.下载Chrome插件版压缩包,并解压缩
2.打开 Chrome 扩展页面,勾选右上角「开发者模式」
3.选择「加载已解压的扩展程序…」,选择刚刚解压缩的文件夹
4.开始使用

免责声明
本博客部分内容来自于互联网,不代表作者的观点和立场,如若侵犯到您的权益,请联系[email protected]。我们会在24小时内进行删除。