<bdo id='eGQ1M'></bdo><ul id='eGQ1M'></ul>

    <tfoot id='eGQ1M'></tfoot>
    <i id='eGQ1M'><tr id='eGQ1M'><dt id='eGQ1M'><q id='eGQ1M'><span id='eGQ1M'><b id='eGQ1M'><form id='eGQ1M'><ins id='eGQ1M'></ins><ul id='eGQ1M'></ul><sub id='eGQ1M'></sub></form><legend id='eGQ1M'></legend><bdo id='eGQ1M'><pre id='eGQ1M'><center id='eGQ1M'></center></pre></bdo></b><th id='eGQ1M'></th></span></q></dt></tr></i><div id='eGQ1M'><tfoot id='eGQ1M'></tfoot><dl id='eGQ1M'><fieldset id='eGQ1M'></fieldset></dl></div>

    <small id='eGQ1M'></small><noframes id='eGQ1M'>

    1. <legend id='eGQ1M'><style id='eGQ1M'><dir id='eGQ1M'><q id='eGQ1M'></q></dir></style></legend>

      如何确定 ms sql server 2005 中打开/活动连接的总数

      How to determine total number of open/active connections in ms sql server 2005(如何确定 ms sql server 2005 中打开/活动连接的总数)
      <legend id='EPCRz'><style id='EPCRz'><dir id='EPCRz'><q id='EPCRz'></q></dir></style></legend>
      • <tfoot id='EPCRz'></tfoot>

        • <bdo id='EPCRz'></bdo><ul id='EPCRz'></ul>
            <tbody id='EPCRz'></tbody>

        • <small id='EPCRz'></small><noframes id='EPCRz'>

            • <i id='EPCRz'><tr id='EPCRz'><dt id='EPCRz'><q id='EPCRz'><span id='EPCRz'><b id='EPCRz'><form id='EPCRz'><ins id='EPCRz'></ins><ul id='EPCRz'></ul><sub id='EPCRz'></sub></form><legend id='EPCRz'></legend><bdo id='EPCRz'><pre id='EPCRz'><center id='EPCRz'></center></pre></bdo></b><th id='EPCRz'></th></span></q></dt></tr></i><div id='EPCRz'><tfoot id='EPCRz'></tfoot><dl id='EPCRz'><fieldset id='EPCRz'></fieldset></dl></div>
              1. 本文介绍了如何确定 ms sql server 2005 中打开/活动连接的总数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我的 PHP/MS Sql Server 2005/win 2003 应用程序偶尔会变得非常无响应,内存/cpu 使用率不会飙升.如果我尝试从 sql management studio 打开任何新连接,那么它只会挂在打开的连接对话框中.如何确定活动连接总数ms sql server 2005

                My PHP/MS Sql Server 2005/win 2003 Application occasionally becomes very unresponsive, the memory/cpu usage does not spike. If i try to open any new connection from sql management studio, then the it just hangs at the open connection dialog box. how to deterime the total number of active connections ms sql server 2005

                推荐答案

                这显示了每个 DB 的连接数:

                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
                

                这给出了总数:

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

                如果您需要更多详细信息,请运行:

                If you need more detail, run:

                sp_who2 'Active'
                

                注意:使用的 SQL Server 帐户需要 'sysadmin' 角色(否则它只会显示单行和 1 作为结果)

                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)

                这篇关于如何确定 ms sql server 2005 中打开/活动连接的总数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Oracle: is there a tool to trace queries, like Profiler for sql server?(Oracle:是否有跟踪查询的工具,例如用于 sql server 的 Profiler?)
                Splitting the string in sql server(在 sql server 中拆分字符串)
                create table with sequence.nextval in oracle(在oracle中用sequence.nextval创建表)
                SQL recursive query on self referencing table (Oracle)(自引用表 (Oracle) 上的 SQL 递归查询)
                Composite Primary key vs additional quot;IDquot; column?(复合主键与附加“ID柱子?)
                How to check if a database exists in SQL Server?(如何检查数据库是否存在于 SQL Server 中?)
                  1. <legend id='g9BVX'><style id='g9BVX'><dir id='g9BVX'><q id='g9BVX'></q></dir></style></legend>
                      <bdo id='g9BVX'></bdo><ul id='g9BVX'></ul>
                      <i id='g9BVX'><tr id='g9BVX'><dt id='g9BVX'><q id='g9BVX'><span id='g9BVX'><b id='g9BVX'><form id='g9BVX'><ins id='g9BVX'></ins><ul id='g9BVX'></ul><sub id='g9BVX'></sub></form><legend id='g9BVX'></legend><bdo id='g9BVX'><pre id='g9BVX'><center id='g9BVX'></center></pre></bdo></b><th id='g9BVX'></th></span></q></dt></tr></i><div id='g9BVX'><tfoot id='g9BVX'></tfoot><dl id='g9BVX'><fieldset id='g9BVX'></fieldset></dl></div>
                    • <small id='g9BVX'></small><noframes id='g9BVX'>

                          <tbody id='g9BVX'></tbody>
                          <tfoot id='g9BVX'></tfoot>