我想提高一些刀片的速度对我工作的应用程序。 我原本创作了一批这样的:
insert tableA (field1, field2) values (1,'test1'), (2, 'test2')
此SQL Server上的伟大工程,2008年及以上,但我仍需要插入到SQL Server 2005我的问题是将我得到使用批处理任何这样的性能优势上工作:
insert tableA (field1, field2)
select 1, 'test1'
union all
select 2, 'test2'
在此批:
insert tableA (field1, field2) values (1, 'test1')
insert tableA (field1, field2) values (2, 'test2')