Category database

Building a Common Language for Database Modernization: Introducing the Migration Lexicon

Database migrations are among the most complex initiatives organizations undertake. They involve multiple teams, multiple technologies, competing priorities, operational risk, testing requirements, governance processes, and business-critical applications. Yet despite the complexity, one of the biggest challenges I repeatedly encounter during…

Using DBMS_REDEFINITION

Database design is hard…seriously… If you need to modify a table after you’ve rolled it into production DBMS_REDEFINITION can really save you! Here’s a little example that shows taking a non-partitioned table and adding interval partitioning to it. Enjoy! [code…

Migrate to Automatic Storage Management (ASM)

Here’s a quick and simple script to help migrate a database over to Automatic Storage Management (ASM). The script implements the Oracle Documentation found here: You can download the script from GitHub here: [code language=”bash”] #!/bin/bash #=============================================================================================================== #…

Quick Remote Diagnostics…

[sourcecode language=”bash”] #!/bin/bash #=============================================================================================================== # # FILE: quick_diag.sh # # USAGE: run it # # DESCRIPTION: try to diag system # OPTIONS: # REQUIREMENTS: # AUTHOR: Matt D # CREATED: 11.27.2012 # VERSION: 1.0 # EUL : THIS CODE IS…