Looking for the best approach to accomplish the following please:
I am building an application that runs on two databases, a common 'library' database for common products, and a 'project' database. Comparably in MS Access, you have an database template file that includes the library tables, and for each new project you simply copy and rename the database .mdb
file and start to build your project.
I want something similar for my application, where on startup, the user selects an existing project or a new project and is able to either open an existing database, or create a new database. I have accomplished this with SQLite as these are just files that can be copied and renamed, but I'm not sure how to go about this with SQL Server.
Reason for separate library database is to be able to update the common library without having to update each project. Eventually I'd like to have this as a cloud/web application.
Thanks in advance!