Products | Versions |
---|---|
TIBCO Data Virtualization | 8.8.0 |
Microsoft SQL Server supports Japanese and other Unicode characters only with the NVARCHAR data type. Using VARCHAR can result in character loss or corruption when handling non-Latin scripts.
Reference: StackOverflow – Inserting Japanese characters into SQL Server
All supported environmnet
1. Instead of letting TDV create the cache target table automatically, manually create the table in SQL Server with all character columns defined as NVARCHAR.
TDV user can do this by:
2. Once the table is created:
When caching data from TIBCO Data Virtualization to Microsoft SQL Server, users may encounter issues with Japanese or other multi-byte characters not displaying correctly. This is typically due to the use of the VARCHAR data type, which does not support Unicode characters such as Japanese.
This article outlines the recommended approach to ensure proper handling of Japanese characters using the NVARCHAR data type in SQL Server.