• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

What‘s new in Microsoft SQLServer2000(二)

发布: 2007-6-21 12:06 | 作者:   | 来源:   | 查看: 15次 | 进入软件测试论坛讨论

领测软件测试网

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

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网