Posts

Showing posts from February, 2020

AzCopy | It's uses | Data Migration | AzCopy Practical Demo - ETL for Microsoft Azure

Image
Below are the commands and scripts useful for you to do the practical at your own: Copy local file or folder to blob storage: ./azcopy cp '(local-directory-path)' ' https://(storage-account-name).(blob or dfs).core.windows.net/(container-name)' --recursive Copy using wildcard character for the file name: ./azcopy cp '(local-directory-path)' ' https://(storage-account-name).(blob or dfs).core.windows.net/(container-name)' --include-pattern 'myFile*.txt;*.pdf*' Copy local file or folder to blob storage - access to storage account using SAS token: ./azcopy cp '(local-directory-path)' ' https://(storage-account-name).(blob or dfs).core.windows.net/(container-name)?(SAS_Token)' --recursive ---------------------------------------------------------------------------------------------------- Copy data from S3 bucket (AWS) to Azure (Blob Storage): Step1: set the environmental variable for AWS environment Windows: set AWS_AC...