Parameter | Description |
---|---|
Start Date/Time | The date and time at which you can start to generate random dates. |
End Date/Time | The date and time at which you can stop to generate random dates. |
Exclude | The days of the week that you do not want to include in the generated dates. You can enter up to two days, and both the days cannot be same. |
Null Values | A list of global rules or default rule that are available for the date data type. A null value is a value that a default rule or a global rule generates in the target column for the date data type. |
Invalid Values | A list of global rules or default rule that you can select for the date data type. Any value that is less than the minimum or more than the maximum for a specified date range is not valid. Any date that falls on excluded dates is not valid. |
Parameter | Description |
---|---|
Random | A range provided to generate random data. You can select Random to specify the range of the string for data generation. |
Minimum Length | The minimum length for the string datatype. Default is 1. |
Maximum Length | The maximum length for the string datatype. Default is the maximum value that the column permits. |
From Regular Expression | A regular expression to generation random data. You can select From Regular Expression to create fixed percentage of data for generation. |
Pattern | A regular expression that describes the format of generated data. |
Distribution | The percentage of rows with the regular expression data. If you want to use more expressions, you can add more rows. |
Generate Unique Values | Generates unique data values. You cannot generate unique values when you select From Regular Expression. |
Null Values | A list of global rules or default rule that are available for the string datatype. A null value is a value that a default rule or a global rule generates in the target columns for the string datatype. |
Invalid Values | A list of global rules or default rule that you can select for the string datatype. Any value that is less than the minimum length or more than maximum length for a specified range is not valid. A string that does not match the specified pattern is not valid. You cannot generate values that are not valid when you select From Regular Expression. |
Parameter | Description |
---|---|
Random | A rule to generate random data. You can select Random to specify the range of numeric values for data generation. |
Minimum Value | The minimum value for the numeric datatype. Default is 0. |
Maximum Value | The maximum value for the numeric datatype. Default is the maximum value that the column permits. |
From Regular Expression | A regular expression to generation random data. You can select From Regular Expression to create fixed percentage of data for generation. |
Pattern | A regular expression that describes the format of generated data. |
Distribution | The percentage of rows with the regular expression data. If you want to use more expressions, you can add more rows. |
Generate Unique Values | Generates unique data values. You cannot generate unique values when you select From Regular Expression. |
Null Values | A list of global rules or default rule that are available for the numeric datatype. A null value is a value that a default rule or a global rule generates in the target for the numeric datatype. |
Invalid Values | A list of global rules or default rule that you can select for the numeric datatype. Any value that is less than the minimum or more than the maximum for a specified range is not valid. A value that does not match the specified pattern is not valid. You cannot generate values that are not valid when you select From Regular Expression. |
Pattern | Sample Output |
---|---|
4\d{3}-\d{4}-\d{4}-\d{4} | 4312-0036-5436-0876 |
3\d{4} \d{4} \d{6} | 3852 0000 023237 |
Pattern | Sample Output |
---|---|
\d{3}\.\d{3}\.\d{4} | 617.555.1212 |
\d{3}-\d{3}-\d{4} | 617-555-1212 |
\(\d{3}\) \d{3}-\d{4} | (617) 555-1212 |
\+\d\.\d{3}\.\d{3}\.\d{4} | +1.617.555.1212 |
\d\.\d{3}\.\d{3}\.\d{4} | 1.617.555.1212 |
Pattern | Sample Output |
---|---|
\d{3}-\d{3}-\d{3} | 289-645-236 |
\d{3}\.\d{3}\.\d{3} | 289.645.236 |
\d{3} \d{3} \d{3} | 289 645 236 |
Pattern | Sample Output |
---|---|
\d{3}-\d{2}-\d{4} | 999-99-9999 |
Pattern | Sample Output |
---|---|
(1|3|5|7|8|10|12)-([1-9]|[12][0-9]|30|31)-(200[0-9]|201[0-3]) | 5-30-2013 |
(4|6|9|11)-([1-9]|[12][0-9]|30)-(200[0-9]|201[0-3]) | 11-22-2012 |
(0[1-9]|1[0-2])\/((0[1-9]|2\d)|3[0-1])\/(19\d\d|200[0-3]) | 12/31/2003 |
Pattern | Sample Output |
---|---|
([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]) | 255.255.0.0 |
(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9]) | 192.168.0.1 |
Pattern | Sample Output |
---|---|
([A-Z][a-z]{2}_\d+) | Idd_1111 |
([A-Z][A-Z]-\d\d\d\d) | ID-4321 |
Example | Pattern |
---|---|
Credit card number | You enter the pattern as 5\d{15} to generate a sample output as 5312003654360876. |
Phone number | You enter the pattern as \d{10} to generate a sample output as 6175551212. |
Social Insurance number | You enter the pattern as \d{9} to generate a sample output as 289645236. |
Social Security number | You enter the pattern as \d{9} to generate a sample output as 999999999. |