Is it possible to store image having size 3GB in SQL Server?
I know it seems like unrealistic scenario but I am curious to know if its possible to save the image in database in any way ?
Is it possible to store image having size 3GB in SQL Server?
I know it seems like unrealistic scenario but I am curious to know if its possible to save the image in database in any way ?
Microsoft recommends you use the file stream, for objects over 1MB in size. Within your table the image will be represented a VARBINARY(MAX) (the normal 2GB limit will not apply).