How can we help you today? How can we help you today?
AlexYates
Sorry, I've not come across the log in issue before. I can't imagine it's intended that you cannot activate on machines without internet. Hopefully someone from Redgate can advise. / comments
Sorry, I've not come across the log in issue before. I can't imagine it's intended that you cannot activate on machines without internet. Hopefully someone from Redgate can advise.
0 votes
Also, Schema Compare is your friend. And the more progress you can make on the human stuff above, the easier that merge will be. / comments
Also, Schema Compare is your friend. And the more progress you can make on the human stuff above, the easier that merge will be.
0 votes
This is all a question about source control branching. You should manage all the source code for all the different branches in source control. There are of course plenty of different branching strategies with different pros and cons and plenty of people who feel strongly about one way or the other being the best and I don't fancy getting drawn into one of those debates. Ideally, however, your branching strategy should match your reality. I wrote a bit more detail on that point here: http://workingwithdevs.com/branching-reality/ Of course, that approach will have limitations based on the tooling you choose. Git, for example, is far better able to cope with complicated branching strategies than TFSVC or SVN, but its also a bit of a learning curve and complicated branching strategies can get pretty confusing pretty quickly. It's not a perfect science despite what you may read. However, once you have fixed the source control branching issue you should be able to deploy your code based on the source code, rather than trying to sift through a bunch of work in progress and copy specific changes from one database to another. I wrote about one POC creating an Oracle database deployment pipeline based on source control here: http://workingwithdevs.com/continuous-delivery-oracle-databases-bamboo-redgate-1/ / comments
This is all a question about source control branching. You should manage all the source code for all the different branches in source control. There are of course plenty of different branching stra...
0 votes