New-PowerBIDataset
创建新的 Power BI 数据集对象。
语法
New-PowerBIDataset
-Name <String>
[-Tables <Table[]>]
[<CommonParameters>]
说明
启动 Power BI 数据集对象的创建。 Power BI 数据集是表的容器。
示例
示例 1
PS C:\>$col1 = New-PowerBIColumn -Name ID -DataType Int64
PS C:\>$col2 = New-PowerBIColumn -Name Data -DataType String
PS C:\>$table1 = New-PowerBITable -Name SampleTable1 -Columns $col1,$col2
PS C:\>
PS C:\>$col3 = New-PowerBIColumn -Name ID -DataType Int64
PS C:\>$col4 = New-PowerBIColumn -Name Date -DataType DateTime
PS C:\>$col5 = New-PowerBIColumn -Name Detail -DataType String
PS C:\>$col6 = New-PowerBIColumn -Name Result -DataType Double
PS C:\>$table2 = New-PowerBITable -Name SampleTable2 -Columns $col3,$col4,$col5,$col6
PS C:\>
PS C:\>$dataset = New-PowerBIDataSet -Name SampleDataSet -Tables $table1,$table2
PS C:\>
PS C:\>Add-PowerBIDataSet -DataSet $dataset
此示例实例化一个包含两列的表,另一个包含四列的表,并实例化数据集。 然后,它会在 Power BI 中创建数据集。
参数
-Name
数据集名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Tables
Table 对象的数组
类型: | Table[] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输出
Microsoft.PowerBI.Common.Api.Datasets.Dataset