Hello Dani,
I guess you need to set the correct datatype for the cell. If you set the cell as type 'image' you can store larger datasets.
--- From SQL help ----
Assigning a data type to an object defines four attributes of the object:
1) The kind of data contained by the object. For example, character, integer or binary.
2) The length of the stored value, or its size. The length of an image, binary, and varbinary data type is defined in bytes.
3) The precision of the number (numeric data types only).
4) The scale of the number (numeric data types only).
Binary Strings
binary - Fixed-length binary data with a maximum length of 8,000 bytes.
varbinary - Variable-length binary data with a maximum length of 8,000 bytes.
image - Variable-length binary data with a maximum length of 2^31 - 1 (2,147,483,647) bytes.
----------------------
I have successfully used image data type to store data of size in MBs
Hope this helps.
- Gurdas
Gurdas Sandhu, Ph.D.
ORISE Research Fellow at US EPA