Dummy customer identity - using functions in Data Distiller | Community
Skip to main content
Michael_Soprano
Level 10
November 18, 2025
Question

Dummy customer identity - using functions in Data Distiller

  • November 18, 2025
  • 1 reply
  • 93 views

How to generate such a dummy identity using Data Distiller? Do you know any function which can create dummy str/int?

1 reply

Level 3
November 19, 2025

hi, perhaps create a guid ? In data distiller i think the command is UUID()

Adobe Employee
November 20, 2025

Opinions differ of course, but I personally would never generate any kind of random identity.

 

Instead I've always used deterministic methods, such as concatenating other fields from the SELECT row result to construct a unique identity from that.

 

(This also means being sure to use DISTINCT or similar in the SELECT query to only get unique combinations of values used in that concatenation.)