본문 바로가기

sql ftp handling and perfmon command http://walkthrough-dba.blogspot.kr/2011_05_01_archive.html Collecting performance counters and using SQL Server to analyze the data http://www.mssqltips.com/tip.asp?tip=1722 Problem Quite frequently I find myself in situation where I need to get detailed information on performance monitor counters. For example I need to determine which processes are consuming all CPU at certain times. I find it .. 더보기
오라클에서 is_number, is_date 함수 사용하기 http://scidb.tistory.com/entry/%EC%98%A4%EB%9D%BC%ED%81%B4%EC%97%90%EC%84%9C-isnumber-isdate-%ED%95%A8%EC%88%98-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0 펌 Oracle/PL/SQL Pattern 2009/11/11 21:36 지인에게서 전화가 오다 지인 : 데이터를 체크해야 하는데 오라클에 is_number, is_date 함수가 없어서 데이터를 체크하기가 불편합니다. 데이터를 오라클에서 가져와서 자바에서 체크하고 있습니다. 그러다 보니 너무 느립니다. 필자 : 그럴 필요 없습니다. 지인 : 물론 External Function을 사용하면 자바를 사용하여 오라클에 함수를 생성할수도 있겠지요... 더보기
한 행씩 건너 뛰면서 행을 삭제하는 기능 http://blog.naver.com/rosa0189?Redirect=Log&logNo=60137018268 동영상에 사용된 예제 코드 : Option Explicit Sub delete_Every_Other() Dim rngAll As Range Dim lastRow As Long Dim r As Long Application.ScreenUpdating = False lastRow = Cells(Rows.Count, 1).End(3).Row For r = lastRow To 2 Step -2 Cells(r, 1).Resize(1, 2).EntireRow.Delete Next r End Sub [출처] (426) 엑셀 매크로 사용법 기본 1 (엑셀 VBA 매크로 동영상)|작성자 니꾸 더보기