Robot进行数据库的并发测试[1]

发表于:2010-04-22来源:作者:点击数: 标签:数据库robotRobotROBOT
Robot进行 数据库 的并发测试[1] 软件测试 第一步:创建演示程序:打开 SQL SERVER查询分析器,在SQL SERVER测试数据库中执行下列脚本(脚本执行操作:创建表testtable,并插入一条记录;创建存储过程test): if exists (select * from dbo.sysobjects where i

  Robot进行数据库的并发测试[1]   软件测试

  第一步:创建演示程序:打开SQL SERVER查询分析器,在SQL SERVER测试数据库中执行下列脚本(脚本执行操作:创建表testtable,并插入一条记录;创建存储过程test):

  if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Test]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)

  drop procedure [dbo].[Test]

  GO

  if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[testtable]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)

  drop table [dbo].[testtable]

  GO

  CREATE TABLE [dbo].[testtable] (

  [testid] [int] NULL ,

  [counts] [int] NULL

  ) ON [PRIMARY]

  GO

  insert into testtable (testid,counts) values (1,0)

  GO

  SET QUOTED_IDENTIFIER ON

  GO

  SET ANSI_NULLS ON

  GO

  CREATE Procedure dbo.Test

  as

  declare @count int

  begin tran TEST

  select @count=counts from testtable where testid=1

原文转自:http://www.ltesting.net