测试数据生成

目的

SQL Server 搭建日志传输,模拟灾难转移,在主库上不断生成测试数据,模拟生产环境。

生成测试数据脚本

表结构

--if table dbo.t1 exists, then drop it

IF OBJECT_ID('dbo.t1', 'U') IS NOT NULL 
DROP TABLE dbo.t1; 

--create table dbo.t1

CREATE TABLE [dbo].[t1](
	[id] [int] NULL,
	[dt] [datetime] NULL
) ON [PRIMARY]

测试数据生成

--generate test data

declare @i int
set @i = 1

while @i > 0
begin
  --指定等待1s后执行
  waitfor delay '00:00:01'
  insert into t1 values(@i, GETDATE())
  set @i = @i + 1
end
posted @ 2018-11-23 13:50  甲兵匪已  阅读(175)  评论(0编辑  收藏  举报