MSSQL nvarchar(max) column shows in Oracle as NULL
What do we need to do if we want to see the data from an MSSQL database with type nvarchar(max)?
Using an ODBC connection?
We do
select 'MsSqlColumn" from dbo.MsSqlTable@dbling;
even though there is data in that column we only see NULL values using the database link.
Thanks.