oracle SQL Query untuk membuat huruf besar data kolom

UPDATE
  MyTable
SET
  MyColumn = UPPER(MyColumn)
Code Phantom