--1、用selectinto天生年夜数据量的表你能够在语句运转之前检察你的ldf文件(log)
--然后在运转以后再检察,log增加很小,而建表的速率对照快
ifexists(select*fromdbo.sysobjectswhereid=object_id(N[tb_pwd3])andOBJECTPROPERTY(id,NIsUserTable)=1)
droptable[tb_pwd3]
GO
--天生一时表
selecttop256seq_no=identity(int,0,1)into#tfromsyscolumns
--天生暗码3位字典表内容
selectpwd=char(a.seq_no)+char(b.seq_no)+char(c.seq_no)intotb_pwd3from#ta,#tb,#tc
go
--2、用insertinto天生年夜数据量的表你能够在语句运转之前检察你的ldf文件(log)
--然后在运转以后再检察,log增加很快,而建表的速率也慢,要写log呀
ifexists(select*fromdbo.sysobjectswhereid=object_id(N[tb_pwd3])andOBJECTPROPERTY(id,NIsUserTable)=1)
droptable[tb_pwd3]
GO
createtabletb_pwd3(
pwdchar(3)
)
go
--天生一时表
selecttop256seq_no=identity(int,0,1)into#tfromsyscolumns
--天生暗码3位字典表内容
insertintotb_pwd3selectpwd=char(a.seq_no)+char(b.seq_no)+char(c.seq_no)from#ta,#tb,#tc
go