본문 바로가기

JJON's StorY205

topas 명령 topas 명령 목적 선택한 국지 시스템 통계를 보고합니다. 구문 topas [ -d number_of_hot_disks ] [ -h ] [ -i monitoring_interval_in_seconds ] [ -n number_of_hot_network_interfaces ] [ -p number_of_hot_processes] 설명topas 명령은 국지 시스템에서의 활동에 대해 선택적 통계를 보고합니다. 명령은 curses 라이브러리를 사용하여 80x25 문자 기준 표시장치에서 보거나 최소한 그래픽 표시장치와 같은 크기의 창에서 보는 것에 적절한 형식으로 그 출력을 표시합니다. topas 명령은 perfagent.tools 파일세트가 시스템에 설치되어 있어야 합니다. topas 명령이 플래그없이 호출될.. 2008. 10. 17.
Transportable Tablespaces Transportable Tablespaces by Jeff Hunter, Sr. Database Administrator Contents Overview Introduction to Transportable Tablespaces Using Transportable Tablespaces Overview Oracle's Transportable Tablespace is one of those much awaited features that was introduced in Oracle8i (8.1.5) and is commonly used in Data Warehouses (DW). Using transportable tablespaces is much faster than using other utilit.. 2008. 10. 17.
sqlnet ip 제한 tcp.validnode_checking = yes tcp.invited_nodes=(192.168.0.1, 192.168.0.2) tcp.excluded_nodes=(192.168.0.6) TCP.NODELAY=yes (192.168.0.1, 192.168.0.2)는 접속 되지만 (192.168.0.6)은 접속 불가 SQL*Net을 통해 listener에 접속할 수 있는 Client Node를 제한하는 방법 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SQL*Net을 사용하면서 특정한 Client Node의 접근을 제한할 수 있으며, 이 기능은 Oracle V7.1이상에서 적용을 할 수가 있습니다. Configuration은 ~ .. 2008. 10. 7.
archive file 자동 삭제 스크립트-window Option Explicit Const strRootPath = "C:\Temp\" Const nDays = 10 ' 초과일수 Dim oFSO Set oFSO = CreateObject("Scripting.FileSystemObject") Dim oFolder, oSubFolder Set oFolder = oFSO.GetFolder(strRootPath) Dim oFile For Each oFile In oFolder.Files If Int(Now() - oFile.DateLastAccessed) >= nDays Then oFile.Delete End If Next ------------------------------------------------ 확장자 vbs로 저장 oFile.DateLastAcc.. 2008. 10. 7.