Rename a Computer that Hosts a Stand-Alone Instance of sql server


Скачать 35.38 Kb.
Название Rename a Computer that Hosts a Stand-Alone Instance of sql server
Тип Документы
rykovodstvo.ru > Инструкция по эксплуатации > Документы
Максимальное количество баллов – 10 баллов

Практическая задача. Анализ документов на английском языке, в которых описана инструкция по эксплуатации и решению технических проблем Постановка задачи: Вы – новый сотрудник некоей организации. Ваша обязанность – Установка и поддержание работоспособности программного обеспечения. Вам дано задание переименовать компьютер ,на который установлен изолированный экземпляр SQL Server 2016, а так же создать отчет об обнаружении SQL Server компьютером. У Вас есть небольшой опыт работы с данным программным продуктом. Но в процессе работы с данной программой у Вас возникли трудности и появились вопросы:

  • Поддерживает ли SQL Server функцию переименования компьютера учавствующего в репликации?

  • Как переименовать ПК на котором установлен именованный экземпляр SQL Server?

  • Как создать отчет об обнаружении SQL Server из командной строки?

Старший сотрудник предоставил Вам инструкцию к установке данного программного обеспечения на английском языке. Вам необходимо найти ответы на поставленные вопросы и задокументировать их в текстовом файле на русском языке. Ответы на вопросы выполнять строго в соответствии с инструкцией.

Исходные данные:

Rename a Computer that Hosts a Stand-Alone Instance of SQL Server


Applies To: SQL Server 2016

When you change the name of the computer that is running SQL Server, the new name is recognized during SQL Server startup. You do not have to run Setup again to reset the computer name. Instead, use the following steps to update system metadata that is stored in sys.servers and reported by the system function @@SERVERNAME. Update system metadata to reflect computer name changes for remote connections and applications that use @@SERVERNAME, or that query the server name from sys.servers.

The following steps cannot be used to rename an instance of SQL Server. They can be used only to rename the part of the instance name that corresponds to the computer name. For example, you can change a computer named MB1 that hosts an instance of SQL Server named Instance1 to another name, such as MB2. However, the instance part of the name, Instance1, will remain unchanged. In this example, the \\ComputerName\InstanceName would be changed from \\MB1\Instance1 to \\MB2\Instance1.

Before you begin

Before you begin the renaming process, review the following information:

  • When an instance of SQL Server is part of a SQL Server failover cluster, the computer renaming process differs from a computer that hosts a stand-alone instance.

  • SQL Server does not support renaming computers that are involved in replication, except when you use log shipping with replication. The secondary computer in log shipping can be renamed if the primary computer is permanently lost. For more information, see Log Shipping and Replication (SQL Server).

  • When you rename a computer that is configured to use Reporting Services, Reporting Services might not be available after the computer name change. For more information, see Rename a Report Server Computer.

  • When you rename a computer that is configured to use database mirroring, you must turn off database mirroring before the renaming operation. Then, re-establish database mirroring with the new computer name. Metadata for database mirroring will not be updated automatically to reflect the new computer name. Use the following steps to update system metadata.

  • Users who connect to SQL Server through a Windows group that uses a hard-coded reference to the computer name might not be able to connect to SQL Server. This can occur after the rename if the Windows group specifies the old computer name. To ensure that such Windows groups have SQL Server connectivity following the renaming operation, update the Windows group to specify the new computer name.

You can connect to SQL Server by using the new computer name after you have restarted SQL Server. To ensure that @@SERVERNAME returns the updated name of the local server instance, you should manually run the following procedure that applies to your scenario. The procedure you use depends on whether you are updating a computer that hosts a default or named instance of SQL Server.

To rename a computer that hosts a stand-alone instance of SQL Server


  • For a renamed computer that hosts a default instance of SQL Server, run the following procedures:

  • sp_dropserver ;

  • GO

  • sp_addserver , local;

  • GO



Restart the instance of SQL Server.

  • For a renamed computer that hosts a named instance of SQL Server, run the following procedures:

  • sp_dropserver ;

  • GO

  • sp_addserver , local;

  • GO



Restart the instance of SQL Server.

After the Renaming Operation


After a computer has been renamed, any connections that used the old computer name must connect by using the new name.

To verify that the renaming operation has completed successfully


  • Select information from either @@SERVERNAME or sys.servers. The @@SERVERNAME function will return the new name, and the sys.servers table will show the new name. The following example shows the use of @@SERVERNAME.

  • SELECT @@SERVERNAME AS 'Server Name';


Additional Considerations


Remote Logins - If the computer has any remote logins, running sp_dropserver might generate an error similar to the following:

Server: Msg 15190, Level 16, State 1, Procedure sp_dropserver, Line 44 There are still remote logins for the server 'SERVER1'.

To resolve the error, you must drop remote logins for this server.

