Monday, 2 April 2012

MS SQL Server Installation Failure

Sometimes re-installing the Microsoft SQL Server failed. One of the many causes is due to remaining old instances of database or user.config file. One of the many solutions to solve the problem is to delete the 'user.config' file (XML configuration of SQL Server) from the specific path refereed in the error message such as:

C:\Users\kioumarss\AppData\Local\Microsoft_Corporation\LandingPage.exe_StrongName_ryspccglaxmt4nhllj5z3thycltsvyyx\10.0.0.0\user.config.xml


No comments:

SQL: Generate a range of numbers

SELECT ones.n + 10*tens.n + 100*hundreds.n + 1000*thousands.n FROM       (VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9)) ones(n),      (VALU...