The power of VSTE DBPro data generation, lays in the fact you can generate data that closely matches your domain values allowed in your environment. The problem is that knowledge of the allowed and disallowed domain values can not always be derived from the schema, so you have to go in to the designer and configure the generators for your columns.
One way to generate data that matches you needs is to use the Regular Expression generator, but using regular expressions can be intimidating, so here a simple list of example RegEx expressions that you can "re-use" in your environment.
Simple gender representation:
Various phone number formats:
ZIP codes:
Address:
City names:
First & last names:
E-mail addresses:
Social Security number:
Credit card number:
Credit card names:
Shippers:
An Example:
Table structure:
CREATE TABLE [dbo].[Customer](
CustomerID INT IDENTITY(1, 1) NOT NULL, FirstName NVARCHAR(50) NOT NULL,LastName NVARCHAR(50) NOT NULL,Gender CHAR(1) NOT NULL,Address NVARCHAR(50) NOT NULL,City NVARCHAR(50) NOT NULL,ZipCode CHAR(15) NOT NULL,PhoneNumber VARCHAR(20) NOT NULL,SSN CHAR(15) NOT NULL,email VARCHAR(50) NULL
);
Expressions used:
The preview result: