获取在查询刷新期间传输的数据量

发布于 2025-01-30 22:52:45 字数 466 浏览 2 评论 0原文

有没有办法跟踪查询刷新期间传输的数据量?
大小在“查询”窗格中显示非常简短(取决于等待):

”在此处输入图像描述“

我能想到的唯一解决方案是将纯输出保存到CSV并测量文件。

是否有更直接,更麻烦的方式?

背后的主要原因是我想看到:
1:如果大小可能会给连接缓慢的用户引起问题
2:我的优化尝试的效果,

请注意,这将是理想情况下是源,但是我的主要重点是SharePoint列表&文件。

Is there a way to track the amount of data transferred during query refresh?
The size is shown in the 'Queries' pane very briefly (depending on the wait):

enter image description here

The only solution I can think of is saving the pure output to CSV and measuring the filesize.
Is there a more direct, less cumbersome way?

The main reason behind this is that I want to see:
1: If the size could cause issues to users with slow connections
2: The effect of my optimisation attempts

Please note that this would ideally be source-agnostic, however my primary focus are SharePoint lists & files.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白云悠悠 2025-02-06 22:52:45

我认为您无法执行此操作,但是您可以通过连接SharePoint文件夹,然后钻入属性记录并获取大小记录来检查文件

大小
https://learn.microsoft.com/en-en-poper-us/power-us-poper-us-us-us-us-us-us-us-us-us-us-us-us-us-us-us-us-us-us-us-us-us-us-us-us-us-poper-us-us-us-查询/连接器/SharePointFolder


https://www.myononlinlinetaininghub.com/ get-data-from-onedrive-or-sharePoint-with-power-Query

示例示例示例的示例版本,但不是SharePoint

let Source = Folder.Files("C:\temp\"),
#"C:\intraday\_mydata csv" = Source{[#"Folder Path"="C:\temp\",Name="mydata.csv"]}[Attributes],
Size = #"C:\temp\_mydata csv"[Size]
in Size

I don't think you can do that, but you could check the file size by connecting the the sharepoint folder, then drilling into the Attributes record and grabbing the Size record

See
https://learn.microsoft.com/en-us/power-query/connectors/sharepointfolder

or
https://www.myonlinetraininghub.com/get-data-from-onedrive-or-sharepoint-with-power-query

enter image description here

sample for desktop version, but not sharepoint

let Source = Folder.Files("C:\temp\"),
#"C:\intraday\_mydata csv" = Source{[#"Folder Path"="C:\temp\",Name="mydata.csv"]}[Attributes],
Size = #"C:\temp\_mydata csv"[Size]
in Size

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文