Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.55 KB

data-factory-quickstart-verify-output-cleanup.md

File metadata and controls

33 lines (25 loc) · 1.55 KB
author ms.service ms.topic ms.date ms.author
linda33wj
data-factory
include
11/09/2018
jingwang

Verify the output

The pipeline automatically creates the output folder in the adftutorial blob container. Then, it copies the emp.txt file from the input folder to the output folder.

  1. In the Azure portal, on the adftutorial container page, click Refresh to see the output folder.

    Refresh

  2. Click output in the folder list.

  3. Confirm that the emp.txt is copied to the output folder.

    Refresh

Clean up resources

You can clean up the resources that you created in the Quickstart in two ways. You can delete the Azure resource group, which includes all the resources in the resource group. If you want to keep the other resources intact, delete only the data factory you created in this tutorial.

Deleting a resource group deletes all resources including data factories in it. Run the following command to delete the entire resource group:

Remove-AzureRmResourceGroup -ResourceGroupName $resourcegroupname

Note: dropping a resource group may take some time. Please be patient with the process

If you want to delete just the data factory, not the entire resource group, run the following command:

Remove-AzureRmDataFactoryV2 -Name $dataFactoryName -ResourceGroupName $resourceGroupName