I want to move my old blob storage (with tables) to a new location:
I found how I can move blobs to a new account.
azcopy copy "https://<source-storage-account-name>.blob.core.windows.net/<container-name>/<blob-path>?<SAS-token>" "https://<destination-storage-account-name>.blob.core.windows.net/<container-name>/<blob-path>"
and it's work fine for me, but I need to copy all my tables to new account too.
I found only how I can copy one table to a new account. But I have a lot of tables and can be a problem for me copy one-by-one.
Does Azure have similar commands for copying Azure table storage tables to other blog storage?
I try to use azcopy copy with https://<destination-storage-account-name>.**table**.core.windows.net...
but it does not work