Multiple choice technology delivery

The datatype text in Sybase is mapped to which datatype in SQL server

  1. Char

  2. Varchar(Max)

  3. Int

  4. Float

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

During Sybase-to-SQL Server migrations, the Sybase text datatype is mapped to varchar(max) (or nvarchar(max) if Unicode is needed). Legacy datatypes like text are deprecated in modern SQL Server versions in favor of varchar(max).