Instalação autônoma do MS SQL Server (2008 | 2012) EXPRESS?

4

Meu objetivo é instalar o MS SQL Server 2012 R2 Express.

Eu fiz o download de SQLEXPRADV_x64_ENU.exe e usei /ACTION=Install /UIMODE=Normal para gerar e modificar um arquivo de configuração. Não importa como eu mexa com a configuração, ele irá instalar uma instância "padrão" ou "nomeada" da edição padrão , apesar de eu não especificar uma licença ( desconsidere a seta vermelha em esta imagem , estou selecionando a opção outro ).

O que dá? Qual configuração eu preciso fornecer ou alterar para instalar a edição Express?

Update: Já me disseram que posso ter a versão errada do instalador. (Brilhante deles para nomear todas as versões do mesmo.) Estou baixando atualmente novamente, não tenho certeza se não é o que eu já tenho (que, se eu clicar com o botão direito e escolha "Propriedades", me diz que é um "Microsoft SQL Server Edição Avançada do 2012 Express ").

Eu sei onde fazer o download do Microsoft SQL Server 2008 R2 Express e Eu sei onde baixar Microsoft SQL Server 2012 Express , mas onde no mundo é o Microsoft SQL Server 2012 R2 Express ? O cliente quer usar "MS SQL Server R2 com Ferramentas Avançadas", 2008 ou 2012 (e eventualmente até 2014).

Como você provavelmente perguntará isso, incluirei meu arquivo de configuração completo aqui:

;SQL Server 2012 Configuration File

; DEVELOPER'S NOTE
; This file was obtained from the installer using the switches "/ACTION=Install /UIMODE=Normal" which yields the FULL set of wizard pages AND the ability to save a new configuration file.
; See also: https://technet.microsoft.com/en-us/library/ms144259%28v=sql.110%29.aspx

; Values that need to be changed before use:
;INSTANCENAME="{INSTANCENAME}"
;INSTANCEID="{INSTANCEID}"
;SQLSVCACCOUNT="NT Service\MSSQL${INSTANCENAME}"
;SQLSVCPASSWORD="{SQLSVCPASSWORD}"
;SQLSYSADMINACCOUNTS="{HOSTNAME}\Administrator"
;SAPWD="{SAPWD}"
;RSSVCACCOUNT="NT Service\ReportServer${INSTANCENAME}"
;FTSVCACCOUNT="NT Service\MSSQLFDLauncher${INSTANCENAME}"
;QUIETSIMPLE="True" -- I recommend you pass "/QS" to the installer rather than editing this value

