Question

Snowflake duplicates

ave a major issue with duplicates in Snowflake. Data flow:

  1. From SAP I’m loading data to PSA layer (no duplicates here)

how to delete one of the duplicates


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Bobby Iliev
Site Moderator
Site Moderator badge
April 3, 2023

Hi there,

There seems to have been a similar question on the Snowflake community fourm here:

https://community.snowflake.com/s/question/0D50Z00008EJgemSAD/how-to-delete-duplicate-records-

I could suggest trying out the instructions from the accepted answer on how to handle deleting duplicate records, eg:

  • If all columns are duplicated, then the only solution that I am aware of is to do a SELECT DISTINCT from the table into a new table (and then rename/swap table names).
  • If only the key is duplicated, and within each key there are one or more other columns that can be used to form a composite key, then you can build a temp result that contains the composite key that you want to maintain.

Hope that this helps!

Best,

Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up