-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathDataset-ExecuteXMLAQuery.ps1
65 lines (42 loc) · 1.29 KB
/
Dataset-ExecuteXMLAQuery.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
param (
$serverName = "powerbi://api.powerbi.com/v1.0/myorg/WWI"
, $datasetName = "WWI - Sales"
, $username = "app:<Service Principal Id>@<Azure AD TenantId>"
, $password = "<Secret>"
, $query = "EVALUATE Customer"
)
$currentPath = (Split-Path $MyInvocation.MyCommand.Definition -Parent)
Add-Type -Path "$currentPath\lib\Microsoft.AnalysisServices.AdomdClient.dll"
$asModelType = [Microsoft.AnalysisServices.AdomdClient.AdomdConnection]
$assembly = $asModelType.Assembly
Write-Host "Assembly version loaded: '$($assembly.FullName)' from '$($assembly.Location)'"
try
{
$conn = new-object Microsoft.AnalysisServices.AdomdClient.AdomdConnection
$conn.ConnectionString = "Data Source=$serverName;User Id=$username;Password=$password"
$conn.Open()
$conn.ChangeDatabase($datasetName)
$cmd = $conn.CreateCommand()
$cmd.CommandText = $query
$cmd.CommandTimeout = 30
$reader = $cmd.ExecuteReader()
$i = 0
Write-Host "Reading..."
while($reader.Read())
{
if ($i % 50 -eq 0)
{
Write-Host "Reading... ($i)"
}
$i++
}
$reader.Dispose()
}
finally
{
if ($conn)
{
Write-Host "Closing connection"
$conn.Dispose()
}
}