Thursday, January 26, 2017

Svn: E155037: Previous operation has not finished; run ‘cleanup’ if it was interrupted

  1. Backup the file in trouble
  2. Install sqlite if not installed already: yum install sqlite
  3. Change directory to the workspace root, and change to .svn
  4. Find the wc.db in .svn folder, and run: sqlite3 wc.db "select * from work_queue"
  5. Cleanup work queue: sqlite3 wc.db "delete from work_queue"
  6. In workspace root level, run command: svn cleanup

Friday, January 13, 2017

Mount NFS Share for Oracle Database

ORA-27054: NFS file system where the file is created or resides is not mounted with correct options

mount -o hard,rw,noac,rsize=32768,wsize=32768,suid,proto=tcp,vers=3 mynfsserver.goweekend.com:/myshare /mnt

Thursday, January 12, 2017

Install Homebrew and GDB on Mac

Reference: https://www.ics.uci.edu/~pattis/common/handouts/macmingweclipse/allexperimental/mac-gdb-install.html

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install gdb