본문 바로가기

분류 전체보기63

[C#] Stopwatch를 사용하여 작업 속도 측정 업무 중에 속도 개선해야 할 일이 있어서 측정을 위해 테스트 코드로 작성해봤다. using System.Diagnostics; Stopwatch sw = new Stopwatch(); sw.Start(); // Do Something sw.Stop(); Console.Write(sw.ElapsedMilliseconds.ToString() + "ms"); 2021. 11. 22.
[C#][.Net WinForm][오류해결] the designer could not be shown for this file because none of the classes within it can be designed 윈폼 개발중에 아래의 오류를 겪었는데 이 문제를 해결하기 위해 검색했다. 프로젝트 속성 > Build > Platform Target이 x64에서 Any CPU로 변경했더니 정상적으로 Design Mode 진입이 되었다. https://stackoverflow.com/questions/6683255/the-designer-could-not-be-shown-for-this-file-because-none-of-the-classes-within The designer could not be shown for this file because none of the classes within it can be designed We have the following shared component: public cl.. 2021. 11. 19.
다이어그램 그리기 - diagrams.net 설치없이 웹에서 순서도, 클래스 다이어그램, UML 등 그릴 수 있는 도구 아래의 두 사이트는 동일한 사이트이다. https://www.diagrams.net/ Diagram Software and Flowchart Maker Security-first diagramming for teams. Bring your storage to our online tool, or go max privacy with the desktop app. No login or registration required. www.diagrams.net https://draw.io Flowchart Maker & Online Diagram Software Flowchart Maker and Online Diagram Software .. 2021. 11. 11.
WinMerge 설치 및 사용법 기업에서도 무료로 사용할 수 있는 폴더 및 파일 비교 툴 하나를 소개해볼게요. 프로그램을 빌드 후 exe파일이나 dll파일 이외에도 빌드 되지 않는 xml파일이나 json파일 또는 html css js처럼 빌드 과정이 없는 파일들이 배포 버전에서 무엇이 달라졌는지 한눈에 파악이 잘 안되는데 WinMerge를 사용하면 어떤 파일이 변경되었는지 어디서 변경이 일어났는지 등을 파악 할 수 있다. 설치 : https://winmerge.org/ WinMerge - You will see the difference… What is WinMerge? WinMerge is an Open Source differencing and merging tool for Windows. WinMerge can compare bo.. 2021. 10. 31.
[Oracle] ORA-12638 신용검색에 실패했습니다. 원인: 오라클 설치 시 Admin 권한으로 설치하지 않아 발생. 해결법: 오라클 설치 경로의 sqlnet.ora 파일을 열어 아래의 구문을 주석 처리 저의 파일 경로는 D:\Oracle\product\12.1.0\dbhome_1\NETWORK\ADMIN\sqlnet.ora 입니다. # sqlnet.ora Network Configuration File: PATH SOMEWHERE # Generated by Oracle configuration tools. # This file is actually generated by netca. But if customers choose to # install "Software Only", this file wont exist and without the native.. 2021. 6. 23.
[Oracle] 전체 테이블과 컬럼 조회 테이블명 내용 ALL_TABLES 로그인 된 계정의 권한으로 접근할 수 있는 모든 테이블 정보 USER_TABLES 로그인 된 계정이 소유한 모든 테이블 정보 DBA_TABLES 데이터베이스 내의 모든 테이블 정보 ALL_TAB_COLUMNS 로그인 된 계정의 권한으로 접근할 수 있는 모든 컬럼 정보 USER_TAB_COLUMNS 로그인 된 계정이 소유한 모든 컬럼 정보 DBA_TAB_COLUMNS 데이터베이스 내의 모든 컬럼 정보 2021. 6. 23.