sql 基礎:
1、 insert into() values()
自增id @@identity
2、修改資料庫名稱:
exec sp_renamedb '元資料庫名','新資料庫名' 在單模式下進行
簡單模式:1、右擊資料庫屬性;
2、點選選項;
3、許可權中選擇簡單模式;
寫程式的人,往往需要分析所寫的sql語句是否已經優化過了,伺服器的響應時間有多快,這個時候就需要用到sql的statistics狀態值來檢視了。
通過設定statistics我們可以檢視執行sql時的系統情況。選項有profile,io ,time。介紹如下:
set statistics profile on:顯示分析、編譯和執行查詢所需的時間(以毫秒為單位)。
set statistics io on:報告與語句內引用的每個表的掃瞄數、邏輯讀取數(在快取記憶體中訪問的頁數)和物理讀取數(訪問磁碟的次數)有關的資訊。
set statistics time on:顯示每個查詢執行後的結果集,代表查詢執行的配置檔案。
使用方法:開啟sql server 查詢分析器,輸入以下語句:
set statistics profile on
set statistics io on
set statistics time on
go /*--你的sql指令碼開始*/
select [testcase] from [testcaseselect]
go /*--你的sql指令碼結束*/
set statistics profile off
set statistics io off
set statistics time off
sql server 2008語言基礎 集合
declare t table n int insert into t values 0 1 2 3 4 5 6 7 8 9 select from t 返回在2008年1月有訂單活動,而在08年2月沒有訂單活動的客戶和雇員.select custid,empid from sales.orders...
sql server 2008語言基礎 表表示式
返回每個雇員處理過的訂單的最近日期.select empid,max orderdate as maxorderdate from sales.orders group by empid 封裝上面的結果集,並和order表連線,為每個雇員返回其訂單日期最近的訂單資訊.with t as select...
Sql Server 2008 收縮日誌
收縮日誌 alter database dnname set recovery with no wait goalter database dnname set recovery 簡單模式 gouse dnname godbcc shrinkfile n dnname log 11,truncate...