SQL Server/SQL Server Tip

SQL Server 2016 자동 통계 업데이트 임계값 변경

SungWookKang 2016. 10. 29. 02:28
반응형

SQL Server 2016 자동 통계 업데이트 임계값 변경

 

  • Version : SQL Server 2016

 

SQL Server 2016에서 자동 통계 업데이트를 위한 기본값이 변경되었다. 기존의 자동 통계 업데이트를 위한 기본 값은 테이블 전체 행의 약 20% 행 변경이 발생하였을때 통계 업데이트가 이루어진다. 예를 들면 1억 행이 있는 테이블의 경우 2천만 행이상 변경이 발생해야 통계 업데이트가 이루어진다. 대형 테이블의 경우 20%에 대한 행 변경이 매우 크기 때문에 기본적으로 잘 사용하지 않는다.

위와 같은 사유 때문에 Trace Flag 2371이 소개되었고 SQL Server 2008R2 SP1 이후 적용할 수 있다. 이 추적플래그는 테이블 행변화에 대한 비율을 극적으로 감소시켰다. 예를 들면 1억 행이 있는 테이블의 경우 100만 행 이상 변경이 발생할때 통계 업데이트가 이루어진다. 하지만 임계감 감소로 인해 빈번한 업데이트를 일으킬 수 있다. 이 Trace Flag 2371은 기본적으로 비활성화 되어 있으며 SQL Server 2016에서 호환성 수준 130 데이터베이스에 대해서는 기본적으로 활성화 되어 있다.

 

즉 한마디로 정리하면 아래와 같다.

  • SQL Server 2014 이하 : 임계값은 이전의 데이터베이스와 동일하다. (테이블 행 변경20%) 새로운 임계값을 활성화 하기 위해서 Trace Flag 2371을 사용할 수 있다.
  • SQL Server 2016 : 데이터베이스 호환성이 130 미만인 경우 이전 임계값이 사용되며, 130 이상은 TF 2371을 사용하지 않아도 새로운 임계값이 기본으로 활성화 되어 있다.

 

만약 SQL Server 2016을 사용하는데 빈번한 통계 업데이트로 인해 성능에 영향이 발생한다면 자동 통계 업데이트를 False로 구성하여 사용할 수 있도록 한다.

 

 

아래 실습을 통계 자동 통계 업데이트가 이루어지는 시점을 확인할 수 있다. 우선 실습을 위한 샘플 데이터 10억건을 생성한다.

--setup a table and insert 100 million rows

drop database testautostats

go

create database testautostats

go

use testautostats

go

create table t (c1 int)

go

set nocount on

declare @i int

set @i = 0

begin tran

while @i < 100000000

begin

declare @rand int = rand() * 1000000000

if (@i % 100000 = 0)

begin

while @@trancount > 0 commit tran

begin tran

end

insert into t values (@rand)

set @i = @i + 1

end

commit tran

 

go

create index ix on t (c1)

go

 

현재 마지막 통계가 이루어진 시점을 확인한다.

--run this query and query stats property

--note the last_updated column

select count (*) from t join sys.objects o on t.c1=o.object_id

go

select * from sys.stats st cross apply sys.dm_db_stats_properties (object_id, stats_id)

where st.object_id = object_id ('t')

 

SQL Server 2016에서 자동 통계 업데이트가 변경되는 시점을 확인하기 위해 백만건의 데이트를 삭제 한다.

--delete 1 million row

--run the same query and query stats property

--note that last_updated column changed

delete top (1000000) from t

go

select count (*) from t join sys.objects o on t.c1=o.object_id

 

go

select * from sys.stats st cross apply sys.dm_db_stats_properties (object_id, stats_id)

where st.object_id = object_id ('t')

 

SQL Server 2016 미만의 버전(호환성 수준 120)에서 자동 통계 업데이트가 변경되는 시점을 확인 한다.

--now switch DB compt level to 120

--delete 1 million row

--note that stats wasn't updated (last_updated column stays the same)

alter database testautostats SET COMPATIBILITY_LEVEL=120

go

delete top (1000000) from t

go

select * from sys.stats st cross apply sys.dm_db_stats_properties (object_id, stats_id)

where st.object_id = object_id ('t')

 

 

[참고자료]

 

 

2016-10-28 / 강성욱 / http://sqlmvp.kr

 

 

SQL Server 2016, MS SQL, SQL 2016, TF2371, Trace Flag, 자동 통계 업데이트, Auto update statistics, 통계 업데이트 임계치, 쿼리튜닝, DB튜닝, SQL 튜닝

 

반응형