深圳升蓝软件
数据库开发 .Net技术  |  ASP技术 PHP技术 JSP技术 应用技术类   
Hiblue Software

What's new in Microsoft SQL Server 2000(二)


March 25,2004
在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的跟随速度是越来越快了,提高也是越来越多了,这也是它的市场份额越来越大的原因。下期预告:带索引的视图争取做到每日一贴吧,写东西真的是很累的
Copyright © 2001-2008 Shenzhen Hiblue Software Team All rights reserved