Data migration between various platforms. Have you ever thought about migrating your production database from one platform to another and dropped this idea later, because it was too risky, you were not ready to bare a downtime? If yes, then please pay attention because this is what we are going to perform in this article. …
Tag Archives: Database
Automated DB Updater Release First Release
Initial version of Automated DB Updater Release ADU With this blog I’m releasing the intial version of a python utility to provide automated db updates across various environments for different components. The code for this utility is hosted on githubhttps://github.com/sandy724/ADU You can clone the read only copy of this codebase by url given belowhttps://github.com/sandy724/ADU.git To …
Continue reading “Automated DB Updater Release First Release”
Build & Release Challenges : Manual DB Updates Part 2
Previos This blog was supposed to be about the new system, I thought of building to solve the problem that I discussed in my previous blog. Well for your disappointment this blog will be not about that, the reason is scope of the problem changed. In this blog I’ll be discussing about the new scope …
Continue reading “Build & Release Challenges : Manual DB Updates Part 2”
Automated Database Update Or Rollback
One of the important step during release is doing database update and rollback in case something goes wrong, usually people perform this operation manually. In this blog I’ll talk about how we can automate this process by following some convention. Here I’m taking mysql database as an example we can have same conventions for other …