cancel
Showing results for 
Search instead for 
Did you mean: 

FSA SavesetProperty Table and OriginalSize Column

tmurray1
Level 5

Hi,

I am running EV8 SP4 which has been upgraded over the past ~6 years.  What is the unit of measure for the OriginalSize column?  Is it bytes?

Thanks!!

1 ACCEPTED SOLUTION

Accepted Solutions

TonySterling
Moderator
Moderator
Partner    VIP    Accredited Certified

yes, if you are using a SQL query you can convert it to MB by selecting it this way:

SUM(OriginalSize)/1024/1024

View solution in original post

2 REPLIES 2

TonySterling
Moderator
Moderator
Partner    VIP    Accredited Certified

yes, if you are using a SQL query you can convert it to MB by selecting it this way:

SUM(OriginalSize)/1024/1024

tmurray1
Level 5

Thanks Tony!