컴퓨터&모바일
-
MSSQL CPU 사용률 높은 쿼리 찾아내는 쿼리컴퓨터&모바일/MSSQL 2019. 8. 1. 10:06
SELECT TOP 50 qs.creation_time, qs.execution_count, qs.total_worker_time astotal_cpu_time, qs.max_worker_time as max_cpu_time, qs.total_elapsed_time,qs.max_elapsed_time, qs.total_logical_reads, qs.max_logical_reads, qs.total_physical_reads, qs.max_physical_reads, t.[text], qp.query_plan, t.dbid, t.objectid, t.encrypted, qs.plan_handle, qs.plan_generation_num FROM sys.dm_exec_query_stats qs CROSS..
-
C# :: (펌)외부 응용프로그램 실행하기 (Process.Start 메서드) - CMD Application컴퓨터&모바일/Windows 2017. 5. 16. 16:00
윈도우를 종료 System.Diagnostics.Process.Start("cmd.exe","ShutDown.exe -s -f -t 00"); 윈도우를 재부팅System.Diagnostics.Process.Start("cmd.exe","ShutDown.exe -r -f -t 00"); 특정 폴더 열기 System.Diagnostics.Process.Start("explorer.exe", "C:\Temp"); 특정 사이트 열기 System.Diagnostics.Process.Start("explorer.exe", "http://www.naver.com"); 도스명령어 실행System.Diagnostics.Process.Start("cmd.exe","/c dir");// cmd 옵션에 대해 더 알고싶으면....
-
개발사이트,강좌사이트,팁,볼만한 정보(틈틈히 업데이트.줄여서 틈업)컴퓨터&모바일/컴퓨터 2017. 3. 31. 15:16
http://gun0912.tistory.com/46 [안드로이드]전화수신시 전화번호 가져와서 팝업으로 띄우는 방법 http://tomining.tistory.com/m/111 [자바8 람다의 힘] 4장 람다 표현식을 이용한 설계 http://tomining.tistory.com/m/120 json parser 정리 https://www.inflearn.com무료 강좌 사이트 https://www.opentutorials.org/무료강좌사이트 http://www.haeyounglee.com/post/41769497481/how-to-write-a-killer-resume#.WN3xZ-6wdMs(소프트웨어 엔지니어를 위한)끝내주는 이력서를 쓰는 방법 https://brunch.co.kr/@imagineer..