Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 SSIS 中删除多维数据集分区?我看过这个例子,它展示了如何在 SSIS 中创建多维数据集分区,但我找不到删除多维数据集分区的教程。
使用 AMO,Partition 对象具有 Drop 方法。
myPartition = myMeasureGroup.Partitions.FindByName("Partition_Name"); if ( myPartition != null) myPartition.Drop();