How can I update my SQL Server database schema? -
I will often deploy in the development of a project, only to ensure that I have no problem in production is.
In addition, throughout development, I change my database schema.
How can I update the database easily in production?
I'm leaving the old database to the new one. Is there a faster way to update the deployment database?
Thanks
Edit
What are some free tools for this?
Maintain a list of all the changes applied to your dev database and whenever the database is deployed, But apply them.
Alternatively, use a third-party tool that can compare two schemas and provides a change script which you can run.
Comments
Post a Comment