sql server 2012

  • hi folks,

    this is Imran, and kind of new bee to sql server 2012, I wanted to know what are the pre-requisite for changing domain name and ip address, like my database server will get new domain and ip address. can you guys please send me some references or steps for the same.

    For your information the installation is standard installation and we don't have any clustered environment coz its a UAT machine but soon we have to so the same for production machine where everything is properly setup.

    please through some your real time scenarios and screenshots if any will be much appreciated......

  • The one thing to keep in mind is that once the server has been renamed in Windows, you need to do this:

    EXEC sp_dropserver OLDNAME

    EXEC sp_addserver NEWNAME, local

    And then restart SQL Server. (You may also have to reboot after sp_dropserver; I don't recall exactly.)

    Obviously, connecting clients, including other servers that have linked servers set up to this one need to be changed.

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • Thanks erland, for your inputs..but one thing i have read some where we have to look for SPN's, however in my case it's not required seems,reason i am using the service account as a NT instead of any local, not sure i am moving in a right path.

    Inputs are highly appreciated erland. If you have any screen shots it will be more helpful.

    Thanks

    Imran

  • I will have to admit that SPNs goes over my head (I don't work as a DBA myself, so I can escape them). Maybe someone else can fill in?

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • If you are not leveraging Kerberos for authentication then you do not need to worry about updating SPNs because you would not have any that were registered that needed to be updated.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply