Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经确认视图在 SQL Server 上返回正确的数据。但是,当通过 Oracle 提取原始视图时,某些字符串列仅包含每条记录 1 个字符,而其他列已完全填充。有谁知道什么可能导致这个问题?
具有截止字符的字段是 NVARCHAR(50)。显然,Oracle 没有从 SQL Server 中正确提取 NVARCHAR。在 SQL Server 视图中将它们转换为 VARCHAR(50) 解决了这个问题。