LVM Common Tasks

  • Initializing disks or disk partitions
    For entire disks:
    $ pvcreate /dev/sda
    

    For partitions:

    $ pvcreate /dev/sda1
    
Read More

ETL and Tools

  • What is ETL?
    ETL is short for extract, transform, load, three database functions that are combined into one tool to pull data out of one database and place it into another database.
    • Extract - reading data from original database
    • Transform - converting extract data from original form to target form. (rules or lookup tables or combining the data with other data)
    • Load - writing data to target database
Read More