Is there any way to find out how to get the size of the file that is uploaded to the database?
SELECT [ID]
,[File]
FROM [dbo].[Reports]
I would like to tell the user the size of the file that is in the field VarBinary(max)in MS SQL 2005/2008. How to do it?
Maybe the only way to do this is to create another column, and when I insert a file, I also have to insert it into an additional column?
source
share