How can we help you today? How can we help you today?

Creating sequence of Monthly Entries

I am trying to create a demo database for employee evaluations. Each employee gets 1 evaluation per month. I want to create evaluations for every month from 2010 to 2012.

So I have two tables, employee and reviews. In psuedo-code I would do something like:

Employee.GoToFirst
While .not Employee.EndOfFile do
For i = 2010 to 2012
For j = 1 to 12
Review.Add
Review.EmployeeID = Employee.ID
Review.Year = i
Review.Month = j
Next j
Next i
Employee.Next
End While

How would I do that with the Data Generator? TIA.
lukemmiller
0

Comments

1 comment

  • Manfred.Castro
    Unfortunately it is not currently possible to generate data based on data that has been/will be generated in another table/column.
    There is an existing feature request for this capability with reference number SDG-682.
    Manfred.Castro
    0

Add comment

Please sign in to leave a comment.