identity burning
set factor
|
server-wide
|
sp_configure
|
Indicates a percentage of the total available
ID numbers to allocate for each block. Works with identity
grab size. If the identity_gap for
a table is set to 1 or higher, identity burning set factor has
no effect on that table. The burning set factor is used for all
tables for which identity_gap is set
to 0.
When you set identity burning set factor,
express the number in decimal form, and then multiply it by 10,000,000
(107 ) to get the correct value to use with sp_configure.
For example, to release 15 percent (.15) of the potential IDENTITY
column values at one time, specify a value of .15 times 107 (or
1,500,000):
sp_configure "identity burning set factor",
1500000
|