Whats new in Microsoft SQL Server 2000(二)

來源:互聯網
上載者:User
server 在SQL 2000裡面,使用者可以建立自訂的函數,函數傳回值可以是一個值,也可以是一個表。
可能大家還不是太清楚,自訂函數有什麼作用。以前在最佳化資料庫的貼子中提到過,盡量不要是用遊標,因為這樣會帶來更大的
系統開銷。但是有的時候你必須使用遊標,舉一個例子,比如我希望得到一個內容是一段漢字的欄位的拼音。但是要想把漢字轉化
為拼音,必須通過查表來完成,那麼你就必須先開出一個遊標,然後再對欄位中的每一個字進行查表。
但是現在我們可以使用自訂函數來完成同樣的操作,就大大的節省了系統開銷。Example:/*使用自訂函數*/
CREATE FUNCTION Translate ( @Original_Text varchar(100))RETURNS varchar(500)AS
BEGIN DECLARE @intLength as tinyint DECLARE @strTemp as varchar(10)
DECLARE @strResult as varchar(500) DECLARE @strChar as varchar(2)
DECLARE @i as tinyint SET @intLength = len(@Original_Text)
SET strResult = '' WHILE @i <= @intLength BEGIN
SELECT @strChar = substring(@Original_Text, @i, 1)
SET @strTemp = null
SELECT @strTemp = spell FROM wordspell WHERE word = @strChar
SELECT @strResult = @strResult + isnull(@strTemp, @strChar)
SELECT @i=@i+1 END RETURN strResult ENDGO
UPDATE phonecode SET namesame=Translate(name), addsame=Translate(address)
/*使用遊標*/create proc trans asDeclare @i integer, @char varchar(2),
@tempchr varchar(2), @strtemp varchar(100), @strtemp1 varchar(100),
@strname varchar(100), @straddr varchar(100)
Declare Cur_trans Cursor local DYNAMIC For select [name],[address]
from phonecodeselect @char=""Open Cur_transFetch Cur_trans
Into @strname,@straddrSet nocount onwhile @@Fetch_Status=0begin select @i=1
select @strtemp="" select @strname = ltrim(rtrim(@strname))
while @i<=len(@strname) begin
select @char = substring(@strname,@i,1) select @tempchr = null
select @tempchr=spell from TYPER.wordspell where word=@char
select @strtemp=@strtemp + isnull(@tempchr,@char) select @i=@i+1
end select @i=1 select @strtemp1="" select @char=''
select @straddr = ltrim(rtrim(@straddr)) while @i<=len(@straddr) begin
select @char = substring(@straddr,@i,1) select @tempchr = null
select @tempchr=spell from TYPER.wordspell where word=@char
select @strtemp1=@strtemp1 + isnull(@tempchr,@char)
select @i=@i+1 end
Update phonecode set namesame=@strtemp,addsame=@strtemp1 where CURRENT OF Cur_trans
Fetch next from Cur_trans Into @strname,@straddrendclose Cur_trans
Deallocate Cur_transset nocount offreturn 0go
相比之下,不但執行效率提高了,代碼的可讀性也好多了。其實其他資料庫已經提供了這樣的功能(不記得是什麼資料庫了),不
過MS的跟隨速度是越來越快了,提高也是越來越多了,這也是它的市場份額越來越大的原因。下期預告:帶索引的視圖爭取做到每日一貼吧,寫東西真的是很累的



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.