How to make backup of Azure table storage -


i have requirement need migrate data 1 azure table storage , 1 table other table (both table either in same subscription or different subscription).

is there way in azure table storage above requirement in sql storage user can generate scripts or backup of entire database or individual table.

short answer: there's no built-in backup. longer answer:

  • there's no built-in backup service table storage, or "snapshot" feature (which blobs have): you'll need own copy operation, 1 table another. there's rest api available along sdks, powershell cmdlets, cli commands, , azcopy (all built upon api). there bunch of 3rd-party tools can search for. how accomplish table-copying you.

  • table storage durable storage - triple-replicated within region (and optionally geo-replicated region). if storage became unavailable in primary region, you'd have option of reading paired region (assuming enabled storage account geo-redundant). note: not same backup - if delete entity in table, deletion replicated everywhere

  • storage-copying (e.g. copying entities out of table, table) same, regardless of subscription. storage accounts keyed on account namespace + access key (and optionally sas).


Comments

Popular posts from this blog

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -