Skip to content

Instantly share code, notes, and snippets.

@CJHArch
Created January 4, 2016 18:17
Show Gist options
  • Save CJHArch/439584f4a521a4910931 to your computer and use it in GitHub Desktop.
Save CJHArch/439584f4a521a4910931 to your computer and use it in GitHub Desktop.
This will sum the file size data from a group of Digitool digital entity XML files (name space stripped)
xquery version "3.0";
sum
(
for $de in /digital_entity_call/digital_entity/stream_ref/file_size_bytes
return $de
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment