if i fire simultanious 14 insert query per second,can it degrade the performance of SQL server 2005 with .net 2005 ?

  • in my project, per second, i fire 14 insert query which insert two fields (1)time(varchar(11)) and (2)temparature(numeric(5,3) in 14 different tables.

    Whether these simultaneous operation affect(degrade) performance of my system or not?

    if yes, then how can i improve performance ?

    how can i solve this problem?

    is there any bulk insertion operation in sql which automatically perform batch insertion operation?

    pls, reply me. Quick

  • Normally, not unless you insert "Jumbo" data and your tables have many some weird indexes.

    Your inserts are for different tables. You will only have table locks if there is no connections to other tables in your WHERE/JOIN clauses.

    Make a long story short. If your insert is "tiny", if your inserts do not have relations among tables, you do not need to worry about it.

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply