데이터베이스/Oracle
-
Oracle 11g 기동 시 오류데이터베이스/Oracle 2021. 8. 13. 15:30
오류 ORA-01034 ORA-01034: ORACLE not available 해결 : 데이터베이스 켜주기 SQL> startup ORACLE instance started. Total System Global Area 2622255104 bytes Fixed Size 2256112 bytes Variable Size 637534992 bytes Database Buffers 1979711488 bytes Redo Buffers 2752512 bytes Database mounted. Database opened. 오류 LRM-00109 ORA-01078: failure in processing system parameters LRM-00109: could not open parameter file '..
-
Oracle 11g 설치 시 경고/오류데이터베이스/Oracle 2021. 8. 13. 14:12
1. Checks 에서 Shmall, Shmmax 경고 /etc/sysctl.conf 파일에서 각각의 값을 크게 바꾸어 주면 된다. 2. Packages 에서의 경고 & 오류 compat- : yum install elfutils- : yum install #일단 아래 코드 실행해보기 [root] yum install elfutils-libelf-devel-* #코드 실행 후, retry 했는데 오류 수정이 안되는 경우, [root] yum list | grep elfutils-libelf-devel* #yum으로 어떤 패키지가 깔려있는지 확인한다. pdksh : 버그 #원인: ins_emagent.mk에 오류 [oracle] vi $ORACLE_HOME/sysman/lib/ins_emagent.mk #..
-
RHEL yum install 안될 경우 해결데이터베이스/Oracle 2021. 5. 12. 15:56
> 에러 메세지 : [Errno 256] No more mirrors to try. [Errno 14] curl#37 - "Couldn't open file /mnt/cdrom/repodata/repomd.xml" 원인 : 경로를 못 찾았기 때문에 발생하는 오류 (짐작.. 정확하지 않음) 해결 : /etc/fstab 에 OS 경로를 추가해준다 [root] vi /etc/fstab ##직접 추가 /dev/sr0 /mnt/cdrom iso9660 defaults 0 0
-
sqlplus 에서 방향키 사용데이터베이스/Oracle 2021. 4. 28. 11:34
CentOS7 기준 참고사이트 : www.lesstif.com/system-admin/rhel-centos-5-6-7-epel-remi-repository-6979743.html [root] yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm [root] yum install rlwrap [oracle] vi .bash_profile alias sqlplus='rlwrap sqlplus' #추가 #만약 sqlplus /as sysdba 도 alias주었으면 그보다 위에 추가해준다 [oracle] . ~/.bash_profile #적용
-
CLOB DBlink 걸기데이터베이스/Oracle 2021. 4. 24. 14:31
주의 ! 12.2 이전 버전에서는 Distributed LOB operations 가 지원되지 않는다 OS : Red Hat Database : Oracle 19c | Clob 이란 ? - LOB는 텍스트, 이미지, 비디오, 사운드 등 구조화되 않은 대형 데이터를 저장하는데 사용한다. - 일반적으로 테이블에 저장되는 구조화된 데이터들은 크기가 작지만, 멀티미디어 데이터는 크기가 크다. - 크기가 큰 데이터는 DB에 저장하기 힘들기 때문에 OS상 존재하는 파일에 데이터베이스가 접근한다. - LONG, LONG RAW 데이터 유형은 예전에 사용했던 것이고, 현재는 대부분 LOB 데이터 유형을 사용한다. - TO_LOB 함수를 이용하여 LONG 및 LONG ROW를 LOB으로 변경할 수 있다. 1. (Sour..