Results 1 to 2 of 2

Thread: MS SQL What data type to use.

  1. #1
    Join Date
    Jun 2004
    Posts
    1

    MS SQL What data type to use.

    I need to add a field in to a MS SQL table. The field is apx 44,000 char long. I tried to add it to a text field but query reports back that the Maximum length is 128. I thought that I could go up to 2,146,483,647 chars. Any help please!

    Thanks

    Paul

  2. #2
    Join Date
    Sep 2002
    Location
    Fantasy
    Posts
    4,254
    use master
    go
    sp_configure "max text repl size",2147483647
    go
    reconfigure with override
    go

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •