本文介绍了SQL Server FILESTREAM总文件大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有一个查询可以让我获得磁盘上FILESTREAM文件夹中文件的总文件大小?
Is there a query that would get me the total file size of the files that are in the FILESTREAM folder on the disk?
推荐答案
以下查询将返回filestreamcolumn
列的字节长度:
The following query will return the length in bytes of the filestreamcolumn
column:
SELECT SUM(DATALENGTH(filestreamcolumn)) FROM filestreamtable;
这篇关于SQL Server FILESTREAM总文件大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!