I am wondering about how much times it takes to complete a database copy over SQL Azure. I am considering a scenario where :
- a single database is populated first, and then stay read-only.
- a set of copies are created.
- an embarrassingly task gets paralleled over each copy (read-only).
- copies are deleted to lower hosting cost.
Such a scenario makes sense if the database copy on SQL Azure is reasonably fast.
Does anyone has some information concerning the latency to complete a copy of an SQL Azure Database, maybe w/o of the GB size of the database (assuming that smaller DB get copied faster than big ones)?
Subsidiary question: if 10 copies of the DB are triggered at the same time, will it takes 10x more time to complete the 10th copy? or does SQL Azure support some level of parallelization for such an operation.