cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
sundeep
Level 2

Re: Conversion and Update Problem

hi i am Adding the below pic


I am adding the Redistributables in the installation shield 2013

dot net framework 4.5 full
and
Sql Server 2008 r2 express RTM


but sql server when run in setup the setup is runned and at last saying the The instaalation of microfot Sql Server 2008 r2 express rtm(x86 & x64 Wow) Apeers to have Failed.

can any one help me please.

the commnad line has following for sql :

/QS /ACTION=Install /FEATURES=SQL /INSTANCENAME=dbname /SECURITYMODE=SQL /SAPWD=dbPwd/SQLSVCACCOUNT="NT AUTHORITY\SYSTEM" /ADDCURRENTUSERASSQLADMIN /AGTSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE" /IACCEPTSQLSERVERLICENSETERMS
Labels (1)
0 Kudos
(1) Reply
hidenori
Level 17

You need to modify the condition of prerequisite to check whether your instance of SQL Server is installed correctly. The original built-in prerequisite is designed to work with the default instance named SQLEXPRESS.

Original:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\SQLEXPRESS\MSSQLServer\CurrentVersion

Change to:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\dbname\MSSQLServer\CurrentVersion
0 Kudos