'전체 글'에 해당되는 글 169건

  1. 2012.05.11 오키 생일 즈음.. 1
  2. 2012.05.11 삼청동.. 1
  3. 2012.05.08 2012.01.31 1
  4. 2012.05.02 linux sqlplus에서 ed(edit)사용 시 vi 에디터 사용법
  5. 2012.04.23 리눅스에서
  6. 2012.04.20 테이블 인덱스 확인 쿼리

오키 생일 즈음..

2012. 5. 11. 00:18 from 사진



Posted by centauros :

삼청동..

2012. 5. 11. 00:09 from 사진



Posted by centauros :

2012.01.31

2012. 5. 8. 00:26 from 사진




Posted by centauros :

$ORACLE_HOME/sqlplus/admin/glogin.sql에 

define_editor=vi

추가 


Posted by centauros :

리눅스에서

2012. 4. 23. 16:23 from 개발/Etc

- 백스페이스 안먹을 경우 

   계정의 .bash_profile에 stty erase ^H 등록


- vi에서 ^M 제거

   $s/[Control]+v+m//g 


Posted by centauros :

SELECT A.uniqueness, 

       b.* 

  FROM ALL_INDEXES a, 

       ALL_IND_COLUMNS b 

 WHERE a.index_name = b.index_name 

       AND a.table_name=upper('big_emp');

Posted by centauros :