일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- checbox
- 톰캣
- DB
- MYSQL
- exception
- null
- 네이버스마트 에디터
- 오라클
- 전자정부 표준프레임워크
- RADIO
- JSTL
- maven
- 호환성
- 웹 플랫폼 설치 관리자
- php
- @RequestBody
- switch
- 한글
- html
- 이클립스
- 날짜
- json
- jquery
- spring form tag
- Oracle
- HTML5
- 문자열
- java
- 스크립트
- SSL
- Today
- Total
목록DB/ORACLE (101)
개인적인 정리
오라클 ASIN 함수 ASIN returns the are sine of n. The argument n must be in the range of -1 to 1, and the function returns a value in the range of -pi / 2 to pi / 2, exrpessed in radians. SQL> SELECT ASIN(.3) FROM DUAL ; --> 0.304692654015398 SQL> SELECT ASIN(-2) FROM DUAL ; --> ORA-01428: argument '-2' is out of range 라는 오류가 발생.
오라클 ASCIISTR 함수 ASCIISTR takes as its argument a string, or an expression that resolves to a string, in any character set and return an ASCII version of the string in the database character set.
오라클에서 ASCII() 함수 ASCII returns the decimal representation(십진 표기법) in the database character set of the first character of char SQL > SELECT last_name FROM employees WHERE ASCII(SUBSTR(last_name, 1, 1)) =76 ORDER BY last_name ; --> Ladwig Landry Lee Livingston Lorentz SQL> SELECT ASCII('\?') FROM DUAL; --> 92
오라클에 XML 관련 함수들이 있다. APPENDCHILDXML DELETEXML DEPTH EXISTSNODE EXTRACT (XML) EXTRACTVALUE INSERTCHILDXML INSERTCHILDXMLAFTER INSERTCHILDXMLBEFORE INSERTXMLAFTER INSERTXMLBEFORE PATH SYS_DBURIGEN SYS_XMLAGG SYS_XMLGEN UPDATEXML XMLAGG XMLCAST XMLCDATA XMLCOLATTVAL XMLCOMMENT XMLCONCAT XMLDIFF XMLELEMENT XMLEXISTS XMLFOREST XMLISVALID XMLPARSE XMLPATCH XMLPI XMLQUERY XMLROOT XMLSEQUENCE XMLSERIALI..
ADD_MONTHS(date, integer) - date 에 integer 를 더한 date를 return 한다. integer는 =, - 모두 가능 ADD_MONTHS returns the date date plus integer months. A month is defined by the session parameter NLS_CALENDAR. The date argument can be a datetime value or any value that can be implicitly converted to DATE. The integer agrument can be an integer or any value that can be implicitly converted to an integer. The ..
ACOS(n) ACOS returns the arc cosine of n. the argument n must be in the range of -1 to 1, and the function returns a value in the range of 0 to pi, expressed in radians. SQL> SELECT ACOS(.3) FROM DUAL ; --> 1.2661036727795
ABS(n) ABS returns the absolute value of n. 절대값을 return SQL>SELECT ABS('-1000.99999') FROM DUAL ; --> 1000.99999 SQL>SELECT ABS('A') FROM DUAL ; --> ORA-01722: invalid number 를 발생시킨다.
warning: oci_connect() [function.oci-connect]: ORA-24408: could not generate unique server group name in /aaa/bbbb/ccc/dddd.php on line 69 갑자기 이런 에러가 발생하였다. (기존에 잘 돌아가고 있었고, 수정한 것은 없었다) 1. /etc/hosts 파일을 수정한다. 127.0.0.1 localhost localhost.localdomain 1.1.1.1 shopweb 이런식으로 ip와 host 명을 기입해준다고 하는 것 같다. (구글 검색을 해보니) 2. 퍼미션을 변경한다. 내 경우에는 잘 돌아가고 있었고, 소스를 비롯해서 작업한 내용이 없는데 갑작스레 안된다고 연락을 받았다. 혹시나 해서 퍼미션..