작성날짜 : 2011-03-16 |
//계정 잠금 푸는 명령어
alter user scott account unlock
// 접속
conn scott/암호
select * from tab;
//목록 보기
desc emp;
desc dept;
화면 설정 명령어
set linesize 1000;
set pagesize 1000;
ed
//alias
select ename as 이름, job as 담당
select replace('abcde','bc','BC') from dual;
-> aBCde
select substr('870101', 1, 3) from dual;
-> 870
select substr(hiredate, 1, 2) = '87'
-> 87에 해당하는거 다 출력
select *
from emp;
select ename, sal, deptno
from dept
where sal > 2500 and deptno = 20;
// 계정 생성
system 계정으로 로긴.
다음에 접속됨:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL> create user testj identified by testj;
사용자가 생성되었습니다.
SQL> grant resource, connect to testj;
권한이 부여되었습니다.
SQL> conn testj/testj;
연결되었습니다.
SQL> alter session set nls_date_format = 'DD-MON-RR';
세션이 변경되었습니다.
D:\oracle\product\10.2.0\db_1\NETWORK\ADMIN
ORCL =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = 504-12)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = orcl)
)
)
다른 네트웤에 있는 db를 쓰고 싶다면
HOST = 504-12 이부분에 IP를 써주면 된다.
'Programming > Oracle' 카테고리의 다른 글
[Oracle] Advanced Query (Join) (0) | 2015.05.11 |
---|