In the middel of a workbench I want to do some kind of schema check for my 100+ attributes:
All values of attribute 1 are composed out of less than 255 charachters
All values of attribute 2 are composed out of less than 50 charachters
All values of attribute 3 are integers out of maximum 10 numbers
All values of attribute 4 are decimals with maximum 10 numbers before and 3 after the decimal seperator
All values of attribute 1 are dates
...
For the charachter fields I can work easily with the StringLengthCalculator and statistics calculator. But the number and date fields are a bit less easy.
For the number fieds I split them at the decimal seperator and check the length of the first and last part and with a StringSearcher I check if there are only numbers.
For the date field I split it up by day - month - year and check if the value is below 12, 31 or 9999
This all seems a bit "dumb". Is there some kind of intellegent way to check type and structure of each attribute value in the middel of the workbench? Some kind of schema checker?
Thx,
Rob