Quantcast
Channel: PTC Community: Message List - Windchill
Viewing all articles
Browse latest Browse all 8876

Re: Folder size on Windchill

$
0
0

This query returns the total number of files in the vault adjst the month as needed)

 

select count(*) from fvitem where createstampa2 < '01-JUN-2014'

 

This query returns the total size in GB for all files in the vault (adjust the month as needed)

 

select sum(ad.filesize)/(1024*1024*1024) as GB from applicationdata ad, fvitem fvi where fvi.streamid = ad.streamid AND fvi.createstampa2 <= TO_DATE('01-JUN-2014','DD-MON-YYYY');

 

We have Windchill query builder reports that I've refined over time that take input of Doc or CAD Doc Number and return the vault folder, vaulted filenames (including viewables) and file size.  Can run this with no *.DRW for example to get all Drawings.  Email me if you like and I'll send the report .qml.


Viewing all articles
Browse latest Browse all 8876

Trending Articles