Troubleshooting relocated SQL Server 2014 database

Brett Zamora 0 Reputation points
2023-08-07T21:43:34.6233333+00:00

Hi...

 

I've seen a strange characteristic after relocating a database from one server to another.

 

Overview:

 

My database SampleDB (data and log) reside on a SAN storage volume that is connected via fiber to the physical server that is running SQL Server 2014.  I currently have 2 physical servers (Host1 (Server 2012 Standard) & Host2 (Server 2019 Standard)) that are running SQL Server 2014 Enterprise.

 

Initially the SampleDB volume (with DB files) was connected to Host1. The SampleDB volume (with DB files) is now connected to Host2. Primarily everything appears to be working. Particularly as I issue commands from the SQL Server Management Studio on Host2.

 

Migration Steps Completed:

 

Host1: Took SampleDB offline.

Host1: Detached SampleDB.

Host1: Detached volume from SAN.

Host2: Attached volume from SAN.

Host2: Attached SampleDB.

Host2: Various admin tasks, such as updating User rights to newly attached SampleDB.

Host2: Ran various queries against database and all looks good.

 

Application Interface:

 

I have a thick-client .NET application that interfaces with backend web-services. Those backend web-services interface with the database using stored procedure calls. I updated the backend services to point to the SampleDB on Host2. Restarted all the services and started up my thick-client .NET application. One of the first steps in the thick-client application is to login with a username/password, the credentials provided on the thick-client UI are passed to the backend services and those services interface with the database to validate the user credentials.

 

This authentication process completes successfully, however, it did seem a little sluggish after relocating the database to Host2. (I've since completed and UPDATE STATISTICS process and reindexed the various tables in my SampleDB.) Generally speaking the authentication process is not too slow, it just feels a little sluggish. I'll describe the more pressing issue in the next section.

 

I am actually planning to take Host1 out of service because it is an old OS and because the hardware is older.

 

After relocating the database, I though it made sense to stop all the SQL Server services on Host1. I did this for a variety of reasons; I didn't think they would be needed any longer and to protect against any possible conflict between the two database engines (Host1 & Host2). Plus I am planning to take Host1 out of service.

 

Strange Behavior:

 

This brings me to the issue that caused me to reach out for assistance from the community.

 

After stopping the SQL Server services on Host1, I started up my thick-client application. What I discovered was that the application based authentication process was taking several minutes to complete. (Versus perhaps 10 seconds when the Host1 SQL Services were running.)

 

If I start back up the SQL Services on Host1, the authentication process goes back to roughly 10 seconds.

 

This is very strange. Host1 has no connection to the SampleDB or the volume that SampleDB is stored on. Host2 has the volume and the database connected.

 

Questions:

 

Is it possible that my database that was relocated to Host2 has some information that is causing it to look for SQL information on Host1?

 

If my .NET web services are correctly communicating with the SampleDB on Host2 based on the datasource settings (which point to Host2), is it possible that they may somehow still be trying to find the database on Host1?  (This seems absurd to me.)

 

Summary:

 

I'm grasping at straws here. I'll take any suggestions of things I can look at that may give me some insight into why stopping the SQL Services on Host1 might impact an application that is properly interfacing with the database that is on Host2.

 

Thanks,

 

Brett

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
13,163 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Brett Zamora 5 Reputation points
    2023-08-08T21:14:33.69+00:00

    Hi...

    This problem has been resolved. Based on feedback I received, I took a closer look at the application servers and found that I had a connection string in my log4net.config file that was referencing the Host1 server. Once I updated the config file, everything started working properly and I was able to stop the MSSQLSERVER service on Host1 without any repercussions on my client application.

    Thanks for all the feedback.

    Brett

    1 person found this answer helpful.