Comments
Sort by recent activity
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...