I'm developing a small application in C#. Backend SQL Server 2012. It is a ticket generation module. The Ticket table consists of 61 columns. For Every ticket keyed in an entry is inserted in this table. As and when some changes are done to the ticket, such updates are also done in this table.
We will be having about 100 or more users simultaneously doing the ticketing.(The necessary Transaction looping etc., are in place).
My doubt is - is it correct to have many users update the same table. Will it not slow down the application?
I could not test it since, I do not have this kind of a setup. If Anyone here has an experience please suggest the right way.
Thank you.
Googled, but could not get the right track.