表A是tempdb中的普通表。表B是本地临时表。从A到B复制匹配某些条件的行的最快方法是什么。表B最初是空的。
快于:
insert into #TableB
select * from TableA
答案 0 :(得分:2)
SELECT *
INTO MyNewTable
FROM MyTable
或备份表并手动恢复。
答案 1 :(得分:0)
没有比
指令更快的东西>
insert into #TableB -- this is the 'local (session) temp table' ?
select *
from tempdb..TableA -- this is the 'normal table in tempdb' ?
where <condition>