bunn_online
bunn_online

Reputation: 752

What is the correct way to distribute a SQLServer database with an application?

Over the years I have seen many approaches to this:

In my opinion, the 3rd option, creating a new database from scratch, building the data structure from scripts and populating any static data with a script is the best approach. Its repeatable, and should always work.

This question could also apply to other dbms.

Upvotes: 2

Views: 113

Answers (1)

Forer
Forer

Reputation: 1055

I would recommend the third option for the exact reason you suggest.

Upvotes: 2

Related Questions