Activity overview
Latest activity by CHP
I am seeing this same error as well. I deleted some previously linked databases recently because I no longer needed to track them... could this be a problem? / comments
I am seeing this same error as well. I deleted some previously linked databases recently because I no longer needed to track them... could this be a problem?
Any thoughts? / comments
Any thoughts?
Unfortunately not, it happens even if I ask for 1000 rows in each table. / comments
Unfortunately not, it happens even if I ask for 1000 rows in each table.
We are using the Foreign Key Generator for the ParentID field. All the fields (AccountID/ParentID and FinYearID) are GUID type.
Relationships exist in the database as follows: Account table has FinYearID which is a foreign key to FinancialYear table's ID field, AccountID which is unique within the set of accounts with the same FinYearID, and ParentID which contains the AccountID of it's parent account (has the same FinYearID).
We are asking the generator to delete data from table before generation. I am asking for 100 rows in the Account table and 3 rows in the FinancialYear table. I am asking it to repeat key values between 0 and 5 times. Even though the ParentID field is marked as Allow Nulls in the database, the "Allow null values" option in Data Generator is not available. I would actually like to ask for the generator to leave the ParentID field null for most records, but it won't let me. / comments
We are using the Foreign Key Generator for the ParentID field. All the fields (AccountID/ParentID and FinYearID) are GUID type.
Relationships exist in the database as follows: Account table has Fi...
Foreign key generator with compound key
We're using SQL Data Generator 1.2. We have a table that is self-referential based on a compound key.
(In an accounting program, it's a parent-child relationship, they're accounts, and can have pa...