In UniVerse SQL. How to get the actual Max Len of a column.
I'm debugging an SSIS package and having trouble in ADO.Net Source. UniVerse SQL script gets an error of "UniVerse/SQL: Row Length Exceeds Buffer Size". I tried adjusting the Buffer size both in dataflow level and Connection Manager level.
Next steps is to get the max actual data length of each columns in the UniVerseSQL Script. Unfortunately, I dont have access to UniVerseSQL. I can only access it by querying in the ADO.Net Source in SSIS.
I'm looking for the same function as in SQL Server Query below: SELECT MAX(LEN(Column1))FROM Table1