-
Notifications
You must be signed in to change notification settings - Fork 1
Useful Commands
Benh LIEU SONG edited this page Apr 23, 2021
·
5 revisions
My own cheatsheet.
disk resize name = 'master', size = 13312
alter database master on master=78
To set it to 0.1% of all available identity numbers of each table, use following formula:
0.001*10^7 = 10000
and then run:
sp_configure 'identity burning set factor' 10000
To have ASE allocate identity numbers by batches of 20000:
CREATE TABLE xxx (
...
) WITH identity_gap = 20000