2 0中獲取資料庫連線統計資料

2021-04-06 16:50:19 字數 1447 閱讀 6395

<%

@ import namespace="

system.data

"%>

<%

@ import namespace="

system.data.sqlclient

"%>

<%

@ page language="

c#"

%>

<

script

runat

="server"

>

void

page_load(object sender, eventargs e)

}script

>

<

html

>

<

head

id="head1"

runat

="server"

>

<

title

>

untitled page

title

>

head

>

<

body

>

<

form

id="form1"

runat

="server"

autocomplete

="on"

>

<

asp:label

id="label1"

runat

="server"

text

="">

asp:label

>

form

>

body

>

html

>

執行後的結果就是sqlserver連線統計資料結果:

key: networkservertime = 0

key: bytesreceived = 156913

key: unpreparedexecs = 1

key: sumresultsets = 1

key: selectcount = 1

key: preparedexecs = 0

key: connectiontime = 30

key: executiontime = 30

key: prepares = 0

key: bufferssent = 1

key: selectrows = 830

key: serverroundtrips = 1

key: cursoropens = 0

key: transactions = 0

key: bytessent = 48

key: buffersreceived = 20

key: idurows = 0

key: iducount = 0

利用資料庫儲存過程統計資料庫的訪問量

1.新建訪問量資訊表 建立表checkdbstatus create table tbcheckdbstatus check id int 10 unsigned not null auto increment,time datetime not null default 0000 00 00 00...

SQL和Oracle中統計資料庫中表個數及表名

sql中統計表的個數 select count from sys.objects where xtype u 表個數 select count from sys.objects where xtype v 檢視個數 select count from sys.objects where xtype ...

統計資料庫空間的使用情況

公司資料庫伺服器的空間越來越緊張 最大的資料庫達到400個g,100g 以上的庫就有四五個。當然我們應該感到欣慰,資料高速增長說明我們的業務發展較好,但不可否認,我們的應用設計也存在著某些問題。諸如 濫建索引 過度冗餘或者是系統在設計時沒有考慮對超過價值期的歷史資料進行清理。下面這個指令碼用來獲取資...

統計資料庫空間的使用情況

公司資料庫伺服器的空間越來越緊張 最大的資料庫達到400個g,100g 以上的庫就有四五個。當然我們應該感到欣慰,資料高速增長說明我們的業務發展較好,但不可否認,我們的應用設計也存在著某些問題。諸如 濫建索引 過度冗餘或者是系統在設計時沒有考慮對超過價值期的歷史資料進行清理。下面這個指令碼用來獲取資...

ORACLE資料庫的統計資料及其生成方式

oracle資料庫的統計資料及其生成方式 oracle資料庫的pl sql語句執行的優化器,有基於代價的優化器 cbo 和基於規則的優化器 rbo rbo的優化方式,依賴於一套嚴格的語法規則,只要按照規則寫出的語句,不管資料表和索引的內容是否發生變化,不會影響pl sql語句的 執行計劃 cbo自o...