|
Hi all, this is some kind of "what would you do" question. There's a one box installation of a repository system with IIS, a worker engine and SQL Server. Now there's the request to split the system and put the database onto an existing SQL server to free up the license on the 1st one. So, what would you check to find out if you can place the database on another sql server which already exits in your environment? Regards Dirk
(comments are locked)
|
|
Compatibility Performance Security Backups/DR Other systems Probably a few more but this list should get you thinking :)
(comments are locked)
|
|
Check SQL Server versions and editions. If they differ, check that you don't use code or functionality which won't work on the new machine (compression etc) Look at network infrastructure between the two machines is good enough to handle the throughput between app and DB. Look to see that the DB machine has enough memory and disk. If you want to be sure that the DB gets enough dedicated memory you might want to put it in its own instance.
(comments are locked)
|
|
In addition to @Magnus excellent set of checks, I'd want to be sure of the existing transaction load on that other server and what the anticipated load of the database you're moving will be (what it is currently). This could be a major problem, depending.
(comments are locked)
|


Thanks Magnus, Grant and Jonathan.
Now I have the problem that all three of you gave great answers and I don't know which one to choose as "the" answer. :-)
I'd go for @Magnus or @Jonathan. I only added a little. Probably should have been a comment.
yep, you're right. I often overlook that button