Core component of SQL Server for storing, processing, and securing data
How to clone database in SQL 2022?
My customer has SQL 2022 (16.0.1000.6) and a production database.
To investigate performance of the database I need the db backup.
But customer cannot provide it because of some tables contain sensitive data.
I have tried to clone the db because it has Query Store data and it may be enough for now.
DBCC CLONEDATABASE: I am trying to clone database to get the clone for analysis. But received the error 2601, 14, Status 1 Cannot insert duplicate key row in object 'sys.sysrowsets' with unique index 'clust'. The duplicate key value is (72057594045530112).
What is the reason? How to fix it and create the database clone?