I am working on a database that usually uses GUIDs as primary keys.
By default SQL Server places a clustered index on primary key columns. I understand that this is
If you are using NewId(), you could switch to NewSequentialId(). That should help the insert perf.