multiple database performance

  • Thread starter Thread starter Howard
  • Start date Start date
H

Howard

I have a page that pulls data from 4-5 different databases on the same
server. Is there going to be any performance problems that I should be aware
of?

Thanks,
Howard
 
Hi Howard,

Connecting to database will always add a overhead to the application. The
best we can do is to follow Best Practices and minimize the overhead. There
are lots you can find on this like connection pooling (use same connection
string for each database and runtime will manage connection pooling), open
connection late and close connection early so that connection pooling is best
used.

Augustin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top