Reputation: 1
I have a requirement to programmatically export models in ERwin data modeler. The exported files could be saved in a directory (on server or local machine). We also want the process to export only the models that were changed after previous export.
Anybody know how to do that?
Thanks in advance, Vivek
Upvotes: 0
Views: 739
Reputation: 612
The Erwin API can be used to programatically access the model.
you can write a program to step through the model, extract and format the information you want to export.
One of the model properties is the date the model was last updated. If your export program saves the date that it was last run, you could compare the 2.
Upvotes: 0