Posts
Sort by recent activity
Data Generator and Check Contstraints.
Given the check constraint:
CONSTRAINT c_BillingTransaction__InvoiceID_ReceiptID
CHECK (InvoiceID IS NULL OR ReceiptID IS NULL)
Is there an easy way to have data generator understand if you fill in...
Multi-part keys
Let's say you have a table with three columns that make up a unique constraint, Each of the columns is a foreign key to another table. You want to use data generator to insert data into those colu...