Hello all. I am working on a data quality app that compares the metadata of two different inputs, a reference file and the file to be tested. I'm trying to better understand how data types are chosen when, for example, excel files are inputted so I can avoid creating false negatives.
Will string columns look at the length and just set it as 'String' with a specific character length?
Same with numbers will it look at the biggest number and determine the column is Int32?
I'm thinking to avoid these potential flags in the app (where one may be Int32 and the other Int64 which could still be fine for inputting the file into a workflow) I will give the data types high level labels to compare to as compared to directly comparing the data types, but any thoughts or comments are much appreciated.
Thanks and have a good day!