C#,Delphi,Oracle,MSSQL 개발자블로그

plsql developer 편의기능집합 본문

Infomation/PLSQL Developer

plsql developer 편의기능집합

19760323 2018. 7. 12. 09:17

plsql developer 편의기능집합



sql 툴을 사용할 때

편하게 사용할 수 있는 세팅을

미리 작업해놓거나

편의기능들을 알아두어

개발할 땐 집중해서 일할 수 있는

환경을 만들어놓고자 정리해놓습니다.



#plsql developer 세미콜론 단위로 실행

plsql 실행 시 블럭지정 후 실행해야 하는 불편함이 존재한다.

세미콜론 단위로 실행할 수 있도록 아래 옵션을 체크한다.

Tool > Preferences > preferences > Window Types > SQL Window > AuthSelect statement





#라인번호 표시

Tool > Preferences > preferences > Window Types > SQL Window > Show gutter ( line numbers) 체크





#null 값 색깔 표시

Tool > Preferences > preferences > Window Types > SQL Window > Null value cell color 에서 색 선택





#결과값 색상 번갈아가며 표시하지 않기

Tool > Preferences > preferences > Window Types > SQL Window > Alternate row color 의 Enabled 체크 해제








#sql 결과갯수제한

3가지 옵션이 있는데 주로 Fixed 로 100 정도 설정해놓습니다.

전체 데이터를 확인할 일은 생각보다 많이 없고 필요하면 추가조회하면 됩니다.


Tool > Preferences > preferences > Window Types > SQL Window > Records per Page




#연결 유지

Tool > Preferences > preferences > Oracle > Connection > Check connection 에 체크





#접속정보 저장

Tool > Preferences > preferences > Oracle > Logon History > Definition > Store with password 체크





#sql 실행내역 / sql history / sql 로그 확인

Edit > Recall Statement ( 단축키 Ctrl + E )

 

출처 : http://hello-nanam.tistory.com/51

Comments