LadyReader
MIS
I have a asp.net app that allows users to attach supporting documents to a record. The document image is loaded into SQL Server 2000. The users attach Excel, txt, jpegs, etc, including pdfs.
The table looks like:
Col Name Data Type Length Allow Nulls
DocumentID int 4 0
Description nvarchar 500 1
ContentSize int 4 1
ContentType nvarchar 50 1
Content image 16 1
Today a user was unable to attach any of several pdf files. They varied in size from approx. 14k to 20k. Thinking this might be a problem with pdfs, per se, I tried another pdf and was able to attach one of 4k. So maybe the problem is with the size...
How large a document can be stored in an Image field of length "16"? SQL does not allow me to make this column larger.
Any suggestions?
The table looks like:
Col Name Data Type Length Allow Nulls
DocumentID int 4 0
Description nvarchar 500 1
ContentSize int 4 1
ContentType nvarchar 50 1
Content image 16 1
Today a user was unable to attach any of several pdf files. They varied in size from approx. 14k to 20k. Thinking this might be a problem with pdfs, per se, I tried another pdf and was able to attach one of 4k. So maybe the problem is with the size...
How large a document can be stored in an Image field of length "16"? SQL does not allow me to make this column larger.
Any suggestions?