코드 잡동사니

기본포트 변경, 오라클 유저 생성, 권한 부여 본문

서버_오라클

기본포트 변경, 오라클 유저 생성, 권한 부여

세객 2017. 11. 21. 14:45



오라클 유저 생성, 권한 부여

SQL> create user test

  2  identified by 1234

  3  default tablespace users

  4  TEMPORARY TABLESPACE TEMP;

grant resource, connect to test;

grant create session, create table to test;

grant unlimited tablespace to test;


http://yagi815.tistory.com/364


connect -> 데이터베이스에 접속할 수 있는 기본 권한

resource -> 기본적인 객체를 생성, 변경, 삭제를 할 수 있는 권한

create -> 해당 객체를 생성할 수 있는 권한 

plustrace -> sql 문의 실행 경로를 추적할 수 있는 plustrace 권한을 부여함 


http://egloos.zum.com/uknowapps/v/1813116

http://egloos.zum.com/totoriver/v/2439843


http://fordev.tistory.com/23


http://egloos.zum.com/totoriver/v/2439843

http://hyeonstorage.tistory.com/9

http://knamhun.blogspot.kr/2009/03/db-oracle.html

http://mainia.tistory.com/637

기본포트 변경


http://blog.naver.com/PostView.nhn?blogId=esh9760&logNo=220913578674&categoryNo=0&parentCategoryNo=0&viewDate=&currentPage=1&postListTopCurrentPage=1&from=postView


오라클 devloper 로 사용한 계정 생성

http://blog.naver.com/PostView.nhn?blogId=matoker&logNo=30179018112



자동 시퀀스 추가

CREATE SEQUENCE AAA START WITH 1 INCREMENT BY 1 MAXVALUE 100 CYCLE NOCACHE;

CREATE TABLE A (

id number(10),

name VARCHAR2(200)

);


INSERT INTO board(id, name) values(AAA.NEXTVAL, 'aaa');


오라클 계정 비밀번호 만료 일때 사용

https://nicolasjo.tistory.com/95


Comments