繁体   English   中英

根据Redshift中的关键列更新或插入

[英]Update or Insert based on key columns in Redshift

我每天都将CSV文件加载到Redshift。 为了处理重复项,我将文件加载到登台表,然后使用基于键列的更新或插入脚本加载到目标表。 最近,我在目标表中意外发现重复数据。

我仔细检查了我的脚本,没有发现重复的任何原因。 以下是我正在使用的更新和插入脚本格式。

对于插入:

      Insert into target (key1, key2, col3, col4)
      Select key1, key2, col3, col4 
      From stage s where not exists (select 1 from target t
                        where s.key1 = t.key1 and)
                        s.key2 = t.key2);

并进行更新:

      Update target Set
          key1=s.key1, key2=s.key2, col3=s.col3, col4=s.col4
      From stage s where target.key1=s.key1 and target.key2=s.key2;

任何帮助表示赞赏。

我也遇到了这个。 问题出在插入...选择...中,选择本身会产生重复。 对我们来说,一种解决方案是使用游标(在Redshift之外)运行一次select并一次插入一条记录,但这被证明存在性能问题。 相反,我们现在使用初始选择检查重复项

select key1,key2 from stage group by key1,key2 having count(*) > 1;

如果返回记录,则停止该过程。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM