-------------------------------
# SQL*Plus의 이해
-------------------------------
# SQL*Plus® User's Guide and Reference
==> http://docs.oracle.com/cd/B19306_01/server.102/b14357/toc.htm
# SQL Buffer
- 최근 실행(입력)된 SQL 문장 또는 PL/SQL 블록을 저장하는 SQL*Plus의 메모리의 일부
- 새로운 SQL 문장이나 PL/SQL 블록이 입력되면 기존의 SQL 문장 도는 PL/SQL 블록은 지워집니다
# SQL Statements vs. SQL*Plus Commands
1) Language Environment
2) ANSI 표준 ORACLE proprietary
3) DB manipulation X
4) Stored in SQL buffer X
5) Termination Character (;) X , enter를 입력하면 바로 명령어가 실행
cf.) 행연결문자 - ex) SQL>set lines -
> 120
6) X Abbreviation --> ex) describe --> desc
# SQL*Plus Command Category
- Environment : sho[w], set
- Format : col[umn], bre[ak], tti[tle], bti[tle], ...
- File Manipulation : sav[e], get, st[art], @, spo[ol], ed[it], ...
- Execution : /, r[un], exec[ute], ho[st], ...
- Edit : l[ist], a[ppend], i[nput], del[ete], c[hange], ...
- Interaction : 치환변수: &, &&, &n, def[ine], undef[ine], acc[ept], ...
- Misc. : help, ?, desc[ribe], conn[ect], disc[onnect], exit, quit, cl[ear]...
'Oracle > SQL Fundamentals I' 카테고리의 다른 글
5일차 Environment (0) | 2012.04.09 |
---|---|
5일차 Miscellaneous(기타) (0) | 2012.04.09 |
4일차 # 2-20: ORDER BY clause (0) | 2012.04.06 |
4일차 # 2-18: 연산자 우선순위 (0) | 2012.04.06 |
4일차 # 2-17: NOT 연산자 (0) | 2012.04.06 |