Here goes the SQL Server 2008 un-installation screenshots.
Adding fuel to my passion on SQL Server
The default instance could be an installation of
SQL Server 2000,
SQL Server 2005,
SQL Server 2008, or
SQL Server 2008 R2.
Only one installation of SQL Server, regardless of version, can be the default instance at one time
Error
• Msg 170, Level 15, State 1, Server MS, Line 1
Line 1: Incorrect syntax near '-'.
The sqlsp.log file indicates:
Process Exit Code: (0)
Error running script: sp_vupgrade_replication (1)
Action CleanUpInstall:
Installation Failed.
Resolution:
1. Check if distribution database exist though the Replication is dropped
2. If so drop the distribution database
3. To drop the distribution database by over - restoring of some user database
4. Perform the patching / SQL SP again.
Error:
Error Number : 29537
Error Description : MSP Error: 29537 SQL Server Setup has encountered the following problem: [Microsoft][SQL Native Client][SQL Server]CREATE DATABASE failed.
Some file names listed could not be created. Check related errors.. To continue, correct the problem, and then run SQL Server Setup again.
CAUSE:
By default the setup creates the Temp_MS_AgentSigningCertificate_database Database on specified default database location,
If the location doesn't exist, it fails to create the database and the setup fails.
RESOLUTION:
1. In SSMS, go to Server Properties > Database Settings > Database Default Locations ,check default location for Data and Log .
2. Try to access locations specified at Data and Log, Make sure files are available there.
3. If any of the files missing from above location , we hit the above error.
4. In that case, change the path to point to reall location of mdf/ldf files .
5. Setup should now succeed.
1. Reference: a recently applied update, kb955706, failed to install