December 6, 2014 at 11:53 pm
From the explanation: "SQL Server 2008 optimized mixed extent allocation behavior reducing the need for trace flag 1118 and the contention on SGAM(s)."
So I guess there is no need to enable that trace, correct me if I am wrong.
Thanx
Thanks & Best Regards,
Hany Helmy
SQL Server Database Consultant
December 7, 2014 at 9:19 am
Hany Helmy (12/6/2014)
From the explanation: "SQL Server 2008 optimized mixed extent allocation behavior reducing the need for trace flag 1118 and the contention on SGAM(s)."So I guess there is no need to enable that trace, correct me if I am wrong.
Thanx
The caching in 2005 and later releases reduces contention, it doesn't eliminate it. Anyway, the cached table information will, when there is any, avoid the SGAM contention for the initial allocation. But if at some point in time temp tables are being created faster than they are being deleted that cache can become empty, so that contention starts to happen again. So if you have periods where lots of temp tables are allocated you may still want to use the flag.
Tom
December 7, 2014 at 9:58 pm
TomThomson (12/7/2014)
Hany Helmy (12/6/2014)
From the explanation: "SQL Server 2008 optimized mixed extent allocation behavior reducing the need for trace flag 1118 and the contention on SGAM(s)."So I guess there is no need to enable that trace, correct me if I am wrong.
Thanx
The caching in 2005 and later releases reduces contention, it doesn't eliminate it. Anyway, the cached table information will, when there is any, avoid the SGAM contention for the initial allocation. But if at some point in time temp tables are being created faster than they are being deleted that cache can become empty, so that contention starts to happen again. So if you have periods where lots of temp tables are allocated you may still want to use the flag.
Thanx 4 the info.
Hany
Thanks & Best Regards,
Hany Helmy
SQL Server Database Consultant
December 8, 2014 at 1:08 pm
robbegoetmaeckers (12/4/2014)
Viewing 4 posts - 16 through 18 (of 18 total)
You must be logged in to reply to this topic. Login to reply