본문 바로가기
반응형

전체 글273

Oracle v$session client ip address (접속 아이피 차단, 접속 프로그램 차단) Oracle v$session client ip address (접속 아이피 차단, 접속 프로그램 차단) 1. 세션 조회 select * Frmo v$session; client_info : null 2. trigger 생성 create or replace trigger logon_audit_trig after logon on database begin /****************************************************************************** desc: parm: ver date author description --------- ---------- --------------- ------------------------------------ 1.0 2.. 2024. 3. 28.
Oracle impdp full CHARACTERSET Oracle 11g impdp full CHARACTERSET 새로운 장비에 oracle 설치후 impdp 시 문자셋 설정 select name, value$ from sys.props$ where name in ('NLS_LANGUAGE', 'NLS_TERRITORY', 'NLS_CHARACTERSET', 'NLS_NCHAR_CHARACTERSET'); select * from nls_database_parameters; update props$ set value$ = 'KO16KSC5601' where name = 'NLS_NCHAR_CHARACTERSET'; update props$ set value$ = 'KO16KSC5601' where name = 'NLS_CHARACTERSET'; SQL> .. 2024. 2. 23.
Oracle 작업 수행 남은 시간 Oracle 작업 수행 남은 시간 select * from v$session_longops column type comment sid number Session identifier serial# number Session serial number opname varchar2(64) Brief description of operation target varchar2(64) The object on which the operation is carried out target_desc varchar2(32) Description of the target sofar number The units of work done so far totalwork number The total units of work units.. 2024. 2. 22.
윈도우 서버 2016 이상 자동 업데이트 재부팅 끄기 윈도우 서버 2016 이상 자동 업데이트 재부팅 끄기 1. 옵션 설정 windows server 2016 이상에서는 윈도우 업데이트가 설치되면 자동으로 재부팅 되어 서비스에 문제가 발생합니다. gpedit.msc 실행 컴퓨터구성 - 관리템플릿 - 윈도우구성 - windows업데이트 자동업데티 - 구성 - 사용 - 2.다운로드 및 자동 설치 알림 - 적용 재부팅하거나 gpupdate 로 정책 적용 2. 자동재부팅 스케줄러 작동 안하게 설정 C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator Reboot 리네임 Reboot 폴더 생성 https://imbang.net/2021/11/25/w2016-w2019-%EC%9C%88%EB%8F%84%EC%.. 2023. 10. 4.
findstr findstr findstr /n /s /i "문자열" *.* https://learn.microsoft.com/ko-kr/windows-server/administration/windows-commands/findstr findstr 파일의 텍스트 패턴을 검색하는 findstr 명령에 대한 참조 문서입니다. learn.microsoft.com C:\Users\hsy>findstr /? 파일에서 문자열을 찾습니다. FINDSTR [/B] [/E] [/L] [/R] [/S] [/I] [/X] [/V] [/N] [/M] [/O] [/P] [/F:파일][/C:문자열] [/G:파일] [/D:디렉터리 목록] [/A:색 속성] [/OFF[LINE]] 문자열 [[드라이브:][경로]파일이름[ ...]] /B 패턴이 행.. 2023. 9. 15.
mRemoteNG 원격 접속 mRemoteNG 원격 접속 https://mremoteng.org/ Home The next generation of mRemote, open source, tabbed, multi-protocol, remote connections manager. mremoteng.org https://mremoteng.softonic.kr/ mRemoteNG mRemoteNG로 모든 원격 연결을 한 번에 관리 mremoteng.softonic.kr 2023. 8. 22.
SSH port forwarding SSH port forwarding > ssh user@000.000.000.000 -p 22 -i keypair.pem -N -L 3307:10.10.10.10:3306 > telnet 127.0.0.1 3307 putty를 이용하거나 cmd script로 ssh 접속 상태 유지하면, locahost로 접근 가능하다. https://blog.naver.com/PostView.naver?blogId=alice_k106&logNo=221364560794 150. [SSH, Network] SSH 포트 포워딩(SSH 터널링)의 개념 및 사용 방법 이번 포스트에서는 'SSH 포트 포워딩' 또는 'SSH 터널링' 이라고 불리는 것에 대해서 설명한다. 1. ... blog.naver.com https://just.. 2023. 8. 18.
telnet smtp 메일 보내기 telnet smtp 메일 보내기 일반적으로는 메일서버나 스팸 등에서 차단되고, 사용자 인증을 해야 한다. # telnet xxx.xxx.xxx.xxx 25 220 test.co.kr SMTP Ready # EHLO aaa.com 250-test.co.kr helo [xxx.xxx.xxx.xxx] pleased to meet you 250-SIZE 99000000 250-AUTH LOGIN 250 OK # MAIL FROM: 250 OK Sender ok # RCPT TO: 250 OK Recipient ok # DATA Subject: title From: Your Name To: Recipient Name body . 250 OK https://jookipedia.tistory.com/28 Telne.. 2023. 8. 2.
bat script 파일 자동 삭제 bat script 파일 자동 삭제 forfiles /P c:\test /S /M *.bak /D -7 /C "cmd /c del @file" /P (대상 파일의 경로) c:\Test /S (하위 폴더) 하위폴더도 포함되게 지정 /M (대상 파일의 확장명) *.bak /D (명령 날짜 또는 기간) -7 (7일 이전) /C (실행하고자 하는 명령문) "cmd /c del @file" (대상 파일 삭제) https://learn.microsoft.com/ko-kr/windows-server/administration/windows-commands/forfiles forfiles 파일 또는 파일 집합에서 명령을 선택하고 실행하는 forfiles 명령에 대한 참조 문서입니다. learn.microsoft.com 2023. 6. 30.
mssql 백업, 복원 예상 시간 mssql 백업, 복원 예상 시간 SELECT r.session_id,r.command ,cast(CONVERT(NUMERIC(6,2),r.percent_complete) as varchar) + ' %' AS [Percent Complete] ,CONVERT(VARCHAR(20),DATEADD(ms,r.estimated_completion_time,GetDate()),20) AS [ETA Completion Time] ,CONVERT(NUMERIC(10,2),r.total_elapsed_time/1000.0/60.0) AS [Elapsed Min] ,CONVERT(NUMERIC(10,2),r.estimated_completion_time/1000.0/60.0) AS [ETA Min] ,CONVERT(N.. 2023. 5. 23.
반응형