< Back

Remove-PowerBIRow

Sat Jan 18, 2020 4:13 pm

NAME Remove-PowerBIRow



SYNOPSIS

Removes rows from a Power BI table.





SYNTAX

Remove-PowerBIRow -Dataset <Dataset> -TableName <String> [-Workspace <Workspace>] [-WorkspaceId <Guid>]

[<CommonParameters>]



Remove-PowerBIRow -DatasetId <Guid> -TableName <String> [-Workspace <Workspace>] [-WorkspaceId <Guid>]

[<CommonParameters>]





DESCRIPTION

Performs removal of rows from a Power BI table.





PARAMETERS

-Dataset <Dataset>

A dataset containing the table where rows are to be removed.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByValue)

Accept wildcard characters? false



-DatasetId <Guid>

ID of the dataset containing the table where rows are to be removed.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-TableName <String>

Name of the table.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Workspace <Workspace>

Workspace containing the dataset and table for row removal.



Required? false

Position? named

Default value None

Accept pipeline input? True (ByValue)

Accept wildcard characters? false



-WorkspaceId <Guid>

ID of the workspace containing the dataset and table for row removal.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

Microsoft.PowerBI.Common.Api.Datasets.Dataset

Microsoft.PowerBI.Common.Api.Workspaces.Workspace





OUTPUTS

Microsoft.PowerBI.Common.Api.Datasets.Dataset







NOTES









-------------------------- Example 1 --------------------------



PS C:\\> Remove-PowerBIRow -DataSetId 4b644350-f745-48dd-821c-f008350199a8 -TableName Table1



Removes rows from the table Table1 in specified dataset.



RELATED LINKS