show/hide this revision's text 3 rephrased

Could you clarify who should do what in your scenario? Do you want SQL Server do get the info or do you want Reporting Server do that?

What exactly do you mean by "folder size"? Is "one folder, sum up each file" enough or does it need to be recursive?

(Rephrasing...)Either way, I'd go for a little custom .NET function that uses System.IO.Directory and it's relatives.

show/hide this revision's text 2 deleted 246 characters in body

What exactly do you mean by "folder size"? Is "one folder, sum up each file" enough or does it need to be recursive?

Out of convenience I would write a tiny VBScript using FileSystemObject to get that info. This runs quick and works everywhere in the Windows world. You can of course head for more complex solutions, like incorporating WMI or rolling a custom .NET CLR function.

(Rephrasing...)

show/hide this revision's text 1

What exactly do you mean by "folder size"? Is "one folder, sum up each file" enough or does it need to be recursive?

Out of convenience I would write a tiny VBScript using FileSystemObject to get that info. This runs quick and works everywhere in the Windows world. You can of course head for more complex solutions, like incorporating WMI or rolling a custom .NET CLR function.