Hello chandu,
on IIS level I could not help you and I am not sure that I have undestood your question
On database level you get the maximum size of all stored documents in your repositories.
select sum(treeleavessize)+sum(lobsize)
from tables t, files f
where tablename like 'COMPONENTS____'
and (tableid = fileid or tableid = primaryfileid)
This query returns the length over all repositories using the like expression.
The retuned value is in 1k byte.
It accumulates the length stored in treeleavessize (SHORT COLUMNS) and lobsize (LOB FILES)
Since not all documents are stored in LOB files.
Kind regards,
Burkhard