DataType issue

  • Hi,

    I have created the below table

    create table sample(id int,textdata varchar(max))

    It contains huge amount of data. I'm trying to export this table from sqlserver 2008 to sqlserver 2000. But it shows an warning threshold while exporting the entire textdata. Because it is automatically converted from varchar(max) to varchar.

    Varchar will allow only 8000 char only. In our textdata column having more than 15000 characters.

    I would appreciate, If anybody help me, to resolve this issue.

    Thanks in advance

    Regards

    Balaji G

  • Varchar(max) was introduced in SQL2005.

    In SQL 2000 you had to use the text datatype if you want to store more than 8000 characters.

    [font="Verdana"]Markus Bohse[/font]

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply