Group: StrataFrame Developers
Posts: 6.6K,
Visits: 7K
|
Greg is right...if you look at your file groups, your files names are static. One common issue is that a database may be detached from the server, but the mdf file is left on disk, so when SQL Server tries to create the file group you will receive an error (which you experienced). The other time that you get this is just like Greg mentioned, if you are trying to deploy the same database to a different name on the same server. This is when you will want to use the $DbName$ tag as part of the file name. This is what we do with our medical software which allows us to have a virtually unlimited number of deployments of the same profile to the same server, we just provide a prefix that allows us to determine the instance of that database.
|