Is it possible that an insert would use parallelism?
- by Lieven Cardoen
In what situation can inserting a simple record (the table has got some 10 columns, two of them are xml) use parallelism?
CREATE TABLE [dbo].[PackageSessions](
[PackageSessionId] [int] IDENTITY(1,1) NOT NULL,
[PackageId] [int] NOT NULL,
[UserId] [int] NOT NULL,
[StartDateTime] [datetime] NULL,
[StopDateTime] [datetime] NULL,
…