Activity overview
Latest activity by KD34XBR960
My use case is to get a subset of production data, sanitize it, and move it to a dev server using SQL Data Generator. I solved the issue by using the logic in a view. I find it odd not being able to apply the same logic in SQL Data Generator (i.e., insert source value if other column = "" else insert ""). Is this a feature that could be added? For example, add column_value to the config dictionary for a Python script or add if/then/else support to the Simple expression generator (e.g., OtherColumn == "" ? CurrentColumn : ""). / comments
My use case is to get a subset of production data, sanitize it, and move it to a dev server using SQL Data Generator. I solved the issue by using the logic in a view. I find it odd not being able t...
How do I use If Then Else logic using values from the current column and another column?
I tried using a Python script, but it doesn't recognize the current column:def main(config): if OtherColumn == "": return CurrentColumn else: return ""How do I referenc...