[OPTIONS]
; Required to acknowledge acceptance of the license terms.
IACCEPTSQLSERVERLICENSETERMS="True"
; Specifies a Setup work flow, like INSTALL, UNINSTALL, or UPGRADE. This is a required parameter.
ACTION="Install"
; Detailed help for command line argument ROLE has not been defined yet.
;ROLE="AllFeatures_WithDefaults"
; Detailed help for command line argument ENU has not been defined yet.
ENU="True"
; Parameter that controls the user interface behavior. Valid values are Normal for the full UI,AutoAdvance for a simplied UI, and EnableUIOnServerCore for bypassing Server Core setup GUI block.
;UIMODE="Normal"
; Setup will not display any user interface.
;QUIET="False"
; Setup will display progress only, without any user interaction.
QUIETSIMPLE="False"
; Specify whether SQL Server Setup should discover and include product updates. The valid values are True and False or 1 and 0. By default SQL Server Setup will include updates that are found.
UpdateEnabled="False"
; Specifies features to install, uninstall, or upgrade. The list of top-level features include SQL, AS, RS, IS, MDS, and Tools. The SQL feature will install the Database Engine, Replication, Full-Text, and Data Quality Services (DQS) server. The Tools feature will install Management Tools, Books online components, SQL Server Data Tools, and other shared components.
FEATURES=SQL,AS,RS,DQC,IS,MDS,Tools,SNAC_SDK
;FEATURES=SQLENGINE,REPLICATION,FULLTEXT,RS,BIDS,BOL,SSMS,SNAC_SDK
; Specify the location where SQL Server Setup will obtain product updates. The valid values are "MU" to search Microsoft Update, a valid folder path, a relative path such as .\MyUpdates or a UNC share. By default SQL Server Setup will search Microsoft Update or a Windows Update service through the Window Server Update Services.
UpdateSource="MU"
; Displays the command line parameters usage
HELP="False"
; Specifies that the detailed Setup log should be piped to the console.
INDICATEPROGRESS="True"
; Specifies that Setup should install into WOW64. This command line argument is not supported on an IA64 or a 32-bit system.
X86="False"
; Specify the root installation directory for shared components. This directory remains unchanged after shared components are already installed.
INSTALLSHAREDDIR="C:\Program Files\Microsoft SQL Server"
; Specify the root installation directory for the WOW64 shared components. This directory remains unchanged after WOW64 shared components are already installed.
INSTALLSHAREDWOWDIR="C:\Program Files (x86)\Microsoft SQL Server"
; Specify a default or named instance. MSSQLSERVER is the default instance for non-Express editions and SQLExpress for Express editions. This parameter is required when installing the SQL Server Database Engine (SQL), Analysis Services (AS), or Reporting Services (RS).
INSTANCENAME="{INSTANCENAME}"
; Specify the Instance ID for the SQL Server features you have specified. SQL Server directory structure, registry structure, and service names will incorporate the instance ID of the SQL Server instance.
INSTANCEID="{INSTANCEID}"
; Specify that SQL Server feature usage data can be collected and sent to Microsoft. Specify 1 or True to enable and 0 or False to disable this feature.
SQMREPORTING="False"
; RSInputSettings_RSInstallMode_Description
RSINSTALLMODE="DefaultNativeMode"
; Specify if errors can be reported to Microsoft to improve future SQL Server releases. Specify 1 or True to enable and 0 or False to disable this feature.
ERRORREPORTING="False"
; Specify the installation directory.
INSTANCEDIR="C:\Program Files\Microsoft SQL Server"
; Agent account name
AGTSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
; Auto-start service after installation.
AGTSVCSTARTUPTYPE="Automatic"
; CM brick TCP communication port
COMMFABRICPORT="0"
; How matrix will use private networks
COMMFABRICNETWORKLEVEL="0"
; How inter brick communication will be protected
COMMFABRICENCRYPTION="0"
; TCP port used by the CM brick
MATRIXCMBRICKCOMMPORT="0"
; Startup type for the SQL Server service.
SQLSVCSTARTUPTYPE="Automatic"
; Level to enable FILESTREAM feature at (0, 1, 2 or 3).
FILESTREAMLEVEL="0"
; Set to "1" to enable RANU for SQL Server Express.
ENABLERANU="True"
; Specifies a Windows collation or an SQL collation to use for the Database Engine.
SQLCOLLATION="SQL_Latin1_General_CP1_CI_AS"
; Account for SQL Server service: Domain\User or system account.
SQLSVCACCOUNT="NT Service\MSSQL${INSTANCENAME}"
SQLSVCPASSWORD="{SQLSVCPASSWORD}"
; Windows account(s) to provision as SQL Server system administrators.
SQLSYSADMINACCOUNTS="{HOSTNAME}\Administrator"
; The default is Windows Authentication. Use "SQL" for Mixed Mode Authentication.
SECURITYMODE="SQL"
SAPWD="{SAPWD}"
; Provision current user as a Database Engine system administrator for SQL Server 2012 Express.
ADDCURRENTUSERASSQLADMIN="True"
; Specify 0 to disable or 1 to enable the TCP/IP protocol.
TCPENABLED="1"
; Specify 0 to disable or 1 to enable the Named Pipes protocol.
NPENABLED="1"
; Startup type for Browser Service.
BROWSERSVCSTARTUPTYPE="Disabled"
; Specifies which account the report server NT service should execute under.
RSSVCACCOUNT="NT Service\ReportServer${INSTANCENAME}"
; Specifies how the startup mode of the report server NT service.
RSSVCSTARTUPTYPE="Automatic"
; Add description of input argument FTSVCACCOUNT
FTSVCACCOUNT="NT Service\MSSQLFDLauncher${INSTANCENAME}"
    
