a week ago
Hi
I have to read data from .xlsb file. I tried to use Excel parser but it is throwing error.
Solved! Go to Solution.
Monday
@kumar25 - My dev team is stating that this is currently not supported by our Excel Parser snap. My major concern with using a Script snap to handle the parsing is that the file would either need to be passed as a single binary document, consuming as much memory as the file size, which can be quite large, or you would need to place the file on the Snaplex node before parsing and ensure that the SnapLogic process has read permissions to it.
Having the Script snap perform the parsing also requires that you install and maintain the libraries required to parse.
While is is feasible, I might recommend that you see if the source can provide the more standard XLSX format before going that route.
Thursday
Hi @koryknick this was a file created on Windows machine.
Wanted to see if there is any possibility to use any script to convert the file to a readable file(.xlsx/.xlsm).
I have to check on the possibility to open a support team, not sure if I have access.
Thursday
@kumar25 - The dev team has informed me that the Excel Parser only supports XLS and XLSX formats today. So requesting support for XLSB would be an enhancement request, which would need to be evaluated and prioritized according to the number of customers impacted and weighed against other priorities.
So I would recommend that you research Java or Python libraries that can parse the files that you are trying to source, then look at how to implement that with the Script so it can be called within your pipeline.
Hope this helps!
Thursday
@koryknick , thanks for the solution. Can you provide sample pipeline which does this transformation.
Monday
@kumar25 - My dev team is stating that this is currently not supported by our Excel Parser snap. My major concern with using a Script snap to handle the parsing is that the file would either need to be passed as a single binary document, consuming as much memory as the file size, which can be quite large, or you would need to place the file on the Snaplex node before parsing and ensure that the SnapLogic process has read permissions to it.
Having the Script snap perform the parsing also requires that you install and maintain the libraries required to parse.
While is is feasible, I might recommend that you see if the source can provide the more standard XLSX format before going that route.
Monday
Thanks @koryknick