我试图根据主键剔除表格列表(~30)中的数据。
我的方法是:
1.创建一个中间表&用每个表格的所需数据加载它
2.Truncate原表
3.将中间表中的数据插回到原始表中。
这是我到目前为止使用的代码:
declare @table nvarchar(max)
open tab
fetch next from tab into @table
while(@@FETCH_STATUS = 0)
begin
print @table
exec ('select * into ' +@table+'_intermediate from '+@table+' where P_ID in( select P_ID from pc_table )')
exec ('truncate table '+@table)
exec ('insert into '+@table+' select * from '+@table+'_intermediate')
exec ('drop table '+@table+'_intermediate')
fetch next from tab into @table
end
close tab
deallocate tab
我遇到了错误:
Cannot insert an explicit value into a timestamp column.
Use INSERT with a column list to exclude the timestamp column,
or insert a DEFAULT into the timestamp column.
因此,该错误告诉我,我无法在时间戳列中插入任何内容。
为了避免选择时间戳,我需要避免选择它(即使用select *)。
是否有一种简单的方法可以选择除timestamp类型之外的所有列,还是需要进入信息模式并为每个表构建动态select语句?
(或隐含的问题,是否有更好的方式来做我想做的事情?)
由于
答案 0 :(得分:1)
简短的回答是你需要在有时间戳列的任何地方加上'null'。
我创建了这个小脚本来创建列的列表,因此我将该列表放入DML语句中:
declare @sel_statement nvarchar(max)=''
declare @col nvarchar(100) =''
declare @num_rows int =0
declare @dat_type nvarchar(30)
declare cols cursor for
select column_name, data_type
from information_schema.COLUMNS
where TABLE_NAME = @table --uses table fetched from tab cursor
open cols
fetch next from cols into @col, @dat_type
while(@@FETCH_STATUS = 0)
begin
set @num_rows +=1
if @dat_type = 'timestamp'
set @sel_statement += 'null'
else
set @sel_statement += @col
fetch next from cols into @col, @dat_type
if @@FETCH_STATUS=0
set @sel_statement += ','
end
close cols
deallocate cols
这不是最漂亮的东西,但它有效。
希望如果他们遇到这个问题,这可以给别人一臂之力。
答案 1 :(得分:1)
如果它是数百万行,而不是数十亿,那么简单
DELETE from TABLE where P_ID not in (select P_ID from pc_table)
(可能是分批)可能是可以接受的。首先删除所有索引(ID
上的主键除外)和约束,删除行,重新创建索引。更好的是,不是删除,而是禁用索引,然后使用REBUILD INDEX
启用它们。
还有一件事需要考虑。如果您确实使用了中间表,那么在reINSERT之后,timestamp
列的所有值都会变得不同。如果您不关心在此列中保留值,则只需在处理之前删除此列,并在完成所有操作后将其添加回来。
如果性能很重要,则应以您选择的任何方法禁用目标表上的约束和索引。
这将我们带到另一种方法:
SELECT * INTO intermediate_table ...
适用于timestamp
列。
是
INSERT INTO final_table SELECT * FROM intermediate_table ...
不适用于时间戳列。
因此,您可以TRUNCATE final_table
而不是DROP final_table
,而不是第二次SELECT * INTO final_table ...
。
因此,您也会保留timestamp
列的值。当然,如果您完全DROP
,则必须重新创建原始表的所有约束和索引。
答案 2 :(得分:0)
怎么样
delete from TABLE where P_ID not in( select P_ID from pc_table )