F2
'분류 전체보기'에 해당되는 글 666건
출처: http://www.itworld.co.kr/print/86771
쉬프트 키를 더하면 현재 셀부터 마지막까지 선택된다. 만약 A2:J987654에 데이터가 있고, 커서가 A2에 있다면, 컨트롤 + 쉬프트(Ctrl+Shift) 키를 누른 채 아래쪽 화살표키를 누르고 오른쪽 화살표키를 누르면 1열만 제외한 모든 데이터가 선택된다.
------
그 밖에
컨트롤+5 : 취소선(strike)
컨트롤+1 : 서식 지정
Edit Mode를 활성화
질의 수행(SELECT ROWID, A.* FROM TABLE_NAME A)
Grid에서 수정 작업
주의사항
Primary Key
Unique Key + Not Null
첫번째 칼럼 RowID
을 만족해야 함
* 수정할 수 없는 칼럼은
빨간색으로 표시 됨
(http://www.starlink.rl.ac.uk/docs/sun95.htx/node213.html)
This means that you have forgotten to `escape' parentheses, probably when defining an NDF section in the UNIX shell. Try inserting a backslash before each parenthesis or enclosing all the special characters inside " " quotes.
% stats myndf\(100:200,\) % linplot spectrum"(5087.0~30)"
(출처 : http://hhy8001.tistory.com/8 )
서식 복사 : Ctrl + Shift + C
서식 붙여넣기 : Ctrl + Shift + V
출처:http://www.faqs.org/faqs/unix-faq/shell/csh-whynot/
환경: csh, tcsh
(X)
find . -name SEARCH-ITEM 2 > /dev/null
(O)
(find . -name SEARCH-ITEM > /dev/tty) > & /dev/null
(https://docs.oracle.com/cd/E11882_01/server.112/e41573/hintsref.htm#CHDJIGDG)
SELECT /*+ PARALLEL(employees 3) */ e.last_name, d.department_name
FROM employees e, departments d
WHERE e.department_id=d.department_id;