views:

15

answers:

1

We have a large read only secondary database file. We have several different copies of the database for development purposes, each of which can have slight differences.

Is it possible that all copies share the same .ndf file? The .ndf file is identical for each copy of the database.

A: 

Clever things can be done with copies, replication, log shipping, mirrorring, and whatnot, but ultimately it is not possible for SQL Server database to actually share database files.

Philip Kelley
Thanks for your answer.
zod