日期:2011-05-02 15:22:00 来源:本站整理
<b>Whats new in Microsoft SQL Server 2000(二)</b>[MSSQL防范]
本文“<b>Whats new in Microsoft SQL Server 2000(二)</b>[MSSQL防范]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
在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的跟随速度是越来越快了,提高也是越来越多了,这也是它的市场份额越来越大的缘由.下期预告:带索引的视图争取做到每日一贴吧,写东西真的是很累
以上是“<b>Whats new in Microsoft SQL Server 2000(二)</b>[MSSQL防范]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论