본문 바로가기

전체 글170

START WITH ... CONNECT BY 절 계층적 질의란 테이블에 포함된 행(ROW)간에 수직적 계층 관계가 성립되는 데이터에 대하여 계층 관계에 따라 각 행을 출력하는 질의이다. START WITH ... CONNECT BY 절은 SELECT 구문과 결합하여 사용된다. 사용 예)SELECT COLUMN_LIST FROM TABLE_JOINS | TABLES [WHERE JOIN_CONDITIONS AND/OR FILTERING_CONDITIONS] [START WITH CONDITION] CONNECT BY [NOCYCLE] CONDITION CONNECT BY [NOCYCLE] PRIOR 절*PRIOR : CONNECT BY 조건식은 한 쌍의 행에 대한 상-하 계층 관계(부모-자식 관계)를 정의하기 위한 것으로, 조건식 내에서 하나는 부모(P.. 2014. 5. 19.
Windows 실행명령어 msconfig --> 시스템 구성msinfo32 --> 시스템 정보adsiedit.msc --> AD권한설정eventvwr --> 이벤트 뷰어ㅇsa.msc --> Active Directory 사용자 및 컴퓨터mstsc --> 원격데스크탑 연결dcomcnfg --> 구성요소 서비스regsvr32 "c:Program Files\PowerFrint\test.dll" --> 레지스트리 등록 2014. 5. 19.
Windows 7 USB DVD Download Tool 오류 처리 방법 Windows 7 USB DVD Download Tool 사용시 아래와 같은 메세지가 나오면.. We were unable to copy your files. Please check your USB device and the selected ISO file and try again. 첫번째 1. USB를 체크한다. 2. 백신(V3등)의 실시간 감시를 끄고 진행한다. 위 방법으로 진행해서 정상적으로 동작하지 않는다면 아래 두번째 방법을 시도한다. 두번째 1. Windows 7이나 Windows Vista에서 명령어 창에서 cmd를 입력해서 도스 창을 엽니다. 2. diskpart를 입력하고 엔터를 누릅니다. 3. diskpart에 들어가서 list disk (여기서 USB 메모리의 파티션 번호를 확인한다... 2014. 5. 19.
C#을 이용한 NTP Service using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Net;using System.Net.Sockets; namespace NTPService_Time{ /// /// Static class to receive the time from a NTP server. /// public static class NtpClient { /// /// Gets the current DateTime from time-a.nist.gov. /// /// A DateTime containing the current time. public static DateTime GetNetw.. 2014. 5. 17.