Wednesday, March 23, 2011

oracle remove unwanted character from data column

// remove \r @ \n
update table-nama set column-name = REPLACE
(REPLACE( col_name, CHR(10) ), CHR(13) )

// replace white space update table-nama set column-name = REPLACE(REPLACE( col_name,' ' ), '' )

Proxmox installation display out of range

Reference:  https://forum.proxmox.com/threads/proxmox-ve-screen-out-of-range.131297/