windows2 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. Windows 32bit OS 에서 Oracle Memory Sizing 제품 : Database 작성날짜 : 2007-12-21 PURPOSE ------- Windows 32bit OS 메모리 제약과 Oracle 에서 추가메모리 사용하도록 설정하는 방법을 설명한다. CONTENTS -------- 1. Windows 32bit 메모리 확장 관련 용어들 2. Windows 32bit 메모리 확장 설정 방법 3. AWE_WINDOW_MEMORY 파라미터 산정 4. Windows 에서 Oracle 메모리 사용량 모니터링 5. Windows 에서 Oracle 메모리 사용량 줄이는 방법 EXPLANATIONS ------------ 1. Windows 32bit 메모리 확장 관련 용어 - /3GB Windows 32bit OS 에서 메모리 어드레싱은 4GB 까지 가능하고, 이 중 .. 2008. 8. 13. 이전 1 다음