On a project that I lead, I had to supply with an installation exe. The project is an ASP.NET with Win Services and SQL2005 as the back-end storage. So, part of the installation is the database. I had two options to create the database in the installation process: Use a *.bak file. Use SQL scripts. The good thing about scripts is the fact that you can automate it within SQL Server; however the automation does not include the data. In order to add data I must write a SQL script with insert statements...