Courses(72)
-
251126 TIL
DB 접속 시 오류리스너가 중지되었을 때요청한 작업을 수행하는 중 오류 발생:IO 오류: The Network Adapter could not establish the connection업체 코드 17002리스너 실행[oracle@ora19c ~]$ lsnrctl startDB 인스턴스가 유휴 상태일 때요청한 작업을 수행하는 중 오류 발생:Listener refused the connection with the following error:ORA-12505, TNS:listener does not currently know of SID given in connect descriptor업체 코드 12505alert log 모니터링[oracle@ora19c ~]$ cd $ORACLE_BASE/diag/rdb..
18:31:07 -
251125 TIL
오라클 19C 설치가상 머신 생성리눅스 설정DATE & TIME : Asia/SeoulSOFTWARE SELECTION : Server with GUIINSTALLATION DESTINATION : 파티션 선택NETWORK & HOST NAME :General : Automatically connect to this network when it is available 체크enp0S8 IPv4 설정Method : ManualIP : 192.168.56.150Subnet Mask : 255.255.255.0Host name : ora19cKDUMP : Enable kdump 체크 해제SECURITY POLICY : Apply security policy OFFroot : 1234user : itwill/12..
2025.11.25 -
251121 TIL
파일 접근 권한 관리(Cont.)chmod(Cont.)숫자로 권한 설정8진수(0~7) 각 숫자는 권한 패턴8진수2진수rwx0000---1001--x2010-w-3011-wx4100r--5101r-x6110rw-7111rwx 유저그룹기타 사용자rwxrwxrwx777# test1/test2/test3 디렉터리 생성[ora3@oracle ~]$ mkdir -p test1/test2/test3[ora3@oracle ~]$ ls -lR.:total 4-rwxrwxrwx. 1 ora3 ora3 2427 Nov 20 03:13 passwddrwxrwxr-x. 3 ora3 ora3 19 Nov 20 03:54 test1./test1:total 0drwxrwxr-x. 3 ora3 ora3 19 Nov 20 03:54..
2025.11.21 -
251120 TIL
리눅스 명령어(Cont.)CP(copy)파일을 복사하는 명령어[oracle@oracle ~]$ cp /home/oracle/test1/ex1.txt /home/oracle/test1/ex3.txt[oracle@oracle ~]$ ls -l test1total 12-rw-rw-r--. 1 oracle oracle 29 Nov 19 18:12 ex1.txt-rw-rw-r--. 1 oracle oracle 150 Nov 19 18:13 ex2.txt-rw-rw-r--. 1 oracle oracle 29 Nov 19 18:14 ex3.txt[oracle@oracle ~]$ cp ./test1/ex2.txt ./test1/ex4.txt[oracle@oracle ~]$ ls -l test1total 16-rw-..
2025.11.20 -
251119 TIL
설치 및 초기설정VirtualBoxhttps://www.virtualbox.org/ Oracle VirtualBoxPowerful open source virtualization For personal and enterprise use VirtualBox is a general-purpose full virtualization software for x86_64 hardware (with version 7.1 additionally for macOS/Arm and with version 7.2 also for Windows/Arm), targeted at laptopwww.virtualbox.org 서버 주소 확인호스트 키 조합 변경가상머신 생성리눅스 이미지 설정https://yum.oracle.com/..
2025.11.19 -
251118 TIL
문제직무별 급여 유효성 검사 트리거테이블 초기화-- 테이블 초기화DROP TABLE hr.emp PURGE;CREATE TABLE hr.empASSELECT employee_id, salary, job_idFROM hr.employees;익명 블록-- 익명 블록DECLARE v_min number; v_max number;BEGIN SELECT min_salary min, max_salary max INTO v_min, v_max FROM hr.jobs WHERE job_id = :b_job; IF :b_sal NOT BETWEEN v_min AND v_max THEN RAISE_APPLICATION_ERROR(-20000, '급여는 ' || v_min ..
2025.11.18