Set-PowerBITable

Updates the metadata and schema for the specified Power BI table.

Syntax

Set-PowerBITable
   -Table <Table>
   -DatasetId <Guid>
   [-WorkspaceId <Guid>]
   [-Workspace <Workspace>]
   [<CommonParameters>]
Set-PowerBITable
   -Table <Table>
   -Dataset <Dataset>
   [-WorkspaceId <Guid>]
   [-Workspace <Workspace>]
   [<CommonParameters>]

Description

Updates the metadata and schema for the specified Power BI table. Before you run this command, make sure you log in using Connect-PowerBIServiceAccount

Examples

Example 1

$currentTables = Get-PowerBITable -DatasetId c47f6cff-70de-4837-a094-93a6f26e20bf

$currentTable = $currentTables[0]
$col1 = New-PowerBIColumn -Name Col1 -DataType Int64
$col2 = New-PowerBIColumn -Name Col2 -DataType String
$updatedTable = New-PowerBITable -Name $currentTable.Name -Columns $col1,$col2

Set-PowerBITable -Table $updatedTable -DatasetId c47f6cff-70de-4837-a094-93a6f26e20bf

This example retrieves current table and create new one from the table. Then, it updates the table schema.

Parameters

-Dataset

A dataset where tables are stored.

Type:Dataset
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-DatasetId

ID of the dataset where tables are to be stored.

Type:Guid
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-Table

Table to update the schema.

Type:Table
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-Workspace

Workspace to filter the place where table resides.

Type:Workspace
Aliases:Group
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-WorkspaceId

ID of the workspace to filter the place where table resides.

Type:Guid
Aliases:GroupId
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Inputs

Microsoft.PowerBI.Common.Api.Datasets.Dataset

Microsoft.PowerBI.Common.Api.Workspaces.Workspace

Outputs

Microsoft.PowerBI.Common.Api.Datasets.Dataset