Solution
When you create a synonym that contains NVARCHAR(max), the column is described as:
USAGE=TX50, ACTUAL=TX
Microsoft Azure SQL Data Warehouse has a 2GB limit on NVARCHAR(max) data.
The WebFOCUS MS Azure SQL Data Warehouse adapter does not have a size limit for TX columns, therefore, NVARCHAR(max) has no limit in the adapter, only the limit defined by Microsoft.
For NVARCHAR(n), create synonym describes the column as:
USAGE=AnV, ACTUAL= AnV
The limit is n=32765, so anything above 32765 will be truncated.
Information is published on an "as is" basis without a warranty of any kind. Information Builders, Inc. ("IBI") hereby represents that such information has not been subject to any formal testing or review by IBI. IBI assumes no responsibility for usage of such information, including the implementation of solutions associated therewith. The customer assumes responsibility for the results obtained from such information. IBI is not responsible for and shall not be held liable for the results obtained, including but not limited to any errors, delays or omissions. IBI disclaims any liability for the completeness or accuracy of such information.