I know, this is really out there, but here's the situation. I have a table with a whole bunch of columns (a combination of strings, floats, and integers). I want to generate a hash from the concatenation of these columns. I'd then use this hash to match it to a hash on a lookup table.
Yes, I could simply concatenate the fields in a new field, and then compare that to a concatenation field in the other table, but that'd be really long and messy (and not nearly as nerdy as I'd like ). I know the theory behind hash functions, and I could write my own in something like Java or .NET, but are there any functions I can use in an Apptio column to do this?
For example, is there an Apptio function to convert a string character into its ASCII or Unicode character identifier (e.g., "A" would become the number 65)? Is there an Apptio function that will take a string and put it through a defined compression algorithm (e.g., DEFLATE or LZMA)?