I am trying to install SQL Server 2005 Service Pack 3 and it keeps failing. Comes back with the following:
Microsoft SQL Server 2005 - Update 'Service Pack 3 for SQL Server Database Services 2005 ENU (KB955706)' could not be installed. Error code 1603.
The detailed dump reveals the following:
MSI (s) (90:C8) [13:50:17:776]: Note: 1: 1729 MSI (s) (90:C8) [13:50:17:776]: Transforming table Error.
MSI (s) (90:C8) [13:50:17:776]: Note: 1: 2262 2: Error 3: -2147287038 MSI (s) (90:C8) [13:50:17:792]: Transforming table Error.
MSI (s) (90:C8) [13:50:17:792]: Transforming table Error.
MSI (s) (90:C8) [13:50:17:792]: Note: 1: 2262 2: Error 3: -2147287038 MSI (s) (90:C8) [13:50:17:792]: Transforming table Error.
MSI (s) (90:C8) [13:50:17:792]: Note: 1: 2262 2: Error 3: -2147287038 MSI (s) (90:C8) [13:50:17:792]: Transforming table Error.
MSI (s) (90:C8) [13:50:17:792]: Note: 1: 2262 2: Error 3: -2147287038 MSI (s) (90:C8) [13:50:17:792]: Transforming table Error.
MSI (s) (90:C8) [13:50:17:792]: Note: 1: 2262 2: Error 3: -2147287038 MSI (s) (90:C8) [13:50:17:807]: Transforming table Error.
MSI (s) (90:C8) [13:50:17:807]: Transforming table Error.
MSI (s) (90:C8) [13:50:17:807]: Note: 1: 2262 2: Error 3: -2147287038 MSI (s) (90:C8) [13:50:17:807]: Transforming table Error.
MSI (s) (90:C8) [13:50:17:807]: Note: 1: 2262 2: Error 3: -2147287038 MSI (s) (90:C8) [13:50:17:807]: Transforming table Error.
MSI (s) (90:C8) [13:50:17:807]: Note: 1: 2262 2: Error 3: -2147287038 MSI (s) (90:C8) [13:50:17:807]: Product: Microsoft SQL Server 2005 -- Configuration failed.
Does it mean anything to anybody?
Btw, this Q originally came from SO (936895)
This fixed it for me
http://www.sqlnewsgroups.net/group/microsoft.public.sqlserver.server/topic23830.aspx
Essentially:-
Remove the following registry subkeys that store SID settings:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.X\Setup\SQLGroup HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.X\Setup\AGTGroup HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.X\Setup\FTSGroup HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.X\Setup\ASGroup
This seems to be an issue when you have installed a named instance in a location other than the default - possibly in a folder named "MSSQLServer".
You might be able to move the instance to another location and complete the installation.
"MSSQLServer" is the default service name of the Database Services component.
This doesn't seem directly related, but may be worth a shot:
From MS KB 925336:
It's the single most common problem I've had installing Service Packs on SQL Servers.
I just encountered this problem yesterday and found a different solution.
I was able to get SP3 to install by modifying just this single registry value:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.1\Setup
Resume
REG_DWORD and change its value from 1 to 0.Make sure permission on the Microsoft SQL Server folder contained the SQLServer2005MSSQLUser$ - whether user is missing in the permissions. Also Make sure that no other service or application is automatically starting SQL Server service(s) when they are not running. Then stop the SQL Server services and install SP3 by hand.
I ran into a similar issue for 2005 SP4 on a SCOM 2007 server. The Report Server would fail on upgrade with similar issues. In this case I shutdown all SQL services and SCOM services and it ran correctly.