Introduction
Zero-copy cloning lets you make a copy of a database or table instantly without using extra storage. It solves the problem of waiting and paying for full copies by sharing the original data behind the scenes.
When you want to test changes on a database without affecting the original data.
When you need a quick backup of a table for analysis without extra storage costs.
When you want to create multiple environments (dev, test) from the same data instantly.
When you want to save storage by avoiding full data duplication.
When you want to experiment with data transformations safely.