What's new in Microsoft SQL Server 2000(二)
發(fā)布時(shí)間:2008-07-12 閱讀數(shù): 次 來(lái)源:網(wǎng)樂(lè)原科技
在SQL 2000里面,用戶可以建立自定義的函數(shù),函數(shù)返回值可以是一個(gè)值,也可以是一個(gè)表。
可能大家還不是太清楚,自定義函數(shù)有什么作用。以前在優(yōu)化數(shù)據(jù)庫(kù)的貼子中提到過(guò),盡量不要是用游標(biāo),因?yàn)檫@樣會(huì)帶來(lái)更大的
系統(tǒng)開(kāi)銷(xiāo)。但是有的時(shí)候你必須使用游標(biāo),舉一個(gè)例子,比如我希望得到一個(gè)內(nèi)容是一段漢字的字段的拼音。但是要想把漢字轉(zhuǎn)化
為拼音,必須通過(guò)查表來(lái)完成,那么你就必須先開(kāi)出一個(gè)游標(biāo),然后再對(duì)字段中的每一個(gè)字進(jìn)行查表。
但是現(xiàn)在我們可以使用自定義函數(shù)來(lái)完成同樣的操作,就大大的節(jié)省了系統(tǒng)開(kāi)銷(xiāo)。Example:/*使用自定義函數(shù)*/
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)
/*使用游標(biāo)*/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
相比之下,不但執(zhí)行效率提高了,代碼的可讀性也好多了。其實(shí)其他數(shù)據(jù)庫(kù)已經(jīng)提供了這樣的功能(不記得是什么數(shù)據(jù)庫(kù)了),不
過(guò)MS的跟隨速度是越來(lái)越快了,提高也是越來(lái)越多了,這也是它的市場(chǎng)份額越來(lái)越大的原因。下期預(yù)告:帶索引的視圖爭(zhēng)取做到每日一貼吧,寫(xiě)東西真的是很累的