1.暫存資料表
暫存資料表與永久表相似,但暫存資料表儲存在 tempdb 中,當不再使用時會自動刪除。
暫存資料表有局部和全域兩種類型
2者比較:
局部暫存資料表的名稱以符號 (#) 打頭
僅對當前的使用者串連是可見的
當使用者執行個體中斷連線時被自動刪除
全域暫存資料表的名稱以符號 (##) 打頭
任何使用者都是可見的
當所有引用該表的使用者中斷連線時被自動刪除
實際上局部暫存資料表在tempdb中是有唯一名稱的
例如我們用sa登陸一個查詢分析器,再用sa登陸另一查詢分析器
在2個查詢分析器我們都允許下面的語句:
use pubs
go
select * into #tem from jobs
分別為2個使用者建立了2個局部暫存資料表
我們可以從下面的查詢語句可以看到
SELECT * FROM [tempdb].[dbo].[sysobjects]
where xtype='u'
判斷暫存資料表的存在性:
if object_id('tempdb..#tem') is not null
begin
print 'exists'
end
else
begin
print 'not exists'
end
特別提示:
1。在動態sql語句中建立的局部暫存資料表,在語句運行完畢後就自動刪除了
所以下面的語句是得不到結果集的
exec('select * into #tems from jobs')
select * from #tems
2。在預存程序中用到的暫存資料表在過程運行完畢後會自動刪除
但是推薦顯式刪除,這樣有利於系統
ii。遊標
遊標也有局部和全域兩種類型
局部遊標:只在聲明階段使用
全域遊標:可以在聲明它們的過程,觸發器外部使用
判斷存在性:
if CURSOR_STATUS('global','遊標名稱') =-3 and CURSOR_STATUS('local','遊標名稱') =-3
begin
print 'not exists'
end
SELECT * FROM [tempdb].[dbo].[sysobjects] where xtype='u'
判斷暫存資料表的存在性:
if object_id('tempdb..#tem') is not null
begin
print 'exists'
end
else
begin
print 'not exists'
end
特別提示:
1。在動態sql語句中建立的局部暫存資料表,在語句運行完畢後就自動刪除了
所以下面的語句是得不到結果集的
exec('select * into #tems from jobs')
select * from #tems
2。在預存程序中用到的暫存資料表在過程運行完畢後會自動刪除
但是推薦顯式刪除,這樣有利於系統
ii。遊標
遊標也有局部和全域兩種類型
局部遊標:只在聲明階段使用
全域遊標:可以在聲明它們的過程,觸發器外部使用
判斷存在性:
if CURSOR_STATUS('global','遊標名稱') =-3 and CURSOR_STATUS('local','遊標名稱') =-3
begin
print 'not exists'
end
SELECT * FROM [tempdb].[dbo].[sysobjects] where xtype='u'
判斷暫存資料表的存在性:
if object_id('tempdb..#tem') is not null
begin
print 'exists'
end
else
begin
print 'not exists'
end
特別提示:
1。在動態sql語句中建立的局部暫存資料表,在語句運行完畢後就自動刪除了
所以下面的語句是得不到結果集的
exec('select * into #tems from jobs')
select * from #tems
2。在預存程序中用到的暫存資料表在過程運行完畢後會自動刪除
但是推薦顯式刪除,這樣有利於系統
ii。遊標
遊標也有局部和全域兩種類型
局部遊標:只在聲明階段使用
全域遊標:可以在聲明它們的過程,觸發器外部使用
判斷存在性:
if CURSOR_STATUS('global','遊標名稱') =-3 and CURSOR_STATUS('local','遊標名稱') =-3
begin
print 'not exists'
end