To drop remote logins


  • For a default instance, run the following procedure:

  • sp_dropremotelogin old_name;

  • GO



  • For a named instance, run the following procedure:

  • sp_dropremotelogin old_name\instancename;

  • GO



Linked Server Configurations - Linked server configurations will be affected by the computer renaming operation. Use sp_addlinkedserver or sp_setnetname to update computer name references. For more information, see the sp_addlinkedserver (Transact-SQL) or sp_setnetname (Transact-SQL).

Client Alias Names - Client aliases that use named pipes will be affected by the computer renaming operation. For example, if an alias "PROD_SRVR" was created to point to SRVR1 and uses the named pipes protocol, the pipe name will look like \\SRVR1\pipe\sql\query. After the computer is renamed, the path of the named pipe will no longer be valid and. For more information about named pipes, see the Creating a Valid Connection String Using Named Pipes.

Validate a SQL Server Installation


Applies To: SQL Server 2016

The SQL Server discovery report can be used to verify the version of SQL Server and the SQL Server features installed on the computer. The Installed SQL Server features discovery report displays a report of all SQL Server 2000, SQL Server 2005, SQL Server 2008, SQL Server 2008 R2, SQL Server 2012, SQL Server 2014, and SQL Server 2016 products and features that are installed on the local server. The SQL Server features discovery report is available on the Tools page on the SQL Server Installation center.

To run SQL Server features discovery report:

Launch the SQL Server Installation center, using the Start menu, point to All Programs, point to MicrosoftSQL Server , point to Configuration Tools, and click SQL Server Installation Center. To run the SQL Server features discovery report, click Tools in the left-hand navigation area of SQL Server Installation Center, and then click Installed SQL Server features discovery report.

The SQL Server discovery report is saved to %ProgramFiles%\MicrosoftSQL Server\130\Setup Bootstrap\Log\.

You can also generate the discovery report through the command line. Run “Setup.exe /Action=RunDiscovery” from a command prompt If you add “/q” to the command line above no UI will be shown, but the report will still be created in %ProgramFiles%\MicrosoftSQL Server\130\Setup Bootstrap\Log\.

Похожие:

Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Инструкция по установке Microsoft sql server 2005 Express Edition
Важно! Мы настоятельно рекомендуем использовать английские версии ms sql server 2005 Express Edition и Microsoft sql server Management...
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Руководство по репликации для субд ms sql server содержание
Данный документ является подробным справочным пособием, описывающим репликацию в системе Terrasoft crm x25 под ms sql server
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Руководство по установке MedWork
Субд использует Microsoft sql server 2008 и более новые версии. Программа установки адаптирована к ms sql server 2014 Express (с...
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Руководство по установке MedWork Общие сведения 2
Субд использует Microsoft sql server 2008 и более новые версии. Программа установки адаптирована к ms sql server 2014 Express (с...
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Инструкция по переносу данных по «Луч» из бд ms access в бд ms sql server Москва, 2011
По «Луч») является техническим документом Небанковской кредитной организации закрытого акционерного общества «Национальный расчетный...
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Руководство по повышению производительности служб Analysis Services...
Сводка: в этом техническом документе приводится описание того, как разработчики приложений могут применять методы повышения производительности...
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Инструкция по настройке файла hosts Открыть на редактирование файл...

Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Иван Кореньков it-консалтинг, менеджмент проектов Местоположение
Ит- администрирование баз данных Microsoft sql server 2000- администрирование сетевой инфраструктуры Microsoft Windows (2 домена,...
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Доклад
Возможно наилучшее средство, добавленное корпорацией Microsoft в sql server 0, – это поддержка курсоров сервера. С помощью курсора...
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Инструкция по восстановлению резервной копии базы данных средствами...
Для восстановления резервной копии базы данных на компьютере пользователя должен быть установлен Microsoft sql server Management...
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Инструкция по созданию резервной копии базы данных средствами ms...
...
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Требования к аппаратному обеспечению Минимальные
Бесплатную версию Microsoft sql server 2014 Express Edition можно скачать на сайте корпорации Microsoft
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Требования к аппаратному обеспечению Минимальные
Бесплатную версию Microsoft sql server 2012 Express Edition можно скачать на сайте корпорации Microsoft
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon The Educational Digital Micro (µ) Computer (educ-8, pronounced "educate")...

Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Инструкция по установке ms sql server 2008 Требования к аппаратному обеспечению
Необходимо наличие установленных пакетов: Microsoft. Net framework 5 sp1, Windows Installer 5 и Windows PowerShell 0
Rename a Computer that Hosts a Stand-Alone Instance of sql server icon Инструкция пользователя. Инист 2014 содержание общие правила работы...
Установка и Настройка Сервера на базе win 2012 r2, iis 5, sql server 2012 Express. 5

Руководство, инструкция по применению




При копировании материала укажите ссылку © 2024
контакты
rykovodstvo.ru
Поиск