'oracle'에 해당되는 글 2건

  1. 2011/08/10 Oracle Archive Redo Log 요약
  2. 2010/06/17 Oracle 10g Express 매니저 포트 바꾸기
분류없음2011/08/10 10:57

Archive Redo Log 요약

 

Redo 로그

l  Oracle Log Writerredo undo를 하기 위해 필요한 모든 데이터를 저장합니다.

l  redo로그는 복수의 파일에 쓰여지며 해당 파일이 꽉 찼을 경우 다음 파일로 switching됩니다.

l  switching당하는 경우 파일의 기존의 내용은 날라갑니다.

l  redo로그의 크기는 데이터 변경 분의 2배 이상이 됩니다.

 

Archive redo 로그

l  Redo log의 유실을 막기 위해서는 redo log를 모두 저장 해야 합니다.

l  archiver process redo log가 꽉 찬 경우 이를 archive log로 기록합니다.

l  Log archive되어야만 LGWR가 동작 하기 시작하며 archive작업이 디스크 full등으로 정지 될 경우 LGWR이 동작하지 않아 DBMS hang됩니다.

l  기본적으로 오라클은 no archive mode입니다.

 


저작자 표시 비영리 동일 조건 변경 허락
크리에이티브 커먼즈 라이선스
Creative Commons License
Posted by dosuser(신대용) dosuser
분류없음2010/06/17 15:29



http://hodentekhelp.blogspot.com/2008/08/my-oracle-10g-xe-is-on-port-8080-can-i.html


원문

Tuesday, August 26, 2008

My Oracle 10G XE is on port 8080. Can I change the port?

 If you have port conflict and you want to change Oracle 10G XE's HTTP port (default is 8080) you can change it.

This is what you do in the Windows XP machine.

Make sure OracleServiceXE and OracleXETNSListener have started in the Control Panel.

From Start | Run open a command window.
Assuming your environmental variables are set correctly start with the following: (Reds are what you type-in and blues are what the computer writes to screen)

C:\>sqlplus /nolog

SQL*Plus: Release 10.2.0.1.0 - Production on Tue Aug 26 10:40:44 2008

Copyright (c) 1982, 2005, Oracle.  All rights reserved.

SQL> connect
Enter user-name: system
Enter password: <enter password if will not be visible>
Connected.
SQL> Exec DBMS_XDB.SETHTTPPORT(8087); [Assuming you want to have HTTP going to this port]

PL/SQL procedure successfully completed.

SQL>quit
Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production

I have a bunch of articles on Oracle 10G XE at the following link:
http://hodentek.blogspot.com/2006/11/links-to-my-oracle-10g-xe-articles.html
저작자 표시 비영리 동일 조건 변경 허락
크리에이티브 커먼즈 라이선스
Creative Commons License
Posted by dosuser(신대용) dosuser
TAG oracle