DQL to get volume of database in Documentum
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
Try This
select sum(content_size/(102410241024)) as Total_Size_in_GB from dmr_content
Regards, Akshay
Thanks Akshay. But I got Error [DM_QUERY2_E_UP_OUT_OF_RANGE]error: "Unable to set attribute of type integer because the value being assigned is out of range"
select sum(r_full_content_size)/1000000000 as size_in_gb from dm_sysobject(all)
Thanks It's Working....