728x90

1. db 생성시 별도의 옵션이 없다면 no-logging 모드로 설정된다.

create database testdb


2. db 생성시 logging 모드로 설정하려면 다음과 같이 수행한다.

create database testdb with log (unbuffered logging)

create database testdb with bufferd log (buffered logging)


3. no-logging 모드의 db를 logging 모드로 설정하는 방법은 다음과 같다.

ontape -s -U testdb (unbuffered logging)

ontape -s -B testdb (buffered logging)


4. db의 logging 모드를 확인하는 쿼리

select name, is_logging, is_buff_log from sysmaster:sysdatabses


5. 트랜잭션 사용

begin work;

insert/delete/update;

commit/rollback work;


http://www-903.ibm.com/kr/bbs/board_detail.jsp

http://database.sarang.net/?inc=read&aid=1841&criteria=informix&subcrit=&id=&limit=20&keyword=auto&page=1

728x90

+ Recent posts