Click here to Skip to main content
15,887,254 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi,

i would like to know if i use data manipulation queries (such as insert ,delete,select)

with a database does it affect the operations of another database within the same

server.Is there performance issue within databases within the same server.
Posted
Updated 3-May-15 21:40pm
v3
Comments
[no name] 4-May-15 3:15am    
What you have tried ? question is not clear..
Varun Das 4-May-15 3:24am    
hi Rajeesh,
i haven't tried anything but i think i'm facing some performance issue.The above said is a doubt which wants an explanation.

1 solution

Well...yes, possibly.

The only realistic answer is "it depends" - because the server is a computer with finite resources (both processing and memory) if your query is using resources, then they aren't available for other operations on other Sql Connections. If your query is using significant resources, than that could impact on other databases within the same server, just as if you write an app that monopolises the processor and RAM of your PC it will affect what else happens.

And in an SQL environment, if you have several users running similar long-running queries on your DB, that will start to clog other operations. But it will depend on when it all happens, it won't necessarily be consistent.
 
Share this answer
 
Comments
[no name] 4-May-15 4:36am    
Good One +5 :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900