Someone has any experience on PTC Integrity data extraction?
I am working on a DW project now, and PTC integrity is my primary data source. Anyone has some experience? We can discuss here.
I am working on a DW project now, and PTC integrity is my primary data source. Anyone has some experience? We can discuss here.
The multiplevalue flag is for picklists, users, groups, and relationships. Since the columns in Issue table will only have space for a single value, if the multiplevalue flag indicates that the value is stored somewhere else.
For the picklist, user, and group types, the field will be stored in a special table of the form FieldXYZ_Set, where XYZ is from the ID column in Fields table. There will be one or more rows in the FieldXYZ_Set, one for each selection in the field. The Issues table column will hold a reference to the ID value in the FieldXYZ_Set table, and the value column in FieldXYZ_Set will hold the value for the selection.
An example of the join for one of our multivalue pick fields is below:
Join Field530_SET ON Field530_SET.ID=Issues.Field530 Join Picks on Picks.ParentID=530 AND Picks.IntOperand=Field530_SET.VALUE
The multivalue flag can also be used so that you know when your join might start adding additional rows, even if you are pulling a single Issue.
The flag field in Fields table is used to determine some other encrypted data about the field itself. I am not sure what all the values mean, but 2048 seems to indicate that the field is not stored in the standard tables (Issue, Picks, IIMap, etc). I would guess that the other flag values have to do with how the system uses those fields in calculations or something like that.
Matt
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.