por KlaymenDK 16.12.2015 / 20:24

1 resposta

3

Instalador Errado?

Acho que isso vai cair no instalador errado. Eu baixei o instalador do SQL Server 2012 Express Advanced Edition do link que você mencionou e foi capaz de seguir seus passos amplamente, mas eu vi uma diferença notável.

A tela Minha chave do produto é diferente da sua captura de tela. O meu apenas lista Express no menu suspenso, não "Avaliação" - Acho que a avaliação exibida indica que você tem um instalador de edição padrão (ou outro).

Uma maneira rápida de verificar se seu instalador é um arquivo diferente seria comparar o hash. O hash sha1 que recebo neste arquivo é E1F8DEC35422A67E6733E53ED260CCE538E97EDC. FCIV ou Get-FileHash (PowerShell 4.0?) São dois exemplos no Windows.

Isso, por si só, não é uma grande resposta, então eu fui em frente e fiz uma instalação autônoma completa. Primeiro, criei um ConfigurationFile.ini exatamente como você fez.

Instalação autônoma

SQLEXPRADV_x64_ENU.exe /ACTION=Install /UIMode=Normal

Eu acompanhei o instalador até a página "Pronto para Instalar" do instalador, que mostra o caminho para o ConfigurationFile.ini que ele criou. No meu caso:

C:\Program Files\Microsoft SQL Server0\Setup Bootstrap\Log\<timestamp>\ConfigurationFile.ini

Copie ou salve este arquivo onde desejar, junto com a cópia de todo o diretório de instalação antes de fechar o instalador. Se você estiver fazendo instalações autônomas, não precisará adivinhar e copiar o nome da pasta todas as vezes. Eu acho que o diretório de instalação extra + setup.exe é necessário para instalação autônoma, eu não tive sorte tentando executar SQLEXPRADV_x64_ENU.exe com / CONFIGURATIONFILE diretamente.

O arquivo de configuração não pareceu manter nenhuma senha especificada (no meu caso, apenas SAPWD, já que eu habilitei a autenticação de Mixed-Mode no meu exemplo), de modo que ou precisaria ser adicionado ao arquivo posteriormente ou especificado como um comando argumento de linha.

Você vai querer editar seu ConfigurationFile.ini para definir Quiet="True" e comentar o UIMode = Normal, como para a instalação autônoma você geralmente não quer uma interface gráfica, e sem isso, seria apenas iniciar o instalador e aguarde a entrada do usuário.

;UIMODE="Normal"

; Setup will not display any user interface. 
QUIET="True"

Como alternativa, você pode chamar SQLEXPRADV_x64_ENU.exe com o /? argumento para obter uma lista completa de parâmetros, bem como um exemplo autônomo na parte inferior para instalar sem usar um arquivo de configuração e apenas passando manualmente as opções necessárias. Seu exemplo especifica o setup.exe, então acho que o que foi dito acima requer a necessidade do diretório extra. É muito longo, então mantive isso fora da minha resposta. Eles também são documentados aqui , portanto, o arquivo pode ser criado manualmente . Observe que o link pode ter opções não disponíveis no Express.

Finalmente, com o instalador e os arquivos de configuração copiados para a máquina de destino e quaisquer modificações desejadas feitas no arquivo de configuração:

setup.exe /CONFIGURATIONFILE=c:\path\to\myConfigurationFile.ini /IAcceptSQLServerLicenseTerms /SAPWD="****************"

Notavelmente / IAcceptSQLServerLicenseTerms é importante, se você omiti-lo, ele dirá que deve ser especificado. É possível que você possa especificá-lo no seu .ini, mas eu não testei isso. *** estão no lugar da minha senha SA de teste. Se você não habilitar o modo misto ou adicionar PWs ao arquivo de configuração, essa parte pode não ser necessária.

