Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Remove Duplicates creating a copy not filtering source

I have a large source data set and am attempting to extract a unique sub-set of data. All the instructions I've read reference the same instructions making a duplicate of the source table with refere...
  • Anonymous's avatar
    Anonymous
    5 years ago

    I would actually duplicate the table instead of referencing it. This way it goes through the same logic, but is a separate query. Then you can make your distinct table that does not force the other table to evaluate. You might also wish to disable loading of the original query, if you are using it in other queries.

    --Nate