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();