简体   繁体   English

PowerPivot从Access中获取排除的数据

[英]PowerPivot get excluded data from Access

Sample Data 样本数据

I have a Access, which has more than 1 million rows of data, as you can see from the screenshot. 我有一个Access,它具有超过一百万行的数据,如您从屏幕快照中所见。 I want to dedupe the data in term of BRUIDREQID, as it has duplicates. 我想用BRUIDREQID重复数据删除,因为它有重复项。 Is there any way that when I connect data from Access to PowerPivot, I can get deduped dataset? 当我将数据从Access连接到PowerPivot时,是否可以获取重复数据删除的数据集?

What I am doing now is using Python to dedupe the data and extract it as a csv file. 我现在正在使用Python进行重复数据删除并将其提取为csv文件。 I want to know whether I can use PowerPivot instead and save more time to dedupe large data set. 我想知道是否可以代替使用PowerPivot并节省更多时间来对大型数据集进行重复数据删除。

When accessing the Access database, you should be able to write arbitrary SQL, and you could just do a 访问Access数据库时,您应该能够编写任意SQL,并且您可以执行

SELECT DISTINCT 
* 
FROM Table

, which would de-dupe the table. ,这将对表进行重复数据删除。

Power Pivot does not offer any functionality to change the existing data in a table once imported - you cannot add or remove rows, nor can you alter the values of any imported fields. 导入后,Power Pivot不提供任何更改表中现有数据的功能-您无法添加或删除行,也不能更改任何导入字段的值。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM