Microsoft sql server 2012 express edition - limiting concurrent inserts

Is there a limit to the number of parallel inserts when using Microsoft Sql Server 2012 Express Edition? I know these are CPU usage limits, 1 GB usage limit and 10 GB disk space limit ( here), but I want to know if there are any concurrency limits.

+3


source to share


2 answers


No, it boils down to what you can squeeze out of it based on other constraints / hardware. There is no "speed limit".



+6


source


There was some performance degradation in SQL Server MSDE, but this was removed in SQL Server 2005 Express.

From Overview of SQL Server 2005 Express Edition



there is no workload throttle and the engine works the same as in other editions.

I have not heard or seen that it was added again in later versions.

+2


source







All Articles