Reputation: 1254
I want to perform Database continuous integration. I found that Red gate is the tool for Database CI using SQL CI.
It allows continuous integration for SQL Server databases. On each check-in to source control, it builds and packages the database changes, alongside application code.
It also validates the structure of database, runs unit tests with realistic test data, and checks that database changes can be deployed.
Is there any open source tool to do the same functionality as Red gate? I need some expert advice for this. So I am posting it. Is there any jenkins plugin or open source tool? Thanks.
Upvotes: 1
Views: 1137
Reputation: 190
I would suggest you have a look at DBmaestro (http://www2.dbmaestro.com/l/11742/2014-12-31/2grnfp), while it is not an open source tool it does provide continuous integration to the database. Continuous Integration to the database includes:
These bring you the safety net in your CI automation process.
Disclaimer: I am the product manager at DBmaestro
Upvotes: 0
Reputation: 5745
You can use SQL Server Data Tools. It is not open source, but it is going with Visual Studion 2010+.
Upvotes: 1