小任班长 发布的文章

众所周知,现office办公套件,占用空间大,也会开启各种云同步,占用系统资源,影响效率。

云文档虽方便,但有时需要本地进行
84116-0bw86virkumv.png

所以,推荐WPS Office校园版,官方下载链接:
http://kad.www.wps.cn/wps/download/wps2011_school.19.802.exe

另推荐好用免费云文档:权限可控、多人协作、自动保存、完全免费

腾讯文档

腾讯文档是一款可多人协作的在线文档。
支持Word、Excel和PPT类型,打开网页就能查看和编辑,云端实时保存;
可多人实时编辑文档,权限安全可控。

89726-f7hck9lps9r.png

打开网页就能写
无需下载安装,打开网址 docs.qq.com 立即开始编辑。
随时随地任您使用
PC、Mac、iPad、iOS和Android,任意设备皆可顺畅访问、创建和编辑文档。

34663-sc32dcxcm1h.png

查看各数据库的连接数:

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/

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