sedward
2013-07-09T18:10:00Z
In my sql table for attachments, I have field which records the size and type of file(like excel/word). Does any of the outlook field under attachments specify this?
Sponsor
GeniusConnect documentation search (User Manual Downloads...)
Administrator
2013-07-09T22:59:00Z
No, there is no such column, but you can compute it in SQL Server from binary/Blob column:

Example:
select DATALENGTH(myBlobColumn) .....
Similar Topics