We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85a13dd commit 66ff3b7Copy full SHA for 66ff3b7
src/Dax.Model.Extractor/DmvExtractor.cs
@@ -1,4 +1,5 @@
1
using Dax.Model.Extractor.Data;
2
+using Microsoft.AnalysisServices;
3
using Microsoft.AnalysisServices.AdomdClient;
4
using System;
5
using System.Collections.Generic;
@@ -1101,6 +1102,10 @@ SELECT DISTINCT
1101
1102
// We ignore errors accessing this DMV
1103
Debug.WriteLine($"Ignored error in DISCOVER_CALC_DEPENDENCY: {ex.Message}");
1104
}
1105
+ catch (AmoException ex)
1106
+ {
1107
+ Debug.WriteLine($"Ignored error in DISCOVER_CALC_DEPENDENCY: {ex.Message}");
1108
+ }
1109
1110
1111
public void PopulateRelationships()
0 commit comments