< Back

Join-AzureRmDataLakeStoreItem

Tue Jan 29, 2019 9:44 pm

NAME Join-AzureRmDataLakeStoreItem



SYNOPSIS

Joins one or more files to create one file in Data Lake Store.





SYNTAX

Join-AzureRmDataLakeStoreItem [-Account] <String> [-Paths] <DataLakeStorePathInstance[]> [-Destination] <DataLakeStorePathInstance> [[-Force]]

[-DefaultProfile <IAzureContextContainer>] [-Confirm] [-WhatIf] [<CommonParameters>]





DESCRIPTION

The Join-AzureRmDataLakeStoreItem cmdlet joins one or more files to create one file in Data Lake Store.





PARAMETERS

-Account <String>

Specifies the name of the Data Lake Store account.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Destination <DataLakeStorePathInstance>

Specifies the Data Lake Store path for the joined item, starting with the root directory (/).



Required? true

Position? 2

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Force [<SwitchParameter>]

Indicates that this operation can overwrite the destination file if it already exists.



Required? false

Position? 3

Default value False

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Paths <DataLakeStorePathInstance[]>

Specifies an array of Data Lake Store paths of the files to combine, starting with the root directory (/).



Required? true

Position? 1

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Confirm [<SwitchParameter>]

Prompts you for confirmation before running the cmdlet.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]

Shows what would happen if the cmdlet runs. The cmdlet is not run.



Required? false

Position? named

Default value False

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 (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

This cmdlet does not accept any input.





OUTPUTS

string

The full path to the resulting file from the joined files.





NOTES









Example 1: Join two items



PS C:\\>Join-AzureRmDataLakeStoreItem -AccountName "ContosoADL" -Paths "/MyFiles/File01.txt","/MyFiles/File02.txt" -Destination

"/MyFiles/CombinedFile.txt"



This command joins File01.txt and File02.txt to create the file CombinedFile.txt.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... estoreitem

Get-AzureRmDataLakeStoreItem

Export-AzureRmDataLakeStoreItem

Import-AzureRmDataLakeStoreItem

New-AzureRmDataLakeStoreItem

Remove-AzureRmDataLakeStoreItem

Test-AzureRmDataLakeStoreItem