1

How would you do Delta Loads into Snowflake tables?

I have been looking on snowflakes documentation but I haven't been able to find anything on the topic.

Thanks

2tone_tony
  • 47
  • 1
  • 10
  • Try Snowflake Merge: https://docs.snowflake.net/manuals/sql-reference/sql/merge.html – Ambrish Dec 19 '18 at 00:39
  • Delta load can be handled in few ways , it's not snowflake dependent rather it's the way you implement it. As mentioned in the comment above merge is one way. Plain insert if you know there are no old data comming. – Fact Jan 25 '19 at 06:45

1 Answers1

1

Merge would be the standard way to do this in Snowflake:

https://docs.snowflake.net/manuals/sql-reference/sql/merge.html

https://community.snowflake.com/s/article/how-to-perform-a-mergeupsert-from-a-flat-file-staged-on-s3

Robert Long
  • 5,722
  • 5
  • 29
  • 50