I am trying to read in some iqmsg files in Alteryx to do some analysis on these log files, however Alteryx does not seem to support this format. The files are big, and I wonder if it's possible to read in a iqmsg file in Alteryx.
@ewang88 Alteryx is not designed to open this type of file, however there are several options.1. using Python tool as Python can do it.
2. In the original system save the file as csv or xml format which Alteryx can process.
3. iqmsg is actually a text based format so you can try to import it as if it as xml or json or text format, not sure if it will work but you can try it
Thank you very much, I will give it a try.