SQL Server varbinary (max.) For image data type

I have a database table that stores images as varbinary (max). This works great for me. However, now I have to send this data to the MS Dynamics database, which will use the image data type.

Is there anything I need to know when saving varbinary (max) for an image? Can my data be corrupted or are they usually the same data types for all purposes and purposes?

thanks

+6
source share
1 answer

They are one and the same and process the same internal. They left the name of the image because it really doesn't make sense. Doesn't look like sqlserver can handle image operations in tsql

+3
source

Source: https://habr.com/ru/post/899537/


All Articles