Verificando o Express Edition

Encontrei então um script interessante para informar a versão do seu servidor (e edição) do SQL Server aqui no technet desde que eu não sabia como realmente verificar a minha edição após a instalação, dada a pergunta original é devido ao fato de aparecer a instalação da edição Standard em vez do Express. Eu admito, eu teria ficado muito surpreso se um instalador do Express do MS acabou instalando outra edição.

Esta parte, obviamente, não é necessária, mas o link está aqui .

Aqui está a saída que recebi no meu caso:

---------------------------------------------------------------------------------------------------------
--//Your current Microsoft SQL Server information:
---------------------------------------------------------------------------------------------------------
Product Version:          11.0.2100.60
Product Name:             SQL Server 2012
Product Level:            RTM 
Product Edition:          Express Edition (64-bit)
---------------------------------------------------------------------------------------------------------
Note, if you want to know information about CU, please read this KB below.
KB321185, <https://support.microsoft.com/en-us/kb/321185>
---------------------------------------------------------------------------------------------------------
Support Lifecycle stage: Mainstream Support Phase, however security/non-security updates are not available for
current 2012 baseline. Upgrade to SP2 for security/Non-security updates. For additional information refer to:
https://support.microsoft.com/en-us/lifecycle/search?sort=PN&alpha=SQL%20Server&Filter=FilterNO, and Q6, Q18
in the FAQ section of Support Lifecycle page at: https://support.microsoft.com/en-us/lifecycle#gp/lifePolicy
---------------------------------------------------------------------------------------------------------
Full information:
Microsoft SQL Server 2012 - 11.0.2100.60 (X64) 
    Feb 10 2012 19:39:15 
    Copyright (c) Microsoft Corporation
    Express Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)

---------------------------------------------------------------------------------------------------------
--//Recommended updates: 
--### RTM -> QFE or GDR
--### SP  -> QFE or GDR
--### QFE -> QFE
--### GDR -> GDR or QFE
---------------------------------------------------------------------------------------------------------
Install the latest service pack:              SP3, <https://support.microsoft.com/en-us/kb/3072779>

---------------------------------------------------------------------------------------------------------
###### QFE branch updates
---------------------------------------------------------------------------------------------------------
11.0.2376 (SQL Server 2012 RTM QFE) http://support.microsoft.com/en-us/kb/2716441
11.0.3513 (SQL Server 2012 SP1 QFE) https://support.microsoft.com/en-us/kb/3045317
11.0.5613 (SQL Server 2012 SP2 QFE) https://support.microsoft.com/en-us/kb/3045319
---------------------------------------------------------------------------------------------------------
###### GDR branch updates
---------------------------------------------------------------------------------------------------------
11.0.2218 (SQL Server 2012 RTM GDR) https://support.microsoft.com/en-us/kb/2716442
11.0.3153 (SQL Server 2012 SP1 GDR) http://support.microsoft.com/kb/2977326/en-us
11.0.3156 (SQL Server 2012 SP1 GDR) https://support.microsoft.com/en-us/kb/3045318
11.0.5343 (SQL Server 2012 SP2 GDR) https://support.microsoft.com/en-us/kb/3045321
---------------------------------------------------------------------------------------------------------
Note, if you don’t want to upgrade to latest service pack right now, we recommend you install the latest
Cumulative Update CU11 of SQL Server 2012 RTM.
Install the latest Cumulative Update (CU) of RTM: CU11, <https://support.microsoft.com/en-us/kb/2908007>


---------------------------------------------------------------------------------------------------------
--//You can upgrade to any of the following product(s):
---------------------------------------------------------------------------------------------------------
If you want to upgrade to higher edition, please intall service pack.


For additional information about supported version and edition upgrades refer to:
https://technet.microsoft.com/en-us/library/ms143393(v=sql.120).aspx
    
por 20.12.2015 / 03:56