Products | Versions |
---|---|
Spotfire Analyst | All |
If you encounter the issue mentioned above ("Method '<ST_GEOMETRY>.STAsBinary( ... )' does not exist"), this may be caused by the JDBC driver transferring binary data differently if it's a BLOB as opposed to a VARBYTE.
To resolve that issue, change the column expression from
%1.ST_AsBinary()
to
cast(%1.ST_AsBinary() as varbyte(1000))
where the varbyte length needs to be large enough to fit the data.