일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
29 | 30 | 31 |
- MySQL
- 전자정부 표준프레임워크
- SVN
- String Functions and Date Operators
- 윈도우
- String Function and Operators
- Sring Functions and Operators
- Date and Time Function
- Date and Time Functions
- 방화벽
- Oracle
- 전자정부표준프레임워크
- HTTP
- String Functions and Operators
- Data and Time Functions
- 오라클
- 티베로
- Tibero
- Today
- Total
목록D/ORACLE (15)
웹이야기
MySQL 문자열 함수와 연산자 TO_BASE64() - TO_BASE64(str) 의 형태 Converts the string argument to base-64 encoded form and returns the result as a character string with the connection character set and collation. If the argument is not a string, it is converted to a string before conversion takes place. The result is NULL if the argument is NULL. Base-64 encoded strings can be docoded using the FROM_BASE64() ..
MySQL 문자열 함수와 연산자 SUBSTRING() - 문자열 자르기 정도 ? SUBSTRING(str, pos) SUBSTRING(str FROM pos) SUBSTRING(str, pos, len) SUBSTRING(str FROM pos FOR len) 의 형태 The forms without a len argument return substring from string str starting at position pos. The forms with a len argument return a substring len characters long from string str, starting at postion pos. The forms that use FROM are standard SQL syn..
MySQL 문자열 함수와 연산자 LOCATE() - LOCATE(substr, str) LOCATE(substr, str, pos) 의 형태 The first syntax returns the position of the first occurence of substring substr in string str. The second syntax returns the position of the first occurence of substring substr in string str, starting at position pos. Returns 0 if substr is not in str. Returns NULL if any argument is NULL. mysql> SELECT LOCATE('bar',..
오라클 11g를 설치하고 예제쿼리를 실행하기 위해서는 hr 계정을 활성화시켜줘야 한다. hr 계정을 활성화시키는 방법은 아래와 같다. SQL> alter user hr account unlock ; 사용자가 변경되었습니다. SQL> alter user hr identified by hr123456 ; 사용자가 변경되었습니다. hr계정으로 로그인을 해서 아래와 같이 테이블 목록을 확인해볼 수 있다. SQL> SELECT * FROM TAB ORDER BY TNAME ASC ; COUNTRIES DEPARTMENTS EMPLOYEES EMP_DETAILS_VIEW JOBS JOB_HISTORY LOCATIONS REGIONS 와 같은 테이블이 존재한다. 동일한 방법으로 scott 계정도 활성화시킬 수 있다...
1. About SQL Operators Operators manipulate individual data item called operands or agruments. Operators are represented by special characters or by keywords. 2. Unary and Binary Operators 단항연산자, 이항연산자 The two general classes of operators are: unary : A unary operator operates on only one operand. A unary operator typically appers with its operand in this format: operator operand binary : A bina..
SET Operators 를 집합 연산자라고 하는 것 같다. 집합 연산자의 종류 1. UNION - All distinct rows selected by either query - 합집합, 결과값의 중복 제거 2. UNION ALL - All rows selected by either query, including duplicates - 합집합, 결과값의 중복 허용 3. INTERSECT - All distinct rows selected by both queries - 교집합, 결과값의 중복 제거 4. INTERSECT ALL - All rows selected by both queries including duplicates - 교집합, 결과값의 중복 허용 5. MINUS - All distinct ..
SQL Operator Precedence Operator Operation +, -(as unary operator), PRIOR, CONNECT_BY_ROOT, COLLATE Idetity, negation location in hierarchy *, / Multiplication, devision +, -(as binary operators), || Addition, substraction, concatenation SQL conditions are evaluated after SQL operators sql>SELECT 1+2*3 FROM DUAL ; --> 7
3개의 쿼리중에서 알아서 사용 ~~ select * from tab ; select * from all_tables where owner ='scott' ; select * from user_tables ;
이클립스 상에서 오라클을 연결하여 프로젝트를 진행하기 위해서는 JDBC driver 를 다운로드 받아서 라이브러리에 추가해줘야 하는데. 1. Oracle JDBC driver 다운로드 페이지로 이동 https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html JDBC and UCP Downloads page No results found Your search did not match any results. We suggest you try the following to help find what you're looking for: Check the spelling of your keyword search. Use synonyms for ..
오라클 jdbc 드라이버는 아래 URL 에서 다운로드 받을 수 있다. https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html JDBC and UCP Downloads page No results found Your search did not match any results. We suggest you try the following to help find what you're looking for: Check the spelling of your keyword search. Use synonyms for the keyword you typed, for example, try “application” instead of “sof ww..
윈도우에서 오라클 1521 포트 방화벽 열기 다른 pc 에서 오라클 서버로 붙을려면 방화벽에 1521포트가 열려있어야 한다. 윈도우10 에서 1521 포트를 여는 것은 아래와 같다. 1. 시작 > 설정 2. 네트워크 및 인터넷 3. Windows 방화벽 4. 고급설정 5. Windows 보안 - 아래와 같은 화면이 뜨면 예를 클릭 6. 인바운드 규칙 > 새규칙 - 먼저 인바운드(외부에서 들어오는 규칙) 에 새규칙을 추가한다. 7. 규칙종류 - 1521 포트를 여는 것이므로 포트 선택, 다음. 6. TCP - TCP 1521 포트를 사용하는 것이므로 TCP 선택 - 특정로컬포트 에 1521 입력 후 다음. 7. 작업 - 연결 허용 선택 후 다음 8. 프로필 - 모두 선택 후 다음(편의상) 9. 이름 - 임..
오라클에서 사용자를 추가하는 방법 1. 테이블 스페이스 추가 create tablespace DEVTEST datafile 'Z:\_02_oracleDevData\data.dbf' size 1024M; 2. 사용자 추가 CREATE USER AAA IDENTIFIED BY AAAA12 DEFAULT TABLESPACE DEVTEST TEMPORARY TABLESPACE TEMP ; 3. 권한부여 GRANT CONNECT, RESOURCE, DBA TO AAA ; 4. 사용자 삭제 drop user AAA cascade * cascade - 유저네임과 관련된 모든 데이터베이스 스키마가 데이터 사전으로부터 삭제되고 모든 스키마 객체도 물리적으로 삭제됨. 일단 개발용으로 간단하게 사용하고자 할 때는 1. 사용..
이전에 오라클을 윈도우에서 설치를 해봤다. https://webobj.tistory.com/23 오라클 설치(Windows 10, 11g) 윈도우에서 오라클 설치 Windows 10, Oracle 11g(Oracle Database 11g Release 2) 11.2.0.1.0 윈도우에서 오라클을 설치할려고 한다. 다음 다음 누르기만 하면 되니 어려운 것은 없지만 그래도 한번 정리해본다. 1.. webobj.tistory.com 리스너 설정등을 통해 외부에서 연결이 되도록 할 생각이다. 이 글의 요약본은 아래 글에 기술해놨다. https://webobj.tistory.com/24 오라클 리스너 설정(요약본) 오라클 설치를 완료하고 나서 다른 pc에서 연결을 하기 위해서는(Toad 나 sql develop..
오라클 설치를 완료하고 나서 다른 pc에서 연결을 하기 위해서는(Toad 나 sql developer등으로 연결을 위해서) 리스너를 설정해야 한다. 여기서는 오라클 리스너 설정에 대한 자세한 내용보다는 오라클을 처음 설치하고 연결하는 과정을 기술해본다. 윈도우에서 오라클 설치하는 것은 아래 URL 참고 https://webobj.tistory.com/23 오라클 설치(Windows 10, 11g) 윈도우에서 오라클 설치 Windows 10, Oracle 11g(Oracle Database 11g Release 2) 11.2.0.1.0 윈도우에서 오라클을 설치할려고 한다. 다음 다음 누르기만 하면 되니 어려운 것은 없지만 그래도 한번 정리해본다. 1.. webobj.tistory.com 외부 연결을 위해서..
윈도우에서 오라클 설치 Windows 10, Oracle 11g(Oracle Database 11g Release 2) 11.2.0.1.0 윈도우에서 오라클을 설치할려고 한다. 다음 다음 누르기만 하면 되니 어려운 것은 없지만 그래도 한번 정리해본다. 1. 오라클 다운로드 오라클 홈페이지가 또 변경이 되었다. 오라클 홈페이지 https://www.oracle.com/index.html Oracle | Integrated Cloud Applications and Platform Services About Oracle Unlock endless possibilities A culture of innovation has propelled Oracle since its inception. Today, thank..