select @@error --返回最後執行的 transact-sql 語句的錯誤**(integer)。
select @@identity --返回最後插入的標識值。
select user_name() --返回使用者資料庫使用者名稱。
select @@connections --返回自上次sql啟動以來連線或試圖連線的次數。
select getdate() --當前時間。
select @@cpu_busy/100 --返回自上次啟動sql 以來 cpu 的工作時間(單位為毫秒)。
use tempdb select @@dbts as timestamp --為當前資料庫返回當前 timestamp 資料型別的值。這一 timestamp 值保證在資料庫中是唯一的。
select @@idle as temp --返回sql自上次啟動後閒置的時間(單位為毫秒)。
select @@io_busy as w --返回sql自上次啟動後用於執行輸入和輸出操作的時間(單位為毫秒)。
select @@langid as w --返回當前所使用語言的本地語言識別符號(id)。
select @@language as w --返回當前使用的語言名。
select @@lock_timeout as w --當前會話的當前鎖超時設定(單位為毫秒)。
select @@max_connections as w --返回sql上允許的同時使用者連線的最大數。返回的數不必為當前配置的數值。
exec sp_configure --顯示當前伺服器的全域性配置設定。
select @@max_precision as w --返回 decimal 和 numeric 資料型別所用的精度級別,即該伺服器中當前設定的精度。預設最大精度38。
select @@options as w --返回當前 set 選項的資訊。
select @@pack_received as w --返回sql自啟動後從網路上讀取的輸入資料報數目。
select @@pack_sent as w --返回sq自上次啟動後寫到網路上的輸出資料報數目。
select @@packet_errors as w --返回自sql啟動後,在sql連線上發生的網路資料報錯誤數。
select @@servername as w --返回執行sql伺服器名稱。
select @@servicename as w --返回sql正在其下執行的登錄檔鍵名。
select @@timeticks as w --返回sql伺服器一刻度的微秒數。
select @@total_errors as w --返回 sql伺服器自啟動後,所遇到的磁碟讀/寫錯誤數。
select @@total_read as w --返回 sql伺服器自啟動後讀取磁碟的次數。
select @@total_write as w --返回sql伺服器自啟動後寫入磁碟的次數。
select @@trancount as w --返回當前連線的活動事務數。
select @@version as w --返回sql伺服器安裝的日期、版本和處理器型別。
幾個很有用的SQL語句
1 獲取某個資料庫所有表的資料行數 select o.name,i.rowcnt from sysobjects o join sysindexes i on o.id i.id where o.type u and i.indid 1 and o.name dtproperties order b...
幾個很有用的SQL語句
1 獲取某個資料庫所有表的資料行數 select o.name,i.rowcnt from sysobjects o join sysindexes i on o.id i.id where o.type u and i.indid 1 and o.name dtproperties order b...
很有用的測試工具
1.findbugs findbugs是一種靜態 分析工具,可以通過位元組碼級對 存在的常見問題進行檢測,比如未關閉的資料庫連線,不支援國際化,存在死迴圈,還有很多其他的情況,是乙個很值得一用的工具,可以讓你的 更健壯。2.sourcemonitor 一款對 進行度量的工具,讓你快速了解 的檔案數,...