USE AdventureWorks2012 ;
GO
EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE ;
GO
-- 정보 확인
EXEC sp_configure 'max worker threads'
-- max worker threads를 900으로 변경
EXEC sp_configure 'max worker threads', 900 ;
GO
RECONFIGURE;
GO
CPU Core별 사용 가능 카운트
CPU 수
32비트 컴퓨터(최대 SQL Server 2014(12.x))
64비트 컴퓨터(최대 SQL Server 2016(13.x) SP1)
64비트 컴퓨터(SQL Server 2016(13.x) SP2 및 SQL Server 2017(14.x)부터)
CPU Core를 효율적으로 사용하기 위해, hyperthread 기법을 사용하여 물리 코어의 2배로 논리 코어를 할당하여 사용 하는 경우가 있음.
wmic 명령어로 물리 및 논리 코어 카운트 확인
numberofcores : 물리코어
numberoflogicalprocessors : 논리코어
-- 아래는 소켓이 2개이며 하이퍼 스레딩을 사용하여 물리 CPU는 16개, 논리 CPU는 32개
C:W>wmic cpu get numberofcores,numberoflogicalprocessors
numberofcores numberoflogicalprocessors
8 16
8 16
$(document).ready(function() {
$('#example').DataTable();
} );
In addition to the above code, the following Javascript library files are loaded for use in this example:
https://code.jquery.com/jquery-3.5.1.js
https://cdn.datatables.net/1.10.25/js/jquery.dataTables.min.js
css
The following CSS library files are loaded for use in this example to provide the styling of the table:
https://cdn.datatables.net/1.10.25/css/jquery.dataTables.min.css
-- disk 활성화 online disk -- readonly 설정 복구 attributes disk clear readonly
예제
DISKPART> list disk
디스크 ### 상태 크기 사용 가능 Dyn Gpt
---------- ------------- ------- ------------ --- ---
디스크 0 온라인 279 GB 0 B
디스크 1 예약됨 558 GB 0 B
디스크 2 예약됨 279 GB 0 B
DISKPART> select disk 1
1 디스크가 선택한 디스크입니다.
DISKPART> online disk
가상 디스크 서비스 오류:
지정한 디스크 또는 볼륨은 Microsoft 장애 조치(failover) 클러스터링 구성 요소에서
관리합니다. 이 작업을 수행하려면 디스크가 클러스터 유지 관리 모드이고 클러스터
리소스 상태가 온라인이어야 합니다.
<<< 클러스터에 추가한 노드 제거...(클러스터에 노드 추가시 저장소 포함으로 설정하여 문제가 발생함...)
DISKPART> online disk
DiskPart에서 선택한 디스크를 온라인으로 설정했습니다.
DISKPART> attributes disk clear readonly
디스크 특성을 지웠습니다.
DISKPART> select disk 2
2 디스크가 선택한 디스크입니다.
DISKPART> online disk
DiskPart에서 선택한 디스크를 온라인으로 설정했습니다.
DISKPART> attributes disk clear readonly
디스크 특성을 지웠습니다.
DISKPART> list disk
디스크 ### 상태 크기 사용 가능 Dyn Gpt
---------- ------------- ------- ------------ --- ---
디스크 0 온라인 279 GB 0 B
디스크 1 온라인 558 GB 0 B
* 디스크 2 온라인 279 GB 0 B
DISKPART>