Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3877656
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T22:31:23+00:00 2026-05-19T22:31:23+00:00

We have multiple DB servers. On one of the servers we have a master

  • 0

We have multiple DB servers. On one of the servers we have a master config table that holds instructions as to what DB server and DataBase name an Agency is supposed to use.

Currently each Database always has 2 connections on them, even if they’re not being used (which we are fixing). However, we’re trying to find a way to make it so our connections are not all over the place, and relieve some of the stress on our DB Servers.

After a lot of research we found some articles saying to do all connections to a central location, and then Change which database we’re using through the SQLConnection object. Which seems a bit roundabout, but could work.

So I’m wondering what others do in this situation?

The current path for this is:

-User Logs in
-System access ConfigTable to find out which database user is going to connect to.
-System loads the Agency connection settings into memory (SEssion) for that user.
-Every request now directly hits that users database.

Is there a more efficient way of doing this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T22:31:23+00:00Added an answer on May 19, 2026 at 10:31 pm

    Open connections late, and close them early.

    For example:

    string result;
    using (var con = new SqlConnection(...))
    {
        con.Open();
        var com = con.CreateCommand();
        com.CommandText = "select 'hello world'";
        result = com.ExecuteScalar();
    }
    

    The Windows OS will make sure to efficiently pool and reuse connections. And since you’re only using connections when you need them, there are no idle connections lying around.

    EDIT: Windows only caches connection strings that are literally the same, so if you use Initial Catalog=<dbname> in the connection string, that could hurt performance by requiring 500+ “connection pools” for one server.

    So if you have 4 servers with a lot of databases, make sure you only use 4 connection strings. After connecting, switch database with:

    com.CommandText = "use <dbname>";
    com.ExecuteNonQuery();
    

    Or query with a three-part name like:

    select * from <dbname>.dbo.YourTable
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

On one Linux Server running Apache and PHP 5, we have multiple Virtual Hosts
I have an application running on multiple IIS servers that need to parse a
I'm building an application with multiple server involved. (4 servers where each one has
Let's say I have an application that is guaranteed to overwhelm one server even
I have to deploy my php/html/css/etc code to multiple servers and i am looking
In Sql Server 2005 when I have multiple parameters do I have the guarantee
A single Biztalk Server can have multiple Host processes. Is it possible to create
I have a Linux server with multiple ips (so, multiple eth0, eth0:0, eth0:1 etc).
I have a IIS server running on Windows Server 2003. The server hosts multiple
I have an environment where multiple sites hosted on the same server will use

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.