begin transaction;
create table person_id(person_id integer primary key);
insert into person_id values(1);
... snip ...
insert into person_id values(50000);
commit;
このコードは私のマシンでは約0.9秒かかり、392Kを占めるdbファイルを作成します。2行目を次のように変更すると、これらの数値は1.4秒と864Kになります。
create table person_id(person_id integer nonclustered primary key);
なぜそうなのですか?