Trouble Install SQL Server Express (2005). Stalled On Current Component Is Installing

Mar 21, 2007

Hi


I am installing Visual Studio 2005 Professional Edition. Everything goes well until the installation of SQL Server Express occurs. SQL Express installation progresses fine until very end of the installation. At that point it becomes stuck.

The installation says "Current component is installing" and is stuck on that message. The installer does not seem to be frozen as the picutres changes. However CPU usage for the setup processes is 0.

I have disabled all virus scanning software already.


Any help is apprceciated.

View 1 Replies


ADVERTISEMENT

Setup Failed To Install The Required Component Microsoft SQL Server 2005 Express (MSSMLBIZ)

Jul 4, 2007

I Don't understand what this means: Everytime I try and install the disc 2 of my Office Small Business 2007, it gives the same message. Help.




Microsoft SQL Server 2005 9.00.3042.00
==============================
OS Version : Home Edition (Build 6000)
Time : Tue Jul 03 17:14:45 2007

Machine : SWANNER-PC
Product : Microsoft SQL Server Setup Support Files (English)
Product Version : 9.00.3042.00
Install : Failed
Log File : c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0005_SWANNER-PC_SQLSupport_1.log
Error Number : 1618
--------------------------------------------------------------------------------
Machine : SWANNER-PC
Product : Microsoft SQL Server Native Client
Product Version : 9.00.3042.00
Install : Failed
Log File : c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0005_SWANNER-PC_SQLNCLI_1.log
Error Number : 1618
--------------------------------------------------------------------------------
Machine : SWANNER-PC
Product : Microsoft SQL Server VSS Writer
Product Version : 9.00.3042.00
Install : Failed
Log File : c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0005_SWANNER-PC_SqlWriter_1.log
Error Number : 1618
--------------------------------------------------------------------------------

SQL Server Setup failed. For more information, review the Setup log file in %ProgramFiles%Microsoft SQL Server90Setup BootstrapLOGSummary.txt.


Time : Tue Jul 03 17:15:12 2007


List of log files:
c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0005_SWANNER-PC_Core(Patched).log
c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0005_SWANNER-PC_SQLSupport_1.log
c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0005_SWANNER-PC_SQLNCLI_1.log
c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0005_SWANNER-PC_SqlWriter_1.log
c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0005_SWANNER-PC_Datastore.xml
c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0005_SWANNER-PC_.NET Framework 2.0.log
c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0005_SWANNER-PC_Support.log
c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0005_SWANNER-PC_Core.log
c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGSummary.txt
c:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0005_SWANNER-PC_SCC.log

View 38 Replies View Related

Installing SQL Server 2005 Express Via Command Prompt (silent / Basic GUI Install)

Feb 20, 2008

Hi,

I would be very grateful if someone could take a look at my command line install and offer advice on if I am doing it correctly.

The reason I am asking is because I cannot seem to get the server installed without having errors during the installation:
"The SQL Server (MSSQLSERVER) service terminated with service-specific error 17113 (0x42D9)"

Looking at the server error log indicates that master.mdf was not in the data directory (I have however specified a different data directory for ease of backup by our software and this is created during the install but does not have this database in the data directory - it is however in the template data directory!

I also get this error when the SQL Server service is started:
"The SQL Server (SQLEXPRESS) service terminated with service-specific error 3417 (0xD59)."


All advice is welcome. Please see below my batch file. Also, if you think I should do this in a different way then please let me know. I basically want to install SQL server on a customer computer and automate the install so the custoemr does not need to enter any information.

The goal of this install is:
[1] Deply a custom .Net application and SQL server at the same time on the same computer without user input.
[2] Allow remote .Net applications (designed by myself also) to connect over a LAN (and later maybe over a WAN) to the database to the above database.

The command line is this (I have also included the batch file I am usign below). For ease of reading I have put the parameters on a new line below:

setup.exe /qb
username="CustomerUsername"
companyname="OurCompany"
addlocal="SQL_Engine,SQL_Data_Files,SQL_Replication,Connectivity,SDK"
disablenetworkprotocols="0"
instancename="MSSQLSERVER"
INSTALLSQLDATADIR="c:SqlData"
USESYSDB="c:SqlData"
SAVESYSDB="1"
SQLAUTOSTART="1"
SECURITYMODE="SQL"
SAPWD="#StrongPaSSword#"



======= Batch file Start ======

SET MODE=/qb
SET SETUP_EXE=sqlfilessetup.exe %MODE%
SET SQLDATADIR=c:SqlData


SET SET_USERNAME=username="CustomerUsername"
SET SET_COMPANYNAME=companyname="OurCompany"
SET SET_ADDLOCAL=addlocal="SQL_Engine,SQL_Data_Files,SQL_Replication,Connectivity,SDK"
SET SET_DISABLENETWORKPROTOCOLS=disablenetworkprotocols="0"
SET SET_INSTANCENAME=instancename="MSSQLSERVER"

SET SET_INSTALLSQLDATADIR=INSTALLSQLDATADIR="%SQLDATADIR%"

SET SET_SAVESYSDB=SAVESYSDB="1"
SET SET_USESYSDB=USESYSDB="%SQLDATADIR%"

SET SET_SQLAUTOSTART=SQLAUTOSTART="1"
SET SET_SECURITYMODE=SECURITYMODE="SQL"

@REM === RE-INSTALL PARAMS - NOT CURRENTLY BEING USED?? SHOULD I ADD THESE ALSO? ===
SET SET_REINSTALLMODE=REINSTALLMODE="omus"
SET SET_REINSTALL=REINSTALL="SQL_Engine,SQL_Data_Files,SQL_Replication,Connectivity,SDK"
SET SET_REBUILDDATABASE=REBUILDDATABASE="1"

SET SET_SAPWD=SAPWD="#StrongPaSSword#"


@REM === START THE SETUP / RE-INSTALL ===

START %SETUP_EXE% %SET_USERNAME% %SET_COMPANYNAME% %SET_ADDLOCAL% %SET_DISABLENETWORKPROTOCOLS% %SET_INSTANCENAME% %SET_INSTALLSQLDATADIR% %SET_USESYSDB% %SET_SAVESYSDB% %SET_SQLAUTOSTART% %SET_SECURITYMODE% %SET_SAPWD%

======= Batch file End ======


Your advice is kindly welcome.

Thank you

Kind regards

Paul

View 2 Replies View Related

Problem While Installing SQL Server 2005 Express Edition On Windows 2000 PRO SP4...Can't Install!!!

Mar 14, 2007

Hi everyone...

I'm facing a problem while installing the SQL Server 2005 Express on Windows 2000 Pro with SP4.

After finishing the downloading from Microsoft I start the installation and things seems to go ok but during Extracting Files step a message appears "SQL Server Setup unexpectedly failed. For more information, review the setup summary log file in %Program Files%Microsoft SQL Server90Setup BootstrapLOGSummary.txt" and it terminates the installation.

I located the log file and open it but can't understand the problem..I copy the text and paste it here for anyone who can understand it.Please, it is very importand for me to work with SQL Server for my project. Any advice or information or anything else???

Thank you all,

HERE IS THE LOG FILE:

"Microsoft SQL Server 2005 Setup beginning at Wed Mar 14 07:45:33 2007
Process ID : 2684
c:c7720b32114815db82783dd06c2d54b9setup.exe Version: 2005.90.3042.0
Running: LoadResourcesAction at: 2007/2/14 7:45:33
Complete: LoadResourcesAction at: 2007/2/14 7:45:33, returned true
Running: ParseBootstrapOptionsAction at: 2007/2/14 7:45:33
Loaded DLL:c:c7720b32114815db82783dd06c2d54b9xmlrw.dll Version:2.0.3609.0
Complete: ParseBootstrapOptionsAction at: 2007/2/14 7:45:33, returned false
Error: Action "ParseBootstrapOptionsAction" failed during execution. Error information reported during run:
Could not parse command line due to datastore exception.
Source File Name: utillibpersisthelpers.cpp
Compiler Timestamp: Wed Jun 14 16:30:14 2006
Function Name: writeEncryptedString
Source Line Number: 124
----------------------------------------------------------
writeEncryptedString() failed
Source File Name: utillibpersisthelpers.cpp
Compiler Timestamp: Wed Jun 14 16:30:14 2006
Function Name: writeEncryptedString
Source Line Number: 123
----------------------------------------------------------
Error Code: 0x80070002 (2)
Windows Error Text: Error: Action "ActivateLoggingAction" threw an exception during execution. Error information reported during run:
Datastore exception while trying to write logging properties.
Source File Name: datastorecachedpropertycollection.cpp
Compiler Timestamp: Wed Jun 14 16:27:59 2006
Function Name: CachedPropertyCollection::findProperty
Source Line Number: 130
----------------------------------------------------------
Failed to find property "primaryLogFiles" {"SetupStateScope", "", ""} in cache
Source File Name: datastorepropertycollection.cpp
Compiler Timestamp: Wed Jun 14 16:28:01 2006
Function Name: SetupStateScope.primaryLogFiles
Source Line Number: 44
----------------------------------------------------------
No collector registered for scope: "SetupStateScope"
02B1CFC0Unable to proceed with setup, there was a command line parsing error. : 2
Error Code: 0x80070002 (2)
Windows Error Text:
Class not registered.
Failed to create CAB file due to datastore exception
Source File Name: datastorecachedpropertycollection.cpp
Compiler Timestamp: Wed Jun 14 16:27:59 2006
Function Name: CachedPropertyCollection::findProperty
Source Line Number: 130
----------------------------------------------------------
Failed to find property "HostSetup" {"SetupBootstrapOptionsScope", "", "2684"} in cache
Source File Name: datastorepropertycollection.cpp
Compiler Timestamp: Wed Jun 14 16:28:01 2006
Function Name: SetupBootstrapOptionsScope.HostSetup
Source Line Number: 44
----------------------------------------------------------
No collector registered for scope: "SetupBootstrapOptionsScope"
Message pump returning: 2"

View 4 Replies View Related

Trouble Installing Reporting Add-In For Microsoft Visual Web Developer 2005 Express

Jul 25, 2007

Hi Folks



I've downloaded & installed Visual Web developer Express and SQL Server Express and now I'm trying to install the Reporting Add-In available here: http://msdn.microsoft.com/vstudio/express/downloads/default.aspx



It downloads just fine and, just as the installation progress bar is almost done and the status text says 'Registering Product', I get the following error message:

"There is a problem with this windows installer package. A program run as part of the setup did not finish as expected. Contact your support personell or package vendor"



Running VWD shows the ReportViewer control now appears in the 'data' group. I can add it to a form, but I cannot create a new report, as clicking on 'Design a new report' under the ReportView Tasks popup menu does nothing.



Any ideas, please?



Thanks

Andrew

View 4 Replies View Related

Trouble Installing SQL Server Express As Part Of Click Once Deployment

Dec 20, 2006

Hello,

I've developed a desktop application for a company. It uses click once deployment and has a few prereqs: .NET Framework 2.0, j# .NET redistributable, windows installer 3.1 and SQL Server 2005 express edition.

Most of the time the application downloads and installs fine. However, one user has a problem. I'm fairly certain it's machine / OS related and I wonder if there is a way to get around it.

The user has a Windows 2000 machine, Pentium III, with 512 MB of RAM.

On their first try, they received an error while installing SQL Server 2005 Express. The error code the user found in the install log was 70095. Apparently the user found some information directing them to install the current MDAC 2.8 SP 1. After rebooting and trying the install again, it errored out. The new error code is 1706. Below is the install log.

As I said, I'm faily certain it's an OS issue, but I do hope there is a way around the issue other than trying to get the user to upgrade. If you need any other information, please let me know and I'll try to get it from the user.


Thanks,

AaronThe following properties have been set:
Property: [AdminUser] = true {boolean}
Property: [ProcessorArchitecture] = Intel {string}
Property: [VersionNT] = 5.0.4 {version}
Running checks for package '.NET Framework 2.0', phase BuildList
Running external check with command line "C:DOCUME~1craigpLOCALS~1TempVSD8.tmpDotNetFXdotnetchk.exe"
Process exited with code 1
Setting value '1 {int}' for property 'DotNetInstalled'
Reading value 'Version' of registry key 'HKLMSoftwareMicrosoftInternet Explorer'
Read string value '6.0.2800.1106'
Setting value '6.0.2800.1106 {string}' for property 'IEVersion'
The following properties have been set for package '.NET Framework 2.0':
Property: [DotNetInstalled] = 1 {int}
Property: [IEVersion] = 6.0.2800.1106 {string}
Running checks for command 'DotNetFXinstmsia.exe'
Result of running operator 'ValueExists' on property 'VersionNT': true
Result of checks for command 'DotNetFXinstmsia.exe' is 'Bypass'
Running checks for command 'DotNetFXWindowsInstaller-KB893803-v2-x86.exe'
Result of running operator 'ValueExists' on property 'Version9x': false
Result of running operator 'VersionLessThan' on property 'VersionNT' and value '5.0.3': false
Result of running operator 'VersionGreaterThanOrEqualTo' on property 'VersionMsi' and value '3.0': true
Result of checks for command 'DotNetFXWindowsInstaller-KB893803-v2-x86.exe' is 'Bypass'
Running checks for command 'DotNetFXdotnetfx.exe'
Result of running operator 'ValueNotEqualTo' on property 'DotNetInstalled' and value '0': true
Result of checks for command 'DotNetFXdotnetfx.exe' is 'Bypass'
'.NET Framework 2.0' RunCheck result: No Install Needed
Running checks for package 'Microsoft Visual J# .NET Redistributable Package 2.0', phase BuildList
Running external check with command line "C:DOCUME~1craigpLOCALS~1TempVSD8.tmpVJSharpRDPvjsrdpchk.exe"
Process exited with code 1
Setting value '1 {int}' for property 'VJSRDPInstalled'
Running external check with command line "C:DOCUME~1craigpLOCALS~1TempVSD8.tmpVJSharpRDPdotnetchk.exe"
Process exited with code 1
Setting value '1 {int}' for property 'DotNetInstalled'
The following properties have been set for package 'Microsoft Visual J# .NET Redistributable Package 2.0':
Property: [DotNetInstalled] = 1 {int}
Property: [VJSRDPInstalled] = 1 {int}
Running checks for command 'VJSharpRDPvjredist.exe'
Result of running operator 'ValueNotEqualTo' on property 'VJSRDPInstalled' and value '0': true
Result of checks for command 'VJSharpRDPvjredist.exe' is 'Bypass'
'Microsoft Visual J# .NET Redistributable Package 2.0' RunCheck result: No Install Needed
Running checks for package 'Windows Installer 3.1', phase BuildList
The following properties have been set for package 'Windows Installer 3.1':
Running checks for command 'WindowsInstaller3_1WindowsInstaller-KB893803-v2-x86.exe'
Result of running operator 'VersionGreaterThanOrEqualTo' on property 'VersionMsi' and value '3.1': true
Result of checks for command 'WindowsInstaller3_1WindowsInstaller-KB893803-v2-x86.exe' is 'Bypass'
'Windows Installer 3.1' RunCheck result: No Install Needed
Running checks for package 'SQL Server 2005 Express Edition', phase BuildList
Running external check with command line "C:DOCUME~1craigpLOCALS~1TempVSD8.tmpSqlExpressSqlExpressChk.exe"
Process exited with code 1
Setting value '1 {int}' for property 'SQLExpressInstalled'
The following properties have been set for package 'SQL Server 2005 Express Edition':
Property: [SQLExpressInstalled] = 1 {int}
Running checks for command 'SqlExpresssqlexpr32.exe'
Result of running operator 'ValueEqualTo' on property 'SQLExpressInstalled' and value '0': false
Result of running operator 'VersionGreaterThanOrEqualTo' on property 'VersionNT' and value '5.1': false
Result of running operator 'ValueEqualTo' on property 'AdminUser' and value 'false': false
Result of running operator 'ValueExists' on property 'Version9x': false
Result of running operator 'VersionLessThan' on property 'VersionNT' and value '5.0.4': false
Result of running operator 'ValueNotEqualTo' on property 'ProcessorArchitecture' and value 'Intel': false
Result of checks for command 'SqlExpresssqlexpr32.exe' is 'Install'
Running checks for command 'SqlExpresssqlexpr32.exe'
Result of running operator 'ValueEqualTo' on property 'SQLExpressInstalled' and value '0': false
Result of running operator 'VersionLessThan' on property 'VersionNT' and value '5.1': true
Result of checks for command 'SqlExpresssqlexpr32.exe' is 'Bypass'
'SQL Server 2005 Express Edition' RunCheck result: Install Needed
EULA for components 'SQL Server 2005 Express Edition' was accepted.
Copying files to temporary directory "C:DOCUME~1craigpLOCALS~1TempVSD8.tmp"
Downloading files to "C:DOCUME~1craigpLOCALS~1TempVSD8.tmp"
(12/14/2006 11:16:32 PM) Downloading 'SqlExpresssqlexpr32.exe' from 'http://go.microsoft.com/fwlink/?LinkId=37280&clcid=0x409' to 'C:DOCUME~1craigpLOCALS~1TempVSD8.tmp'
Download completed at 12/14/2006 11:17:02 PM
Verifying file integrity of C:DOCUME~1craigpLOCALS~1TempVSD8.tmpSqlExpresssqlexpr32.exe
WinVerifyTrust returned 0
File trusted
Running checks for package 'SQL Server 2005 Express Edition', phase BeforePackage
Running external check with command line "C:DOCUME~1craigpLOCALS~1TempVSD8.tmpSqlExpressSqlExpressChk.exe"
Process exited with code 1
Setting value '1 {int}' for property 'SQLExpressInstalled'
The following properties have been set for package 'SQL Server 2005 Express Edition':
Property: [SQLExpressInstalled] = 1 {int}
Running checks for command 'SqlExpresssqlexpr32.exe'
Result of running operator 'ValueEqualTo' on property 'SQLExpressInstalled' and value '0': false
Result of running operator 'VersionGreaterThanOrEqualTo' on property 'VersionNT' and value '5.1': false
Result of running operator 'ValueEqualTo' on property 'AdminUser' and value 'false': false
Result of running operator 'ValueExists' on property 'Version9x': false
Result of running operator 'VersionLessThan' on property 'VersionNT' and value '5.0.4': false
Result of running operator 'ValueNotEqualTo' on property 'ProcessorArchitecture' and value 'Intel': false
Result of checks for command 'SqlExpresssqlexpr32.exe' is 'Install'
'SQL Server 2005 Express Edition' RunCheck result: Install Needed
Verifying file integrity of C:DOCUME~1craigpLOCALS~1TempVSD8.tmpSqlExpresssqlexpr32.exe
WinVerifyTrust returned 0
File trusted
Installing using command line '"C:DOCUME~1craigpLOCALS~1TempVSD8.tmpSqlExpresssqlexpr32.exe" -q /norebootchk /qn reboot=ReallySuppress addlocal=all instancename=SQLEXPRESS SQLAUTOSTART=1'
Process exited with code 1706
Status of package 'SQL Server 2005 Express Edition' after install is 'InstallFailed'


View 5 Replies View Related

TROUBLE INSTALLING SQL SERVER 2005

Aug 11, 2007

Hello,

I am trying to install SQL Server 2005. I just installed Microsoft Visual Studio 2005(.NET). I got an option in my Start -> Programs for Microsoft SQL Server 2005. But I don't see how to bring up the query analyzer. It just has options for Configuration Tools ->SQL Server Configuration Manager,SQL Server Error and Usage Reporting, SQL Server Surface Area Configuration.

Did I install it wrong by chance? Do I need to do something else now? Do I need to configure it? If yes, how do I do that? Could anyone lead me in the right direction please? Thanks!

I have no idea how to proceed since I've never installed this before.
Could anyone please help me install or do whatever needs to be done to it so I can bring up the query analyzer/user interface and be able to use SQL?

Thanks,
Looking forward to hearing from you.

View 3 Replies View Related

Having Trouble Installing SQl Server 2005

Mar 20, 2007

I am having trouble installing SQL Server 2005 on a new machine at a hosted company. I am only installing the minimum, SQL Databaes Services. It errors out at the end and says see log. I have installed SQl 2005 10 times with no problem at other locations. The service won't even start it says error 3 path unkown. If I look for the path it shows in the service it hasn't been created, the files and directories were not created at that directory location. I tried to install bot as a Domain Admin and Local Admin accounts.

Here THe summary Log., Core(local) and Core Log files below.


Microsoft SQL Server 2005 9.00.1399.06
==============================
OS Version : Microsoft Windows Server 2003 family, Standard Edition Service Pack 1 (Build 3790)
Time : Tue Mar 20 02:48:40 2007

Machine : CATCSAP021211
Product : Microsoft SQL Server Setup Support Files (English)
Product Version : 9.00.1399.06
Install : Successful
Log File : C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_SQLSupport_1.log
--------------------------------------------------------------------------------
Machine : CATCSAP021211
Product : Microsoft SQL Server Native Client
Product Version : 9.00.1399.06
Install : Successful
Log File : C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_SQLNCLI_1.log
--------------------------------------------------------------------------------
Machine : CATCSAP021211
Product : Microsoft Office 2003 Web Components
Product Version : 11.0.6558.0
Install : Successful
Log File : C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_OWC11_1.log
--------------------------------------------------------------------------------
Machine : CATCSAP021211
Product : Microsoft SQL Server VSS Writer
Product Version : 9.00.1399.06
Install : Successful
Log File : C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_SqlWriter_1.log
--------------------------------------------------------------------------------
Machine : CATCSAP021211
Product : Microsoft SQL Server 2005 Backward compatibility
Product Version : 8.05.1054
Install : Successful
Log File : C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_BackwardsCompat_1.log
--------------------------------------------------------------------------------

SQL Server Setup failed. For more information, review the Setup log file in %ProgramFiles%Microsoft SQL Server90Setup BootstrapLOGSummary.txt.


Time : Tue Mar 20 02:50:13 2007


List of log files:
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_Core(Local).log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_SQLSupport_1.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_SQLNCLI_1.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_OWC11_1.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_SqlWriter_1.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_BackwardsCompat_1.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_MSXML6_1.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_Datastore.xml
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_.NET Framework 2.0.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_Core.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGSummary.txt
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_.NET Framework 2.0 LangPack.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_.NET Framework Upgrade Advisor.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_.NET Framework Upgrade Advisor LangPack.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_.NET Framework Windows Installer.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_.NET Framework Windows Installer LangPack.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_Support.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_SCC.log
C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0016_CATCSAP021211_WI.log


Core(local)

Microsoft SQL Server 2005 Setup beginning at Mon Mar 19 19:49:04 2007
Process ID : 1300
C:Program FilesMicrosoft SQL Server90Setup Bootstrapsetup.exe Version: 2005.90.1399.0
Running: LoadResourcesAction at: 2007/2/19 19:49:4
Complete: LoadResourcesAction at: 2007/2/19 19:49:4, returned true
Running: ParseBootstrapOptionsAction at: 2007/2/19 19:49:4
Loaded DLL:C:Program FilesMicrosoft SQL Server90Setup Bootstrapxmlrw.dll Version:2.0.3604.0
Complete: ParseBootstrapOptionsAction at: 2007/2/19 19:49:4, returned true
Running: ValidateWinNTAction at: 2007/2/19 19:49:4
Complete: ValidateWinNTAction at: 2007/2/19 19:49:4, returned true
Running: ValidateMinOSAction at: 2007/2/19 19:49:4
Complete: ValidateMinOSAction at: 2007/2/19 19:49:4, returned true
Running: PerformSCCAction at: 2007/2/19 19:49:4
Complete: PerformSCCAction at: 2007/2/19 19:49:4, returned true
Running: ActivateLoggingAction at: 2007/2/19 19:49:4
Complete: ActivateLoggingAction at: 2007/2/19 19:49:4, returned true
Running: DetectPatchedBootstrapAction at: 2007/2/19 19:49:4
Complete: DetectPatchedBootstrapAction at: 2007/2/19 19:49:4, returned true
Action "LaunchPatchedBootstrapAction" will be skipped due to the following restrictions:
Condition "EventCondition: __STP_LaunchPatchedBootstrap__1300" returned false.
Action "BeginBootstrapLogicStage" will be skipped due to the following restrictions:
Condition "Setup is running locally." returned true.
Running: PerformDotNetCheck2 at: 2007/2/19 19:49:4
Complete: PerformDotNetCheck2 at: 2007/2/19 19:49:4, returned true
Running: InvokeSqlSetupDllAction at: 2007/2/19 19:49:4
Loaded DLL:C:Program FilesMicrosoft SQL Server90Setup Bootstrapsqlspars.dll Version:2005.90.1399.0
<Func Name='DwLaunchMsiExec'>
Examining 'sqlspars' globals to initialize 'SetupStateScope'
Opening 'MachineConfigScope' for [CATCSAP021211]
Trying to find Product Code from command line or passed transform
If possible, determine install id and type
Trying to find Instance Name from command line.
No Instance Name provided on the command line
If possible, determine action
Machine = CATCSAP021211, Article = WMIServiceWin32OSWorking, Result = 0 (0x0)
Machine = CATCSAP021211, Article = WMIServiceWin32CompSystemWorking, Result = 0 (0x0)
Machine = CATCSAP021211, Article = WMIServiceWin32ProcessorWorking, Result = 0 (0x0)
Machine = CATCSAP021211, Article = WMIServiceReadRegWorking, Result = 0 (0x0)
Machine = CATCSAP021211, Article = WMIServiceWin32DirectoryWorking, Result = 0 (0x0)
Machine = CATCSAP021211, Article = WMIServiceCIMDataWorking, Result = 0 (0x0)
Machine = CATCSAP021211, Article = XMLDomDocument, Result = 0 (0x0)
Machine = CATCSAP021211, Article = Processor, Result = 0 (0x0)
Machine = CATCSAP021211, Article = PhysicalMemory, Result = 0 (0x0)
Machine = CATCSAP021211, Article = DiskFreeSpace, Result = 0 (0x0)
Machine = CATCSAP021211, Article = OSVersion, Result = 0 (0x0)
Machine = CATCSAP021211, Article = OSServicePack, Result = 0 (0x0)
Machine = CATCSAP021211, Article = OSType, Result = 0 (0x0)
Machine = CATCSAP021211, Article = iisDep, Result = 0 (0x0)
Machine = CATCSAP021211, Article = AdminShare, Result = 0 (0x0)
Machine = CATCSAP021211, Article = PendingReboot, Result = 0 (0x0)
Machine = CATCSAP021211, Article = PerfMon, Result = 0 (0x0)
Machine = CATCSAP021211, Article = IEVersion, Result = 0 (0x0)
Machine = CATCSAP021211, Article = DriveWriteAccess, Result = 0 (0x0)
Machine = CATCSAP021211, Article = COMPlus, Result = 0 (0x0)
Machine = CATCSAP021211, Article = ASPNETVersionRegistration, Result = 0 (0x0)
Machine = CATCSAP021211, Article = MDAC25Version, Result = 0 (0x0)
*******************************************
Setup Consistency Check Report for Machine: CATCSAP021211
*******************************************
Article: WMI Service Requirement, Result: CheckPassed
Article: MSXML Requirement, Result: CheckPassed
Article: Operating System Minimum Level Requirement, Result: CheckPassed
Article: Operating System Service Pack Level Requirement, Result: CheckPassed
Article: SQL Compatibility With Operating System, Result: CheckPassed
Article: Minimum Hardware Requirement, Result: CheckPassed
Article: IIS Feature Requirement, Result: CheckPassed
Article: Pending Reboot Requirement, Result: CheckPassed
Article: Performance Monitor Counter Requirement, Result: CheckPassed
Article: Default Installation Path Permission Requirement, Result: CheckPassed
Article: Internet Explorer Requirement, Result: CheckPassed
Article: Check COM+ Catalogue, Result: CheckPassed
Article: ASP.Net Registration Requirement, Result: CheckPassed
Article: Minimum MDAC Version Requirement, Result: CheckPassed
<Func Name='PerformDetections'>
0
<EndFunc Name='PerformDetections' Return='0' GetLastError='0'>
<Func Name='DisplaySCCWizard'>
CSetupBootstrapWizard returned 1
<EndFunc Name='DisplaySCCWizard' Return='0' GetLastError='183'>
Loaded DLL:C:Program FilesMicrosoft SQL Server90Setup Bootstrapsqlsval.dll Version:2005.90.1399.0
<EndFunc Name='DwLaunchMsiExec' Return='0' GetLastError='0'>
Complete: InvokeSqlSetupDllAction at: 2007/2/19 19:51:1, returned true
Running: SetPackageInstallStateAction at: 2007/2/19 19:51:1
Complete: SetPackageInstallStateAction at: 2007/2/19 19:51:1, returned true
Running: DeterminePackageTransformsAction at: 2007/2/19 19:51:1
Complete: DeterminePackageTransformsAction at: 2007/2/19 19:51:3, returned true
Running: ValidateSetupPropertiesAction at: 2007/2/19 19:51:3
Complete: ValidateSetupPropertiesAction at: 2007/2/19 19:51:3, returned true
Running: OpenPipeAction at: 2007/2/19 19:51:3
Complete: OpenPipeAction at: 2007/2/19 19:51:3, returned false
Error: Action "OpenPipeAction" failed during execution.
Running: CreatePipeAction at: 2007/2/19 19:51:3
Complete: CreatePipeAction at: 2007/2/19 19:51:3, returned false
Error: Action "CreatePipeAction" failed during execution.
Action "RunRemoteSetupAction" will be skipped due to the following restrictions:
Condition "Action: CreatePipeAction has finished and passed." returned false.
Running: PopulateMutatorDbAction at: 2007/2/19 19:51:3
Complete: PopulateMutatorDbAction at: 2007/2/19 19:51:3, returned true
Running: GenerateRequestsAction at: 2007/2/19 19:51:3
SQL_Engine = 3
SQL_Data_Files = 3
SQL_Replication = 3
SQL_FullText = 3
SQL_SharedTools = 3
SQL_BC_DEP = 3
Analysis_Server = -1
AnalysisDataFiles = -1
AnalysisSharedTools = -1
RS_Server = -1
RS_Web_Interface = -1
RS_SharedTools = -1
Notification_Services = -1
NS_Engine = -1
NS_Client = -1
SQL_DTS = -1
Client_Components = 3
Connectivity = 3
SQL_Tools90 = 3
SQL_WarehouseDevWorkbench = 3
SDK = 3
SQLXML = 3
Tools_Legacy = 3
TOOLS_BC_DEP = 3
SQL_Documentation = 3
SQL_BooksOnline = 3
SQL_DatabaseSamples = -1
SQL_AdventureWorksSamples = -1
SQL_AdventureWorksDWSamples = -1
SQL_AdventureWorksASSamples = -1
SQL_Samples = -1
Complete: GenerateRequestsAction at: 2007/2/19 19:51:4, returned true
Running: CreateProgressWindowAction at: 2007/2/19 19:51:4
Complete: CreateProgressWindowAction at: 2007/2/19 19:51:4, returned true
Running: ScheduleActionAction at: 2007/2/19 19:51:4
Complete: ScheduleActionAction at: 2007/2/19 19:51:4, returned true
Skipped: InstallASAction.11
Skipped: Action "InstallASAction.11" was not run. Information reported during analysis:
No install request found for package: "sqlsupport", referred by package: "as", install will be skipped as a result.
Skipped: InstallASAction.18
Skipped: Action "InstallASAction.18" was not run. Information reported during analysis:
No install request found for package: "owc11", referred by package: "as", install will be skipped as a result.
Skipped: InstallASAction.22
Skipped: Action "InstallASAction.22" was not run. Information reported during analysis:
No install request found for package: "bcRedist", referred by package: "as", install will be skipped as a result.
Skipped: InstallASAction.9
Skipped: Action "InstallASAction.9" was not run. Information reported during analysis:
No install request found for package: "msxml6", referred by package: "as", install will be skipped as a result.
Skipped: InstallDTSAction
Skipped: Action "InstallDTSAction" was not run. Information reported during analysis:
No install request found for package: "dts", install will be skipped as a result.
Skipped: InstallDTSAction.11
Skipped: Action "InstallDTSAction.11" was not run. Information reported during analysis:
No install request found for package: "sqlsupport", referred by package: "dts", install will be skipped as a result.
Skipped: InstallDTSAction.12
Skipped: Action "InstallDTSAction.12" was not run. Information reported during analysis:
No install request found for package: "sqlncli", referred by package: "dts", install will be skipped as a result.
Skipped: InstallDTSAction.18
Skipped: Action "InstallDTSAction.18" was not run. Information reported during analysis:
No install request found for package: "owc11", referred by package: "dts", install will be skipped as a result.
Skipped: InstallDTSAction.22
Skipped: Action "InstallDTSAction.22" was not run. Information reported during analysis:
No install request found for package: "bcRedist", referred by package: "dts", install will be skipped as a result.
Skipped: InstallDTSAction.9
Skipped: Action "InstallDTSAction.9" was not run. Information reported during analysis:
No install request found for package: "msxml6", referred by package: "dts", install will be skipped as a result.
Skipped: InstallNSAction
Skipped: Action "InstallNSAction" was not run. Information reported during analysis:
No install request found for package: "ns", install will be skipped as a result.
Skipped: InstallNSAction.11
Skipped: Action "InstallNSAction.11" was not run. Information reported during analysis:
No install request found for package: "sqlsupport", referred by package: "ns", install will be skipped as a result.
Skipped: InstallNSAction.12
Skipped: Action "InstallNSAction.12" was not run. Information reported during analysis:
No install request found for package: "sqlncli", referred by package: "ns", install will be skipped as a result.
Skipped: InstallNSAction.18
Skipped: Action "InstallNSAction.18" was not run. Information reported during analysis:
No install request found for package: "owc11", referred by package: "ns", install will be skipped as a result.
Skipped: InstallNSAction.22
Skipped: Action "InstallNSAction.22" was not run. Information reported during analysis:
No install request found for package: "bcRedist", referred by package: "ns", install will be skipped as a result.
Skipped: InstallNSAction.9
Skipped: Action "InstallNSAction.9" was not run. Information reported during analysis:
No install request found for package: "msxml6", referred by package: "ns", install will be skipped as a result.
Skipped: InstallRSAction.11
Skipped: Action "InstallRSAction.11" was not run. Information reported during analysis:
No install request found for package: "sqlsupport", referred by package: "rs", install will be skipped as a result.
Skipped: InstallRSAction.18
Skipped: Action "InstallRSAction.18" was not run. Information reported during analysis:
No install request found for package: "owc11", referred by package: "rs", install will be skipped as a result.
Skipped: InstallRSAction.22
Skipped: Action "InstallRSAction.22" was not run. Information reported during analysis:
No install request found for package: "bcRedist", referred by package: "rs", install will be skipped as a result.
Running: InstallSqlAction.11 at: 2007/2/19 19:51:4
Installing: sqlsupport on target: CATCSAP021211
Complete: InstallSqlAction.11 at: 2007/2/19 19:51:5, returned true
Running: InstallSqlAction.12 at: 2007/2/19 19:51:5
Installing: sqlncli on target: CATCSAP021211
Complete: InstallSqlAction.12 at: 2007/2/19 19:51:6, returned true
Running: InstallSqlAction.18 at: 2007/2/19 19:51:6
Installing: owc11 on target: CATCSAP021211
Complete: InstallSqlAction.18 at: 2007/2/19 19:51:13, returned true
Running: InstallSqlAction.21 at: 2007/2/19 19:51:13
Installing: sqlwriter on target: CATCSAP021211
Complete: InstallSqlAction.21 at: 2007/2/19 19:51:18, returned true
Running: InstallSqlAction.22 at: 2007/2/19 19:51:18
Installing: bcRedist on target: CATCSAP021211
Complete: InstallSqlAction.22 at: 2007/2/19 19:51:28, returned true
Running: InstallSqlAction.9 at: 2007/2/19 19:51:28
Installing: msxml6 on target: CATCSAP021211
Error: MsiOpenDatabase failed with 110
Failed to install package
The installation source for this product is not available. Verify that the source exists and that you can access it.
Error: MsiOpenDatabase failed with 110 for MSI {5A710547-B58E-488B-828D-CA9A25A0533C}
Setting package return code to: 1612
Complete: InstallSqlAction.9 at: 2007/2/19 19:51:28, returned false
Error: Action "InstallSqlAction.9" failed during execution. Error information reported during run:
Target collection includes the local machine.
Invoking installPackage() on local machine.
Running: InstallToolsAction.11 at: 2007/2/19 19:51:28
Installing: sqlsupport on target: CATCSAP021211
Complete: InstallToolsAction.11 at: 2007/2/19 19:51:33, returned true
Running: InstallToolsAction.12 at: 2007/2/19 19:51:33
Installing: sqlncli on target: CATCSAP021211
Complete: InstallToolsAction.12 at: 2007/2/19 19:51:34, returned true
Running: InstallToolsAction.13 at: 2007/2/19 19:51:34
Installing: PPESku on target: CATCSAP021211
Complete: InstallToolsAction.13 at: 2007/2/19 19:53:48, returned true
Running: InstallToolsAction.18 at: 2007/2/19 19:53:48
Installing: owc11 on target: CATCSAP021211
Complete: InstallToolsAction.18 at: 2007/2/19 19:53:51, returned true
Running: InstallToolsAction.20 at: 2007/2/19 19:53:51
Installing: BOL on target: CATCSAP021211
Complete: InstallToolsAction.20 at: 2007/2/19 19:55:37, returned true
Running: InstallToolsAction.22 at: 2007/2/19 19:55:37
Installing: bcRedist on target: CATCSAP021211
Complete: InstallToolsAction.22 at: 2007/2/19 19:55:40, returned true
Error: Action "InstallToolsAction.9" failed during execution. Error information reported during run:
Action: "InstallToolsAction.9" will be marked as failed due to the following condition:
Condition "Package "9" either passed when it was last installed, or it has not been executed yet" returned false. Condition context:
Prereq package will be failed due to the previous installation attempt returning: 1612
Installation of package: "msxml6" failed due to a precondition.
Action "InstallSqlAction" will return false due to the following preconditions:
Condition "Action: InstallSqlAction.9 has finished and failed." returned true.
Installation of package: "sql" failed due to a precondition.
Step "InstallSqlAction" was not able to run.
Skipped: InstallNSAction.10
Skipped: Action "InstallNSAction.10" was not run. Information reported during analysis:
No install request found for package: "sqlxml4", referred by package: "ns", install will be skipped as a result.
Running: InstallToolsAction.10 at: 2007/2/19 19:55:40
Installing: sqlxml4 on target: CATCSAP021211
Complete: InstallToolsAction.10 at: 2007/2/19 19:55:44, returned true
Skipped: RepairForBackwardsCompatRedistAction
Skipped: Action "RepairForBackwardsCompatRedistAction" was not run. Information reported during analysis:
Action: "RepairForBackwardsCompatRedistAction" will be skipped due to the following condition:
Condition "sql was successfully upgraded." returned false. Condition context:
sql failed to upgrade and so the uninstall of the upgraded product will not occur.
Error: Action "UninstallForMSDE2000Action" failed during execution. Error information reported during run:
Action: "UninstallForMSDE2000Action" will be marked as failed due to the following condition:
Condition "sql was successfully upgraded." returned false. Condition context:
sql failed to upgrade and so the uninstall of the upgraded product will not occur.
Installation of package: "patchMSDE2000" failed due to a precondition.
Error: Action "UninstallForSQLAction" failed during execution. Error information reported during run:
Action: "UninstallForSQLAction" will be marked as failed due to the following condition:
Condition "sql was successfully upgraded." returned false. Condition context:
sql failed to upgrade and so the uninstall of the upgraded product will not occur.
Installation of package: "patchLibertySql" failed due to a precondition.
Action "InstallToolsAction" will return false due to the following preconditions:
Condition "Action: InstallToolsAction.9 has finished and failed." returned true.
Installation of package: "tools" failed due to a precondition.
Step "InstallToolsAction" was not able to run.
Skipped: InstallASAction
Skipped: Action "InstallASAction" was not run. Information reported during analysis:
No install request found for package: "as", install will be skipped as a result.
Skipped: InstallRSAction
Skipped: Action "InstallRSAction" was not run. Information reported during analysis:
No install request found for package: "rs", install will be skipped as a result.
Skipped: UninstallForRS2000Action
Skipped: Action "UninstallForRS2000Action" was not run. Information reported during analysis:
Action: "UninstallForRS2000Action" will be skipped due to the following condition:
Condition "Action: InstallRSAction was skipped." returned true.
Running: ReportChainingResults at: 2007/2/19 19:55:44
Error: Action "ReportChainingResults" threw an exception during execution.
One or more packages failed to install. Refer to logs for error details. : 1612
Error Code: 0x8007064c (1612)
Windows Error Text: The installation source for this product is not available. Verify that the source exists and that you can access it.

Source File Name: sqlchainingsqlchainingactions.cpp
Compiler Timestamp: Thu Sep 1 22:23:05 2005
Function Name: sqls::ReportChainingResults::perform
Source Line Number: 3097

---- Context -----------------------------------------------
sqls::HostSetupPackageInstallerSynch::postCommit
sqls::HighlyAvailablePackage::preInstall
sqls::HighlyAvailablePackage::manageVsResources
sqls::Host
Error: Failed to add file :"C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0012_CATCSAP021211_.NET Framework 2.0.log" to cab file : "C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGSqlSetup0012.cab" Error Code : 2
Error: Failed to add file :"C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0012_CATCSAP021211_.NET Framework 2.0 LangPack.log" to cab file : "C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGSqlSetup0012.cab" Error Code : 2
Error: Failed to add file :"C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0012_CATCSAP021211_.NET Framework Upgrade Advisor.log" to cab file : "C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGSqlSetup0012.cab" Error Code : 2
Error: Failed to add file :"C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0012_CATCSAP021211_.NET Framework Upgrade Advisor LangPack.log" to cab file : "C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGSqlSetup0012.cab" Error Code : 2
Error: Failed to add file :"C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0012_CATCSAP021211_.NET Framework Windows Installer.log" to cab file : "C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGSqlSetup0012.cab" Error Code : 2
Error: Failed to add file :"C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGFilesSQLSetup0012_CATCSAP021211_.NET Framework Windows Installer LangPack.log" to cab file : "C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGSqlSetup0012.cab" Error Code : 2
Running: UploadDrWatsonLogAction at: 2007/2/19 19:56:20
Message pump returning: 1612


Core.log

Microsoft SQL Server 2005 Setup beginning at Mon Mar 19 19:48:44 2007
Process ID : 1864
\Catcsdc021209SQLDISC1setup.exe Version: 2005.90.1399.0
Running: LoadResourcesAction at: 2007/2/19 19:48:44
Complete: LoadResourcesAction at: 2007/2/19 19:48:44, returned true
Running: ParseBootstrapOptionsAction at: 2007/2/19 19:48:44
Loaded DLL:\Catcsdc021209SQLDISC1xmlrw.dll Version:2.0.3604.0
Complete: ParseBootstrapOptionsAction at: 2007/2/19 19:48:44, returned true
Running: ValidateWinNTAction at: 2007/2/19 19:48:44
Complete: ValidateWinNTAction at: 2007/2/19 19:48:44, returned true
Running: ValidateMinOSAction at: 2007/2/19 19:48:44
Complete: ValidateMinOSAction at: 2007/2/19 19:48:44, returned true
Running: PerformSCCAction at: 2007/2/19 19:48:44
Complete: PerformSCCAction at: 2007/2/19 19:48:44, returned true
Running: ActivateLoggingAction at: 2007/2/19 19:48:44
Complete: ActivateLoggingAction at: 2007/2/19 19:48:44, returned true
Delay load of action "DetectPatchedBootstrapAction" returned nothing. No action will occur as a result.
Action "LaunchPatchedBootstrapAction" will be skipped due to the following restrictions:
Condition "EventCondition: __STP_LaunchPatchedBootstrap__1864" returned false.
Running: PerformSCCAction2 at: 2007/2/19 19:48:44
Loaded DLL:C:WINDOWSsystem32msi.dll Version:3.1.4000.2435
Loaded DLL:C:WINDOWSsystem32msi.dll Version:3.1.4000.2435
Complete: PerformSCCAction2 at: 2007/2/19 19:48:44, returned true
Running: PerformDotNetCheck at: 2007/2/19 19:48:44
Complete: PerformDotNetCheck at: 2007/2/19 19:48:44, returned true
Running: ComponentUpdateAction at: 2007/2/19 19:48:44
Complete: ComponentUpdateAction at: 2007/2/19 19:49:3, returned true
Running: DetectLocalBootstrapAction at: 2007/2/19 19:49:3
Complete: DetectLocalBootstrapAction at: 2007/2/19 19:49:3, returned true
Running: LaunchLocalBootstrapAction at: 2007/2/19 19:49:3
Error: Action "LaunchLocalBootstrapAction" threw an exception during execution. Error information reported during run:
"C:Program FilesMicrosoft SQL Server90Setup Bootstrapsetup.exe" finished and returned: 1612
Aborting queue processing as nested installer has completed
Message pump returning: 1612


Thanks for any Help

Don

View 1 Replies View Related

Trouble Re-installing SQL Server 2005

Nov 28, 2007

I was having trouble with SQL server 2005 and reporting services. Finally I had to un-install and then re-install, had trouble with uninstalling initially. I couldn't use Add/Remove to remove Microsoft SQL Server 2005 until I found this command: "%ProgramFiles%Microsoft SQL Server90Setup BootstrapARPWrapper.exe" /Remove from http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=354408&SiteID=1

So I was able to remove (from what I know) all traces of SQL 2005 and its configuration tools. However when I reinstall it, I only have the configuration tools installed. Going to Start>>Microsoft SQL Server 2005 - configuration tools is all i have. Going to Add Remove Programs I can see Microsoft SQL Server 2005 along with Microsoft SQL Server Native Client.

When I use windows exploerer the only folders I see in c:Program FilesMicrosoft SQL Server are:
80, 90, InetPub, MSSQL.1, MSSQL.2, MSSQL.3

when I install SP2 everything but
PRODUCT INSTANCE
Database Services MSSQLSERVER

install correctly.

After that nothing changes.


My questions are; do I really have SQL Sever installed so that I can create and edit queries, reports, etc. And if I do how do I access it? It seems like something is left over telling the installer that I already have SQL already installed but not the configurations tools. So it just installs them.

View 8 Replies View Related

Having Trouble Installing SQL Server 2005 SP1

Mar 20, 2007

I'm Having problem installing SQL server 2005 SP1 on Windows 2003 server R2 SP2.

The log file talk about SQL server express but I have SQL server 2005.

03/19/2007 13:49:07.203 ================================================================================
03/19/2007 13:49:07.203 Hotfix package launched
03/19/2007 13:49:32.984 Attempting to install instance: SQL Server Native Client
03/19/2007 13:49:33.000 Attempting to install target: OMNIWEBPACS
03/19/2007 13:49:33.000 Attempting to install file: sqlncli.msi
03/19/2007 13:49:33.015 Attempting to install file: \OMNIWEBPACSd$c06cd32e1991973c97744b9c4HotFixSqlncliFilessqlncli.msi
03/19/2007 13:49:33.015 Creating MSI install log file at: C:WINDOWSHotfixRedist9LogsRedist9_Hotfix_KB913090_sqlncli.msi.log
03/19/2007 13:49:33.015 Successfully opened registry key: SoftwarePoliciesMicrosoftWindowsInstaller
03/19/2007 13:49:33.015 Failed to read registry key: Debug
03/19/2007 13:49:34.062 MSP returned 0: The action completed successfully.
03/19/2007 13:49:34.062 Successfully opened registry key: SoftwarePoliciesMicrosoftWindowsInstaller
03/19/2007 13:49:34.062 Failed to read registry key: Debug
03/19/2007 13:49:34.062 Successfully installed file: \OMNIWEBPACSd$c06cd32e1991973c97744b9c4HotFixSqlncliFilessqlncli.msi
03/19/2007 13:49:34.062 Successfully installed target: OMNIWEBPACS
03/19/2007 13:49:34.062 Successfully installed instance: SQL Server Native Client
03/19/2007 13:49:34.062
03/19/2007 13:49:34.062 Product Status Summary:
03/19/2007 13:49:34.062 Product: SQL Server Native Client
03/19/2007 13:49:34.062 SQL Server Native Client (RTM ) - Success
03/19/2007 13:49:34.062
03/19/2007 13:49:34.062 Product: Setup Support Files
03/19/2007 13:49:34.062 Setup Support Files (RTM ) - Not Applied
03/19/2007 13:49:34.062
03/19/2007 13:49:34.062 Product: Database Services
03/19/2007 13:49:34.062 Database Services (SP1 2047 ENU) - NA
03/19/2007 13:49:34.062 Details: Instances of SQL Server Express cannot be updated by using this Service Pack installer. To update instances of SQL Server Express, use the SQL Server Express Service Pack installer.
03/19/2007 13:49:34.062
03/19/2007 13:49:34.062 Product: Database Services
03/19/2007 13:49:34.062 Database Services (RTM 1399 ENU) - Not Applied
03/19/2007 13:49:34.062
03/19/2007 13:49:34.062 Product: Integration Services
03/19/2007 13:49:34.062 Integration Services (RTM 1399 ENU) - Not Applied
03/19/2007 13:49:34.062
03/19/2007 13:49:34.062 Product: Client Components
03/19/2007 13:49:34.062 Client Components (RTM 1399 ENU) - Not Applied
03/19/2007 13:49:34.062
03/19/2007 13:49:34.062 Product: MSXML 6.0 Parser
03/19/2007 13:49:34.062 MSXML 6.0 Parser (RTM ) - Not Applied
03/19/2007 13:49:34.062
03/19/2007 13:49:34.062 Product: SQLXML4
03/19/2007 13:49:34.062 SQLXML4 (RTM ) - Not Applied
03/19/2007 13:49:34.062
03/19/2007 13:49:34.062 Product: Backward Compatibility
03/19/2007 13:49:34.078 Backward Compatibility (RTM ) - Not Applied
03/19/2007 13:49:34.078
03/19/2007 13:49:34.078 Product: Microsoft SQL Server VSS Writer
03/19/2007 13:49:34.078 Microsoft SQL Server VSS Writer (RTM ) - Not Applied
03/19/2007 13:49:34.078

any Idea?

View 1 Replies View Related

Having Trouble Installing SQL Server 2005 SP2

Mar 15, 2007

I tried the hotfix listed in the "Unable to install SQl Server 2005 SP2 - Unexpected error" thread and it did not work. Something I'm running into that I haven't seen here is I cannot install or uninstall anything at all. I am getting a message that says I'm still in the process of installing something, please finish that first. I assume it is the install of SQL SP2.
Here is the log file:
03/09/2007 14:03:45.750 ================================================================================
03/09/2007 14:03:45.750 Hotfix package launched
03/09/2007 14:03:45.812 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:45.812 Registry: Read registry key value "CommonFilesDir", string value = C:Program FilesCommon Files
03/09/2007 14:03:45.843 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:45.875 Registry: Read registry key value "ProgramFilesDir", string value = C:Program Files
03/09/2007 14:03:45.890 Local Computer:
03/09/2007 14:03:45.921 Target Details: BVTBIQA
03/09/2007 14:03:45.953 commonfilesdir = C:Program FilesCommon Files
03/09/2007 14:03:45.984 lcidsupportdir = c:57a10d1e173eea2efd90865f301376381033
03/09/2007 14:03:46.000 programfilesdir = C:Program Files
03/09/2007 14:03:46.031 programfilesdir_wow = C:Program Files
03/09/2007 14:03:46.046 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:03:46.078 supportdirlocal = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:03:46.109 windir = C:WINDOWS
03/09/2007 14:03:46.125 winsysdir = C:WINDOWSsystem32
03/09/2007 14:03:46.156 winsysdir_wow = C:WINDOWSSysWOW64
03/09/2007 14:03:46.171
03/09/2007 14:03:46.218 Enumerating applicable products for this patch
03/09/2007 14:03:46.250 Found Redist 2005 product definition
03/09/2007 14:03:46.296 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:46.328 Registry: Read registry key value "CommonFilesDir", string value = C:Program FilesCommon Files
03/09/2007 14:03:46.359 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:46.375 Registry: Read registry key value "ProgramFilesDir", string value = C:Program Files
03/09/2007 14:03:46.640 Found Redist 2005 product definition
03/09/2007 14:03:46.671 Found Redist 2005 product definition
03/09/2007 14:03:46.703 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:46.734 Registry: Read registry key value "CommonFilesDir", string value = C:Program FilesCommon Files
03/09/2007 14:03:46.765 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:46.781 Registry: Read registry key value "ProgramFilesDir", string value = C:Program Files
03/09/2007 14:03:47.187 Found SQL 2005 product definition
03/09/2007 14:03:49.046 Enumeration: Determining QFE level for product instance MSSQLSERVER
03/09/2007 14:03:49.078 Enumeration: Associated hotfix build information not found for the following file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLBinnSQLServr.exe
03/09/2007 14:03:49.093 Enumeration: Found following QFE level for product instance MSSQLSERVER: 2047
03/09/2007 14:03:49.109 Enumeration: Determining GDR branching Hotfix for product instance MSSQLSERVER
03/09/2007 14:03:49.140 Enumeration: Associated hotfix build information not found for the following file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLBinnSQLServr.exe
03/09/2007 14:03:49.156 Enumeration: No GDR branch Hotfix found for product instance MSSQLSERVER
03/09/2007 14:03:49.187 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:49.203 Registry: Read registry key value "CommonFilesDir", string value = C:Program FilesCommon Files
03/09/2007 14:03:49.234 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:49.265 Registry: Read registry key value "ProgramFilesDir", string value = C:Program Files
03/09/2007 14:03:49.281 Product discovery completed during the install process for MSSQLSERVER
03/09/2007 14:03:49.312 SP Level check completed during the install process for MSSQLSERVER
03/09/2007 14:03:49.343 Product language check completed during the install process for MSSQLSERVER
03/09/2007 14:03:49.359 Product version check completed during the install process for MSSQLSERVER
03/09/2007 14:03:49.375 Command-line instance name check completed during the install process
03/09/2007 14:03:49.406 SKU check completed during the install process for MSSQLSERVER
03/09/2007 14:03:49.437 Baseline build check completed during the installation process for MSSQLSERVER
03/09/2007 14:03:49.453 Baseline build check completed during the install process
03/09/2007 14:03:49.484 Found OLAP Server 2005 product definition
03/09/2007 14:03:50.468 Command-line instance name check completed during the install process
03/09/2007 14:03:50.500 Baseline build check completed during the install process
03/09/2007 14:03:50.531 Found Notification Services 2005 product definition
03/09/2007 14:03:51.515 Baseline build check completed during the install process
03/09/2007 14:03:51.546 Found Report Server 2005 product definition
03/09/2007 14:03:52.546 Command-line instance name check completed during the install process
03/09/2007 14:03:52.578 Baseline build check completed during the install process
03/09/2007 14:03:52.609 Found DTS 2005 product definition
03/09/2007 14:03:53.734 Enumeration: Determining QFE level for product instance
03/09/2007 14:03:53.765 Enumeration: Associated hotfix build information not found for the following file: C:Program FilesMicrosoft SQL Server90DTS\Binnmsdtssrvr.exe
03/09/2007 14:03:53.828 Enumeration: Found following QFE level for product instance : 2047
03/09/2007 14:03:53.843 Enumeration: Determining GDR branching Hotfix for product instance
03/09/2007 14:03:53.875 Enumeration: Associated hotfix build information not found for the following file: C:Program FilesMicrosoft SQL Server90DTS\Binnmsdtssrvr.exe
03/09/2007 14:03:53.906 Enumeration: No GDR branch Hotfix found for product instance
03/09/2007 14:03:53.921 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:53.953 Registry: Read registry key value "CommonFilesDir", string value = C:Program FilesCommon Files
03/09/2007 14:03:53.984 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:54.015 Registry: Read registry key value "ProgramFilesDir", string value = C:Program Files
03/09/2007 14:03:54.031 Product discovery completed during the install process for Integration Services
03/09/2007 14:03:54.062 SP Level check completed during the install process for Integration Services
03/09/2007 14:03:54.078 Product language check completed during the install process for Integration Services
03/09/2007 14:03:54.109 Product version check completed during the install process for Integration Services
03/09/2007 14:03:54.140 Baseline build check completed during the installation process for Integration Services
03/09/2007 14:03:54.156 Baseline build check completed during the install process
03/09/2007 14:03:54.187 Found SQL 2005 Tools product definition
03/09/2007 14:03:55.187 Enumeration: Determining GDR branching Hotfix for product instance
03/09/2007 14:03:55.218 Enumeration: Associated hotfix build information not found for the following file: C:Program FilesMicrosoft SQL Server90Tools\BinnVSShellCommon7IDESQLWB.EXE
03/09/2007 14:03:55.250 Enumeration: No GDR branch Hotfix found for product instance
03/09/2007 14:03:55.281 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:55.296 Registry: Read registry key value "CommonFilesDir", string value = C:Program FilesCommon Files
03/09/2007 14:03:55.328 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:55.343 Registry: Read registry key value "ProgramFilesDir", string value = C:Program Files
03/09/2007 14:03:55.375 Product discovery completed during the install process for SQL Tools
03/09/2007 14:03:55.406 SP Level check completed during the install process for SQL Tools
03/09/2007 14:03:55.421 Product language check completed during the install process for SQL Tools
03/09/2007 14:03:55.453 Product version check completed during the install process for SQL Tools
03/09/2007 14:03:55.468 SKU check completed during the install process for SQL Tools
03/09/2007 14:03:55.500 Baseline build check completed during the installation process for SQL Tools
03/09/2007 14:03:55.531 Baseline build check completed during the install process
03/09/2007 14:03:55.562 Found Redist 2005 product definition
03/09/2007 14:03:55.593 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:55.625 Registry: Read registry key value "CommonFilesDir", string value = C:Program FilesCommon Files
03/09/2007 14:03:55.640 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:55.671 Registry: Read registry key value "ProgramFilesDir", string value = C:Program Files
03/09/2007 14:03:55.859 Found Redist 2005 product definition
03/09/2007 14:03:55.890 Found Redist 2005 product definition
03/09/2007 14:03:55.921 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:55.953 Registry: Read registry key value "CommonFilesDir", string value = C:Program FilesCommon Files
03/09/2007 14:03:55.984 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:56.000 Registry: Read registry key value "ProgramFilesDir", string value = C:Program Files
03/09/2007 14:03:56.234 Found Redist 2005 product definition
03/09/2007 14:03:56.265 Found Redist 2005 product definition
03/09/2007 14:03:56.296 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:56.312 Registry: Read registry key value "CommonFilesDir", string value = C:Program FilesCommon Files
03/09/2007 14:03:56.343 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:56.375 Registry: Read registry key value "ProgramFilesDir", string value = C:Program Files
03/09/2007 14:03:56.640 Found Redist 2005 product definition
03/09/2007 14:03:56.671 Found Redist 2005 product definition
03/09/2007 14:03:56.703 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:56.734 Registry: Read registry key value "CommonFilesDir", string value = C:Program FilesCommon Files
03/09/2007 14:03:56.750 Registry: Opened registry key "SOFTWAREMicrosoftWindowsCurrentVersion"
03/09/2007 14:03:56.781 Registry: Read registry key value "ProgramFilesDir", string value = C:Program Files
03/09/2007 14:03:56.968 Found Redist 2005 product definition
03/09/2007 14:03:57.171 Product Enumeration Results:
03/09/2007 14:03:57.203 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixSqlncli.inf
03/09/2007 14:03:57.234 baselinebuild = 1399
03/09/2007 14:03:57.250 build = 3042
03/09/2007 14:03:57.281 description = SQL Server Native Client
03/09/2007 14:03:57.296 details = Service Pack for Microsoft SQL Server Native Client.
03/09/2007 14:03:57.328 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:03:57.343 kbarticle = KB921896
03/09/2007 14:03:57.375 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:03:57.406 lcid = 1033
03/09/2007 14:03:57.421 legalproductname = Microsoft SQL Native Client
03/09/2007 14:03:57.453 machinetype = x86
03/09/2007 14:03:57.468 package = HotFixSqlncli
03/09/2007 14:03:57.500 packagetype = Hotfix
03/09/2007 14:03:57.515 productcode = {50A0893D-47D8-48E0-A7E8-44BCD7E4422E}
03/09/2007 14:03:57.546 productname = Redist9
03/09/2007 14:03:57.562 recommendinstall = 1
03/09/2007 14:03:57.593 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:03:57.625 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:03:57.640 splevel = 2
03/09/2007 14:03:57.671 sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
03/09/2007 14:03:57.703 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:03:57.718 upgradecode = {A6B19337-7392-4765-8675-5C25B758BA37}
03/09/2007 14:03:57.750 version = 9
03/09/2007 14:03:57.765
03/09/2007 14:03:57.796 File Group Details: MSI
03/09/2007 14:03:57.828 cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
03/09/2007 14:03:57.843 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:03:57.875 File Details: sqlncli.msi
03/09/2007 14:03:57.890
03/09/2007 14:03:57.921 Instance Details: SQL Server Native Client
03/09/2007 14:03:57.953 fullversion = 9.00.2047.00
03/09/2007 14:03:57.984 lcid = 1033
03/09/2007 14:03:58.000 productcode = {50A0893D-47D8-48E0-A7E8-44BCD7E4422E}
03/09/2007 14:03:58.031 qfelevel = 2047
03/09/2007 14:03:58.062 sp = -1
03/09/2007 14:03:58.078
03/09/2007 14:03:58.109 Product Enumeration Results:
03/09/2007 14:03:58.125 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixSqlncli_x64.inf
03/09/2007 14:03:58.156 baselinebuild = 1399
03/09/2007 14:03:58.171 build = 3042
03/09/2007 14:03:58.203 description = SQL Server Native Client
03/09/2007 14:03:58.234 details = Service Pack for Microsoft SQL Server Native Client.
03/09/2007 14:03:58.250 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:03:58.281 kbarticle = KB921896
03/09/2007 14:03:58.296 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:03:58.328 lcid = 1033
03/09/2007 14:03:58.359 legalproductname = Microsoft SQL Native Client (64-bit)
03/09/2007 14:03:58.375 machinetype = x64
03/09/2007 14:03:58.406 package = HotFixSqlncli_x64
03/09/2007 14:03:58.421 packagetype = Hotfix
03/09/2007 14:03:58.453 productname = Redist9
03/09/2007 14:03:58.484 recommendinstall = 1
03/09/2007 14:03:58.500 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:03:58.531 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:03:58.546 splevel = 2
03/09/2007 14:03:58.578 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:03:58.609 upgradecode = {6EC3319D-84BE-4C32-AA91-7D6057CF05A5}
03/09/2007 14:03:58.625 version = 9
03/09/2007 14:03:58.656
03/09/2007 14:03:58.671 File Group Details: MSI
03/09/2007 14:03:58.703 cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
03/09/2007 14:03:58.734 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:03:58.750 File Details: sqlncli_x64.msi
03/09/2007 14:03:58.781
03/09/2007 14:03:58.796 Product Enumeration Results:
03/09/2007 14:03:58.828 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixSqlSupport.inf
03/09/2007 14:03:58.859 alwaysinstall = 1
03/09/2007 14:03:58.875 baselinebuild = 1399
03/09/2007 14:03:58.906 build = 3042
03/09/2007 14:03:58.921 description = Setup Support Files
03/09/2007 14:03:58.953 details = Service Pack for the SQL Server support files.
03/09/2007 14:03:58.984 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:03:59.000 kbarticle = KB921896
03/09/2007 14:03:59.031 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:03:59.046 keyqualifier = 1
03/09/2007 14:03:59.078 lcid = 1033
03/09/2007 14:03:59.109 legalproductname = SQL Server 2005 Setup Support Files
03/09/2007 14:03:59.125 machinetype = x86
03/09/2007 14:03:59.156 package = HotFixSqlSupport
03/09/2007 14:03:59.187 packagetype = Hotfix
03/09/2007 14:03:59.203 productcode = {53F5C3EE-05ED-4830-994B-50B2F0D50FCE}
03/09/2007 14:03:59.234 productname = Redist9
03/09/2007 14:03:59.250 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:03:59.281 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:03:59.312 splevel = 2
03/09/2007 14:03:59.328 sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
03/09/2007 14:03:59.359 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:03:59.375 upgradecode = {3A91FA19-A197-467C-850F-0AFE90899371}
03/09/2007 14:03:59.406 version = 9
03/09/2007 14:03:59.437
03/09/2007 14:03:59.468 File Group Details: MSI
03/09/2007 14:03:59.484 cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCacheSQLSupport<MachineType><LCID>
03/09/2007 14:03:59.515 parameters = REINSTALL=ALL
03/09/2007 14:03:59.562 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:03:59.593 File Details: SqlSupport.msi
03/09/2007 14:03:59.609
03/09/2007 14:03:59.640 Instance Details: Setup Support Files
03/09/2007 14:03:59.671 fullversion = 9.1.2047
03/09/2007 14:03:59.718 lcid = 1033
03/09/2007 14:03:59.750 productcode = {53F5C3EE-05ED-4830-994B-50B2F0D50FCE}
03/09/2007 14:03:59.765 qfelevel = 2047
03/09/2007 14:03:59.796 sp = -1
03/09/2007 14:03:59.828
03/09/2007 14:03:59.859 Product Enumeration Results:
03/09/2007 14:03:59.890 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixSQL.inf
03/09/2007 14:03:59.921 baselinebuild = 1399
03/09/2007 14:03:59.953 baselinebuildmax = 3042
03/09/2007 14:03:59.984 build = 3042
03/09/2007 14:04:00.125 description = Database Services
03/09/2007 14:04:00.187 details = Service Pack for the SQL Server database engine, and the tools for managing relational and XML data, Replication, and Full-Text Search.
03/09/2007 14:04:00.234 installer = Hotfix
03/09/2007 14:04:00.250 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:00.296 kbarticle = KB921896
03/09/2007 14:04:00.328 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:00.359 lcid = 1033
03/09/2007 14:04:00.390 legalproductname = SQL Server Database Services 2005
03/09/2007 14:04:00.421 machinetype = x86
03/09/2007 14:04:00.453 package = HotFixSQL
03/09/2007 14:04:00.484 packagetype = Hotfix
03/09/2007 14:04:00.515 productname = SQL9
03/09/2007 14:04:00.546 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:00.578 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:00.609 sku = DESKTOP,STANDARD,WORKGROUP,ENTERPRISE,SBS,OFFICE,MSDE,DEVELOPERDESKTOP,DEVELOPERSTANDARD,PERSONAL,DEVELOPER,EVAL
03/09/2007 14:04:00.640 splevel = 2
03/09/2007 14:04:00.671 sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
03/09/2007 14:04:00.703 sqlutility = sqlcmd.exe
03/09/2007 14:04:00.734 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:00.765 validateauthentication = true
03/09/2007 14:04:00.796 version = 9
03/09/2007 14:04:00.812
03/09/2007 14:04:00.843 File Group Details: MSP
03/09/2007 14:04:00.875 parameters = SQLBUILD=3042 KBNUMBER=KB921896 REBOOT=ReallySuppress
03/09/2007 14:04:00.906 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:00.937 File Details: sqlrun_sql.msp
03/09/2007 14:04:00.968
03/09/2007 14:04:01.000 Instance Details: MSSQLSERVER
03/09/2007 14:04:01.031 agentservicename = SQLSERVERAGENT
03/09/2007 14:04:01.062 associatedhotfixbuild = 0
03/09/2007 14:04:01.093 clustername =
03/09/2007 14:04:01.125 default = TRUE
03/09/2007 14:04:01.156 ftsservicename = MSFTESQL
03/09/2007 14:04:01.187 fullversion = 2005.090.2047.00
03/09/2007 14:04:01.218 hiveregpath = SoftwareMicrosoftMicrosoft SQL ServerMSSQL.1
03/09/2007 14:04:01.250 id = MSSQL.1
03/09/2007 14:04:01.281 installsqldatadir = C:Program FilesMicrosoft SQL ServerMSSQL
03/09/2007 14:04:01.312 installsqldir = C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQL
03/09/2007 14:04:01.343 lcid = 1033
03/09/2007 14:04:01.375 name = MSSQLSERVER
03/09/2007 14:04:01.406 productcode = {130A3BE1-85CC-4135-8EA7-5A724EE6CE2C}
03/09/2007 14:04:01.437 qfelevel = 2047
03/09/2007 14:04:01.468 servicename = MSSQLServer
03/09/2007 14:04:01.500 sku = STANDARD
03/09/2007 14:04:01.531 sp = 1
03/09/2007 14:04:01.562 type = SQL Server Standalone Product
03/09/2007 14:04:01.593 vermajbld = 2047
03/09/2007 14:04:01.625 version = 9
03/09/2007 14:04:01.656
03/09/2007 14:04:01.687 Product Enumeration Results:
03/09/2007 14:04:01.718 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixAS.inf
03/09/2007 14:04:01.750 baselinebuild = 1399
03/09/2007 14:04:01.781 baselinebuildmax = 3042
03/09/2007 14:04:01.812 build = 3042
03/09/2007 14:04:01.843 description = Analysis Services
03/09/2007 14:04:01.875 details = Service Pack for Analysis Services, and the tools used to support online analytical processing (OLAP) and data mining.
03/09/2007 14:04:01.906 installer = Hotfix
03/09/2007 14:04:01.921 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:01.953 kbarticle = KB921896
03/09/2007 14:04:02.000 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:02.015 lcid = 1033
03/09/2007 14:04:02.046 legalproductname = SQL Server Analysis Services 2005
03/09/2007 14:04:02.078 machinetype = x86
03/09/2007 14:04:02.109 package = HotFixAS
03/09/2007 14:04:02.140 packagetype = Hotfix
03/09/2007 14:04:02.171 productname = OLAP9
03/09/2007 14:04:02.203 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:02.234 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:02.265 splevel = 2
03/09/2007 14:04:02.312 sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
03/09/2007 14:04:02.328 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:02.359 version = 9
03/09/2007 14:04:02.390
03/09/2007 14:04:02.421 File Group Details: MSP
03/09/2007 14:04:02.453 parameters = SQLBUILD=3042 KBNUMBER=KB921896 REBOOT=ReallySuppress
03/09/2007 14:04:02.484 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:02.515 File Details: sqlrun_as.msp
03/09/2007 14:04:02.546
03/09/2007 14:04:02.578 Product Enumeration Results:
03/09/2007 14:04:02.609 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixNS.inf
03/09/2007 14:04:02.640 baselinebuild = 1399
03/09/2007 14:04:02.671 baselinebuildmax = 3042
03/09/2007 14:04:02.687 build = 3042
03/09/2007 14:04:02.718 description = Notification Services
03/09/2007 14:04:02.750 details = Service Pack for Notification Services, a platform for developing and deploying applications that send personalized, timely notifications to a variety of devices or applications.
03/09/2007 14:04:02.781 installer = Hotfix
03/09/2007 14:04:02.812 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:02.843 kbarticle = KB921896
03/09/2007 14:04:02.875 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:02.906 lcid = 1033
03/09/2007 14:04:02.953 legalproductname = SQL Server Notification Services 2005 instances
03/09/2007 14:04:02.984 machinetype = x86
03/09/2007 14:04:03.015 package = HotFixNS
03/09/2007 14:04:03.046 packagetype = Hotfix
03/09/2007 14:04:03.062 productname = NS9
03/09/2007 14:04:03.093 recommendinstall = 1
03/09/2007 14:04:03.109 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:03.140 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:03.171 splevel = 2
03/09/2007 14:04:03.187 sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
03/09/2007 14:04:03.218 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:03.234 version = 9
03/09/2007 14:04:03.265
03/09/2007 14:04:03.296 File Group Details: MSP
03/09/2007 14:04:03.312 parameters = SQLBUILD=3042 KBNUMBER=KB921896 REBOOT=ReallySuppress
03/09/2007 14:04:03.343 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:03.359 File Details: sqlrun_ns.msp
03/09/2007 14:04:03.390
03/09/2007 14:04:03.421 Product Enumeration Results:
03/09/2007 14:04:03.437 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixRS.inf
03/09/2007 14:04:03.468 baselinebuild = 1399
03/09/2007 14:04:03.484 baselinebuildmax = 3042
03/09/2007 14:04:03.515 build = 3042
03/09/2007 14:04:03.531 description = Reporting Services
03/09/2007 14:04:03.562 details = Service Pack for the Report Server and Report Builder, which manages, executes, renders, and distributes reports.
03/09/2007 14:04:03.593 installer = Hotfix
03/09/2007 14:04:03.625 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:03.687 kbarticle = KB921896
03/09/2007 14:04:03.734 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:03.765 lcid = 1033
03/09/2007 14:04:03.796 legalproductname = SQL Server Reporting Services 2005
03/09/2007 14:04:03.843 machinetype = x86
03/09/2007 14:04:03.875 package = HotFixRS
03/09/2007 14:04:03.890 packagetype = Hotfix
03/09/2007 14:04:03.921 productname = RS9
03/09/2007 14:04:03.953 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:03.968 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:04.000 sku = DESKTOP,STANDARD,WORKGROUP,ENTERPRISE,SBS,OFFICE,MSDE,DEVELOPERDESKTOP,DEVELOPERSTANDARD,PERSONAL,DEVELOPER,EVAL
03/09/2007 14:04:04.015 splevel = 2
03/09/2007 14:04:04.046 sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
03/09/2007 14:04:04.078 sqlutility = sqlcmd.exe
03/09/2007 14:04:04.093 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:04.125 validateauthentication = 1
03/09/2007 14:04:04.140 version = 9
03/09/2007 14:04:04.171
03/09/2007 14:04:04.203 File Group Details: MSP
03/09/2007 14:04:04.234 parameters = SQLBUILD=3042 KBNUMBER=KB921896 REBOOT=ReallySuppress
03/09/2007 14:04:04.250 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:04.281 File Details: sqlrun_rs.msp
03/09/2007 14:04:04.296
03/09/2007 14:04:04.328 Product Enumeration Results:
03/09/2007 14:04:04.359 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixDTS.inf
03/09/2007 14:04:04.375 baselinebuild = 1399
03/09/2007 14:04:04.406 baselinebuildmax = 3042
03/09/2007 14:04:04.421 build = 3042
03/09/2007 14:04:04.453 description = Integration Services
03/09/2007 14:04:04.484 details = Service Pack for Integration Services, a set of tools and programmable objects used to create and manage packages that extract, transform, and load data, as well as perform tasks.
03/09/2007 14:04:04.500 installer = Hotfix
03/09/2007 14:04:04.531 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:04.562 kbarticle = KB921896
03/09/2007 14:04:04.578 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:04.609 lcid = 1033
03/09/2007 14:04:04.625 legalproductname = SQL Server Integration Services 2005
03/09/2007 14:04:04.656 machinetype = x86
03/09/2007 14:04:04.687 package = HotFixDTS
03/09/2007 14:04:04.703 packagetype = Hotfix
03/09/2007 14:04:04.734 productname = DTS9
03/09/2007 14:04:04.765 recommendinstall = 1
03/09/2007 14:04:04.796 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:04.812 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:04.843 splevel = 2
03/09/2007 14:04:04.875 sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
03/09/2007 14:04:04.906 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:04.921 version = 9
03/09/2007 14:04:04.953
03/09/2007 14:04:04.984 File Group Details: MSP
03/09/2007 14:04:05.000 parameters = SQLBUILD=3042 KBNUMBER=KB921896 REBOOT=ReallySuppress
03/09/2007 14:04:05.031 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:05.046 File Details: sqlrun_dts.msp
03/09/2007 14:04:05.078
03/09/2007 14:04:05.109 Instance Details: Integration Services
03/09/2007 14:04:05.125 associatedhotfixbuild = 0
03/09/2007 14:04:05.156 clustername =
03/09/2007 14:04:05.171 dtsservicename = MsDtsServer
03/09/2007 14:04:05.203 fullversion = 9.00.2047.00
03/09/2007 14:04:05.234 hiveregpath = SoftwareMicrosoftMicrosoft SQL Server90DTS
03/09/2007 14:04:05.265 id =
03/09/2007 14:04:05.281 installsqldatadir =
03/09/2007 14:04:05.312 installsqldir = C:Program FilesMicrosoft SQL Server90DTS
03/09/2007 14:04:05.328 lcid = 1033
03/09/2007 14:04:05.375 name =
03/09/2007 14:04:05.390 productcode = {EE8CFFD9-6E29-4DC3-A967-7348D5F41F44}
03/09/2007 14:04:05.421 qfelevel = 2047
03/09/2007 14:04:05.453 servicename = MsDtsServer
03/09/2007 14:04:05.484 sku = STANDARD
03/09/2007 14:04:05.515 sp = 1
03/09/2007 14:04:05.546 type = Tools Only
03/09/2007 14:04:05.578 vermajbld = 2047
03/09/2007 14:04:05.593 version = 9
03/09/2007 14:04:05.625
03/09/2007 14:04:05.656 Product Enumeration Results:
03/09/2007 14:04:05.671 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixTools.inf
03/09/2007 14:04:05.703 baselinebuild = 1399
03/09/2007 14:04:05.718 baselinebuildmax = 3042
03/09/2007 14:04:05.750 build = 3042
03/09/2007 14:04:05.781 description = Client Components
03/09/2007 14:04:05.796 details = Service Pack for the interactive management tools for running SQL Server, including SQL Server Configuration Manager, SQL Server Management Studio, SQL Profiler, and Replication Monitor.
03/09/2007 14:04:05.828 installer = Hotfix
03/09/2007 14:04:05.859 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:05.875 kbarticle = KB921896
03/09/2007 14:04:05.906 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:05.921 lcid = 1033
03/09/2007 14:04:05.953 legalproductname = SQL Server Tools and Workstation Components 2005
03/09/2007 14:04:05.984 machinetype = x86
03/09/2007 14:04:06.000 package = HotFixTools
03/09/2007 14:04:06.031 packagetype = Hotfix
03/09/2007 14:04:06.046 productname = SQLTools9
03/09/2007 14:04:06.078 recommendinstall = 1
03/09/2007 14:04:06.109 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:06.125 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:06.156 sku = DESKTOP,STANDARD,WORKGROUP,ENTERPRISE,SBS,OFFICE,MSDE,DEVELOPERDESKTOP,DEVELOPERSTANDARD,PERSONAL,DEVELOPER,EVAL
03/09/2007 14:04:06.171 splevel = 2
03/09/2007 14:04:06.203 sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
03/09/2007 14:04:06.234 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:06.250 version = 9
03/09/2007 14:04:06.281
03/09/2007 14:04:06.296 File Group Details: MSP
03/09/2007 14:04:06.328 parameters = SQLBUILD=3042 KBNUMBER=KB921896 REBOOT=ReallySuppress
03/09/2007 14:04:06.359 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:06.375 File Details: sqlrun_tools.msp
03/09/2007 14:04:06.406
03/09/2007 14:04:06.421 Instance Details: SQL Tools
03/09/2007 14:04:06.453 associatedhotfixbuild = 0
03/09/2007 14:04:06.468 clustername =
03/09/2007 14:04:06.500 fullversion = 9.1.2047
03/09/2007 14:04:06.531 hiveregpath = SoftwareMicrosoftMicrosoft SQL Server90Tools
03/09/2007 14:04:06.546 id =
03/09/2007 14:04:06.578 installsqldatadir =
03/09/2007 14:04:06.593 installsqldir = C:Program FilesMicrosoft SQL Server90Tools
03/09/2007 14:04:06.625 lcid = 1033
03/09/2007 14:04:06.656 name =
03/09/2007 14:04:06.671 productcode = {1DD463C0-A50A-4394-B7E4-5895C02F9E0D}
03/09/2007 14:04:06.703 qfelevel = 2047
03/09/2007 14:04:06.718 sku = STANDARD
03/09/2007 14:04:06.750 sp = 1
03/09/2007 14:04:06.781 type = Tools Only
03/09/2007 14:04:06.796 vermajbld = 2047
03/09/2007 14:04:06.828 version = 9
03/09/2007 14:04:06.843
03/09/2007 14:04:06.875 Product Enumeration Results:
03/09/2007 14:04:06.906 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixMsxml6.inf
03/09/2007 14:04:06.937 baselinebuild = 1399
03/09/2007 14:04:06.968 build = 6.10.1129.0
03/09/2007 14:04:07.000 description = MSXML 6.0 Parser
03/09/2007 14:04:07.031 details = Service Pack for Microsoft XML 6.0 Parser.
03/09/2007 14:04:07.062 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:07.093 kbarticle = KB921896
03/09/2007 14:04:07.125 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:07.156 lcid = 1033
03/09/2007 14:04:07.187 legalproductname = MSXML 6.0 Parser
03/09/2007 14:04:07.218 machinetype = x86
03/09/2007 14:04:07.250 package = HotFixMsxml6
03/09/2007 14:04:07.281 packagetype = Hotfix
03/09/2007 14:04:07.312 productcode = {5A710547-B58E-488B-828D-CA9A25A0533C}
03/09/2007 14:04:07.343 productname = Redist9
03/09/2007 14:04:07.375 recommendinstall = 1
03/09/2007 14:04:07.406 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:07.437 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:07.468 splevel = 2
03/09/2007 14:04:07.500 sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
03/09/2007 14:04:07.531 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:07.562 upgradecode = {1B117BA7-5BC1-419E-820E-7D4F3F412C7B}
03/09/2007 14:04:07.593 version = 9
03/09/2007 14:04:07.625
03/09/2007 14:04:07.656 File Group Details: MSI
03/09/2007 14:04:07.687 cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
03/09/2007 14:04:07.718 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:07.750 File Details: msxml6.msi
03/09/2007 14:04:07.781
03/09/2007 14:04:07.812 Instance Details: MSXML 6.0 Parser
03/09/2007 14:04:07.843 fullversion = 6.00.3890.0
03/09/2007 14:04:07.875 lcid = 1033
03/09/2007 14:04:07.906 productcode = {5A710547-B58E-488B-828D-CA9A25A0533C}
03/09/2007 14:04:07.937 qfelevel = 3890
03/09/2007 14:04:07.968 sp = -1
03/09/2007 14:04:08.000
03/09/2007 14:04:08.031 Product Enumeration Results:
03/09/2007 14:04:08.046 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixMsxml6_x64.inf
03/09/2007 14:04:08.093 baselinebuild = 1399
03/09/2007 14:04:08.125 build = 6.10.1129.0
03/09/2007 14:04:08.140 description = MSXML 6.0 Parser
03/09/2007 14:04:08.171 details = Service Pack for Microsoft XML 6.0 Parser.
03/09/2007 14:04:08.203 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:08.250 kbarticle = KB921896
03/09/2007 14:04:08.281 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:08.312 lcid = 1033
03/09/2007 14:04:08.328 legalproductname = MSXML 6.0 Parser (64-bit)
03/09/2007 14:04:08.359 machinetype = x64
03/09/2007 14:04:08.390 package = HotFixMsxml6_x64
03/09/2007 14:04:08.421 packagetype = Hotfix
03/09/2007 14:04:08.468 productname = Redist9
03/09/2007 14:04:08.484 recommendinstall = 1
03/09/2007 14:04:08.515 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:08.546 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:08.578 splevel = 2
03/09/2007 14:04:08.609 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:08.640 upgradecode = {5BBED1F8-E6F3-4A02-BC97-26D35BE200CA}
03/09/2007 14:04:08.671 version = 9
03/09/2007 14:04:08.703
03/09/2007 14:04:08.734 File Group Details: MSI
03/09/2007 14:04:08.765 cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
03/09/2007 14:04:08.796 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:08.828 File Details: msxml6_x64.msi
03/09/2007 14:04:08.859
03/09/2007 14:04:08.890 Product Enumeration Results:
03/09/2007 14:04:08.921 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixSqlxml4.inf
03/09/2007 14:04:08.953 baselinebuild = 1399
03/09/2007 14:04:08.984 build = 3042
03/09/2007 14:04:09.015 description = SQLXML4
03/09/2007 14:04:09.046 details = Service Pack for Microsoft SQLXML 4.0.
03/09/2007 14:04:09.078 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:09.109 kbarticle = KB921896
03/09/2007 14:04:09.140 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:09.171 lcid = 1033
03/09/2007 14:04:09.203 legalproductname = SQLXML4
03/09/2007 14:04:09.234 machinetype = x86
03/09/2007 14:04:09.265 package = HotFixSqlxml4
03/09/2007 14:04:09.296 packagetype = Hotfix
03/09/2007 14:04:09.328 productcode = {A188FCCF-E929-494D-B1F1-4313E02ACD52}
03/09/2007 14:04:09.359 productname = Redist9
03/09/2007 14:04:09.375 recommendinstall = 1
03/09/2007 14:04:09.406 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:09.453 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:09.484 splevel = 2
03/09/2007 14:04:09.515 sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
03/09/2007 14:04:09.531 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:09.562 upgradecode = {D9CA3D82-6F1B-41A7-8141-B90ACA8F865B}
03/09/2007 14:04:09.609 version = 9
03/09/2007 14:04:09.640
03/09/2007 14:04:09.656 File Group Details: MSI
03/09/2007 14:04:09.687 cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
03/09/2007 14:04:09.718 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:09.750 File Details: sqlxml4.msi
03/09/2007 14:04:09.796
03/09/2007 14:04:09.812 Instance Details: SQLXML4
03/09/2007 14:04:09.843 fullversion = 9.00.2047.00
03/09/2007 14:04:09.875 lcid = 1033
03/09/2007 14:04:09.906 productcode = {A188FCCF-E929-494D-B1F1-4313E02ACD52}
03/09/2007 14:04:09.937 qfelevel = 2047
03/09/2007 14:04:09.968 sp = -1
03/09/2007 14:04:10.000
03/09/2007 14:04:10.031 Product Enumeration Results:
03/09/2007 14:04:10.062 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixSqlxml4_x64.inf
03/09/2007 14:04:10.093 baselinebuild = 1399
03/09/2007 14:04:10.125 build = 3042
03/09/2007 14:04:10.156 description = SQLXML4
03/09/2007 14:04:10.187 details = Service Pack for Microsoft SQLXML 4.0.
03/09/2007 14:04:10.218 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:10.250 kbarticle = KB921896
03/09/2007 14:04:10.281 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:10.312 lcid = 1033
03/09/2007 14:04:10.343 legalproductname = SQLXML4 (64-bit)
03/09/2007 14:04:10.375 machinetype = x64
03/09/2007 14:04:10.406 package = HotFixSqlxml4_x64
03/09/2007 14:04:10.437 packagetype = Hotfix
03/09/2007 14:04:10.468 productname = Redist9
03/09/2007 14:04:10.500 recommendinstall = 1
03/09/2007 14:04:10.531 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:10.562 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:10.593 splevel = 2
03/09/2007 14:04:10.625 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:10.656 upgradecode = {F457D8E6-7686-437D-9B17-E21D45CCABD8}
03/09/2007 14:04:10.687 version = 9
03/09/2007 14:04:10.718
03/09/2007 14:04:10.750 File Group Details: MSI
03/09/2007 14:04:10.781 cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
03/09/2007 14:04:10.812 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:10.843 File Details: sqlxml4_x64.msi
03/09/2007 14:04:10.875
03/09/2007 14:04:10.906 Product Enumeration Results:
03/09/2007 14:04:10.937 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixSQLServer2005_BC.inf
03/09/2007 14:04:10.968 baselinebuild = 1399
03/09/2007 14:04:11.000 build = 2004
03/09/2007 14:04:11.031 description = Backward Compatibility
03/09/2007 14:04:11.062 details = Service Pack for the Backward Compatibility components, including Data Transformation Services Runtime and SQL-DMO.
03/09/2007 14:04:11.093 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:11.125 kbarticle = KB921896
03/09/2007 14:04:11.156 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:11.187 lcid = 1033
03/09/2007 14:04:11.218 legalproductname = Microsoft SQL Server 2005 Backward Compatibility
03/09/2007 14:04:11.250 machinetype = x86
03/09/2007 14:04:11.281 package = HotFixSQLServer2005_BC
03/09/2007 14:04:11.312 packagetype = Hotfix
03/09/2007 14:04:11.343 productcode = {2243F21A-E132-44F7-BA13-024D0845C815}
03/09/2007 14:04:11.375 productname = Redist9
03/09/2007 14:04:11.406 recommendinstall = 1
03/09/2007 14:04:11.437 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:11.468 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:11.500 splevel = 2
03/09/2007 14:04:11.531 sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
03/09/2007 14:04:11.562 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:11.593 upgradecode = {1E70C6C9-E1B7-4A74-BC8C-8EB5D010CEC9}
03/09/2007 14:04:11.625 version = 9
03/09/2007 14:04:11.656
03/09/2007 14:04:11.687 File Group Details: MSI
03/09/2007 14:04:11.718 cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
03/09/2007 14:04:11.750 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:11.781 File Details: SQLServer2005_BC.msi
03/09/2007 14:04:11.812
03/09/2007 14:04:11.843 Instance Details: Backward Compatibility
03/09/2007 14:04:11.875 fullversion = 8.05.1704
03/09/2007 14:04:11.906 lcid = 1033
03/09/2007 14:04:11.937 productcode = {2243F21A-E132-44F7-BA13-024D0845C815}
03/09/2007 14:04:11.968 qfelevel = 1704
03/09/2007 14:04:12.000 sp = -1
03/09/2007 14:04:12.031
03/09/2007 14:04:12.062 Product Enumeration Results:
03/09/2007 14:04:12.093 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixSQLServer2005_BC_x64.inf
03/09/2007 14:04:12.125 baselinebuild = 1399
03/09/2007 14:04:12.156 build = 2004
03/09/2007 14:04:12.187 description = Backward Compatibility
03/09/2007 14:04:12.218 details = Service Pack for the Backward Compatibility components, including Data Transformation Services Runtime and SQL-DMO.
03/09/2007 14:04:12.250 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:12.281 kbarticle = KB921896
03/09/2007 14:04:12.296 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:12.343 lcid = 1033
03/09/2007 14:04:12.375 legalproductname = Microsoft SQL Server 2005 Backward Compatibility (64-bit)
03/09/2007 14:04:12.406 machinetype = x64
03/09/2007 14:04:12.437 package = HotFixSQLServer2005_BC_x64
03/09/2007 14:04:12.453 packagetype = Hotfix
03/09/2007 14:04:12.484 productname = Redist9
03/09/2007 14:04:12.515 recommendinstall = 1
03/09/2007 14:04:12.546 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:12.578 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:12.609 splevel = 2
03/09/2007 14:04:12.640 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:12.671 upgradecode = {7B6BF434-3C72-4DB3-8049-FEF31AEAFF9A}
03/09/2007 14:04:12.703 version = 9
03/09/2007 14:04:12.734
03/09/2007 14:04:12.765 File Group Details: MSI
03/09/2007 14:04:12.796 cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
03/09/2007 14:04:12.828 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:12.859 File Details: SQLServer2005_BC_x64.msi
03/09/2007 14:04:12.890
03/09/2007 14:04:12.921 Product Enumeration Results:
03/09/2007 14:04:12.968 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixSqlWriter.inf
03/09/2007 14:04:12.984 baselinebuild = 1399
03/09/2007 14:04:13.015 build = 3042
03/09/2007 14:04:13.046 description = Microsoft SQL Server VSS Writer
03/09/2007 14:04:13.078 details = Service Pack for Microsoft SQL Server VSS Writer.
03/09/2007 14:04:13.109 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:13.140 kbarticle = KB921896
03/09/2007 14:04:13.171 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:13.203 lcid = 1033
03/09/2007 14:04:13.234 legalproductname = Microsoft SQL Server VSS Writer
03/09/2007 14:04:13.265 machinetype = x86
03/09/2007 14:04:13.296 package = HotFixSqlWriter
03/09/2007 14:04:13.328 packagetype = Hotfix
03/09/2007 14:04:13.359 productcode = {C0D2F614-5CE5-4DCB-8678-E5C9AF7044F8}
03/09/2007 14:04:13.390 productname = Redist9
03/09/2007 14:04:13.421 recommendinstall = 1
03/09/2007 14:04:13.453 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:13.484 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:13.515 splevel = 2
03/09/2007 14:04:13.546 sqladminprovisioningtool = <PROGRAMFILESDIR_WOW>Microsoft SQL Server90Sharedsqlprov.exe
03/09/2007 14:04:13.578 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:13.609 upgradecode = {65D8E1DF-6201-4B53-A0F9-E654F8E80F97}
03/09/2007 14:04:13.640 version = 9
03/09/2007 14:04:13.671
03/09/2007 14:04:13.703 File Group Details: MSI
03/09/2007 14:04:13.734 cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
03/09/2007 14:04:13.765 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:13.796 File Details: SqlWriter.msi
03/09/2007 14:04:13.828
03/09/2007 14:04:13.859 Instance Details: Microsoft SQL Server VSS Writer
03/09/2007 14:04:13.890 fullversion = 9.00.2047.00
03/09/2007 14:04:13.921 lcid = 1033
03/09/2007 14:04:13.953 productcode = {C0D2F614-5CE5-4DCB-8678-E5C9AF7044F8}
03/09/2007 14:04:13.984 qfelevel = 2047
03/09/2007 14:04:14.015 sp = -1
03/09/2007 14:04:14.046
03/09/2007 14:04:14.078 Product Enumeration Results:
03/09/2007 14:04:14.109 INF File Name: c:57a10d1e173eea2efd90865f30137638HotFixSqlWriter_x64.inf
03/09/2007 14:04:14.140 baselinebuild = 1399
03/09/2007 14:04:14.156 build = 3042
03/09/2007 14:04:14.187 description = Microsoft SQL Server VSS Writer
03/09/2007 14:04:14.234 details = Service Pack for Microsoft SQL Server VSS Writer.
03/09/2007 14:04:14.265 installerlogpath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapLOGHotfix
03/09/2007 14:04:14.296 kbarticle = KB921896
03/09/2007 14:04:14.312 kbarticlehyperlink = http://support.microsoft.com/?kbid=921896
03/09/2007 14:04:14.343 lcid = 1033
03/09/2007 14:04:14.390 legalproductname = Microsoft SQL Server VSS Writer (64-bit)
03/09/2007 14:04:14.421 machinetype = x64
03/09/2007 14:04:14.437 package = HotFixSqlWriter_x64
03/09/2007 14:04:14.468 packagetype = Hotfix
03/09/2007 14:04:14.500 productname = Redist9
03/09/2007 14:04:14.531 recommendinstall = 1
03/09/2007 14:04:14.578 relatedlinks = <LCIDSUPPORTDIR>FinalSQL2005Information.rtf
03/09/2007 14:04:14.593 servicepackname = Microsoft SQL Server 2005 Service Pack 2 Setup
03/09/2007 14:04:14.625 splevel = 2
03/09/2007 14:04:14.656 supportdir = c:57a10d1e173eea2efd90865f30137638
03/09/2007 14:04:14.687 upgradecode = {E9031696-DD39-4C25-BAEB-425FF28279EA}
03/09/2007 14:04:14.703 version = 9
03/09/2007 14:04:14.734
03/09/2007 14:04:14.765 File Group Details: MSI
03/09/2007 14:04:14.796 cachedmsipath = <PROGRAMFILESDIR>Microsoft SQL Server90Setup BootstrapCache
03/09/2007 14:04:14.828 sourcepath = <SUPPORTDIR><PACKAGE>Files
03/09/2007 14:04:14.859 File Details: SqlWriter_x64.msi
03/09/2007 14:04:14.890
03/09/2007 14:04:20.125 Registry: Opened registry key "SystemCurrentControlSetControlSession Manager"
03/09/2007 14:04:20.156 Registry: Cannot read registry key value "PendingFileRenameOperations"
03/09/2007 14:04:21.203 Authenticating user using Windows Authentication
03/09/2007 14:04:21.234 SQL Service MSSQLServer was previously running, ready for authentication
03/09/2007 14:04:21.265 SQL Agent Service SQLSERVERAGENT was previously running
03/09/2007 14:04:21.593 Authenticating user using Windows Authentication
03/09/2007 14:04:21.625 Validating database connections using Windows Authentication
03/09/2007 14:04:21.796 Pre-script database connection check was successful - proceeding with script execution
03/09/2007 14:04:21.968 Received sysadmin status for instance: MSSQLSERVER
03/09/2007 14:04:22.000 Validating database connections using Windows Authentication
03/09/2007 14:04:22.187 Pre-script database connection check was successful - proceeding with script execution
03/09/2007 14:04:22.218 User authentication was successful
03/09/2007 14:04:22.265 Registry: Read registry key value "EnableErrorReporting", DWORD value = 0
03/09/2007 14:04:22.296 Registry: Read registry key value "EnableErrorReporting", DWORD value = 0
03/09/2007 14:04:22.328 Registry: Read registry key value "CustomerFeedBack", DWORD value = 0
03/09/2007 14:04:22.359 Registry: Read registry key value "CustomerFeedBack", DWORD value = 0
03/09/2007 14:04:23.390 Registry: Set registry key value "EnableErrorReporting", DWORD value = 0
03/09/2007 14:04:23.421 Registry: Set registry key value "EnableErrorReporting", DWORD value = 0
03/09/2007 14:04:23.437 Registry: Set registry key value "CustomerFeedBack", DWORD value = 0
03/09/2007 14:04:23.468 Registry: Set registry key value "CustomerFeedBack", DWORD value = 0
03/09/2007 14:04:23.531 Locked file: Checking for locked files
03/09/2007 14:04:24.031 Locked file: C:WINDOWSsystem32sqlncli.dll (MSSQLSERVER [sqlservr.exe] - 4956)
03/09/2007 14:04:24.046 Locked file: C:WINDOWSsystem32sqlncli.dll (SQLSERVERAGENT [SQLAGENT90.EXE] - 4312)
03/09/2007 14:04:26.000 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnmsftesql.exe (msftesql [msftesql.exe] - 4944)
03/09/2007 14:04:26.046 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnmsftepxy.dll (msftesql [msftesql.exe] - 4944)
03/09/2007 14:04:26.093 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnmsftepxy.dll (MSSQLSERVER [sqlservr.exe] - 4956)
03/09/2007 14:04:26.218 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnmsfte.dll (msftesql [msftesql.exe] - 4944)
03/09/2007 14:04:26.250 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnmsfte.dll (MSSQLSERVER [sqlservr.exe] - 4956)
03/09/2007 14:04:27.703 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinn
esources1033sqlevn70.rll (MSSQLSERVER [sqlservr.exe] - 4956)
03/09/2007 14:04:27.843 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinn
esources1033xpstar90.rll (MSSQLSERVER [sqlservr.exe] - 4956)
03/09/2007 14:04:27.937 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinndbghelp.dll (msftesql [msftesql.exe] - 4944)
03/09/2007 14:04:27.984 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinndbghelp.dll (MSSQLSERVER [sqlservr.exe] - 4956)
03/09/2007 14:04:28.312 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnsqlsvc90.dll (SQLSERVERAGENT [SQLAGENT90.EXE] - 4312)
03/09/2007 14:04:28.359 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnxpstar90.dll (MSSQLSERVER [sqlservr.exe] - 4956)
03/09/2007 14:04:28.406 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnsqlos.dll (MSSQLSERVER [sqlservr.exe] - 4956)
03/09/2007 14:04:28.484 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnxpsqlbot.dll (MSSQLSERVER [sqlservr.exe] - 4956)
03/09/2007 14:04:28.515 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnxplog70.dll (MSSQLSERVER [sqlservr.exe] - 4956)
03/09/2007 14:04:28.546 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnsqlservr.exe (MSSQLSERVER [sqlservr.exe] - 4956)
03/09/2007 14:04:28.656 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnatchparser90.dll (MSSQLSERVER [sqlservr.exe] - 4956)
03/09/2007 14:04:28.687 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnatchparser90.dll (SQLSERVERAGENT [SQLAGENT90.EXE] - 4312)
03/09/2007 14:04:28.750 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinn
esources1033sqlagent90.rll (SQLSERVERAGENT [SQLAGENT90.EXE] - 4312)
03/09/2007 14:04:28.812 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnsqldtsss90.dll (SQLSERVERAGENT [SQLAGENT90.EXE] - 4312)
03/09/2007 14:04:28.843 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnsqlrepss90.dll (SQLSERVERAGENT [SQLAGENT90.EXE] - 4312)
03/09/2007 14:04:28.875 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnsqlolapss90.dll (SQLSERVERAGENT [SQLAGENT90.EXE] - 4312)
03/09/2007 14:04:28.921 Locked file: C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLinnsqlagent90.exe (SQLSERVERAGENT [SQLAGENT90.EXE] - 4312)
03/09/2007 14:04:36.203 Attempting to pause the 32 bit ngen queue
03/09/2007 14:04:36.968 Installing product: Redist9
03/09/2007 14:04:37.000 Installing instance: Setup Support Files
03/09/2007 14:04:37.046 Installing target: BVTBIQA
03/09/2007 14:04:37.109 Installing file: SqlSupport.msi
03/09/2007 14:04:37.250 Copy Engine: Creating MSI install log file at: C:Program FilesMicrosoft SQL Server90Setup BootstrapLOGHotfixRedist9_Hotfix_KB921896_SqlSupport.msi.log
03/09/2007 14:04:37.281 Registry: Opened registry key "SoftwarePoliciesMicrosoftWindowsInstaller"
03/09/2007 14:04:37.312 Registry: Cannot read registry key value "Debug"
03/09/2007 14:04:40.359 Registry: Opened registry key "SoftwarePoliciesMicrosoftWindowsInstaller"
03/09/2007 14:04:40.390 Registry: Cannot read registry key value "Debug"
03/09/2007 14:04:40.421 Copy Engine: Error, unable to install MSI file: C:Program FilesMicrosoft SQL Server90Setup BootstrapCacheSQLSupportx861033SqlSupport.msi
03/09/2007 14:04:40.453 The following exception occurred: Unable to install Windows Installer MSI file Date: 03/09/2007 14:04:40.453 File: depotsqlvaultstablesetupmainl1setupsqlsesqlsedllcopyengine.cpp Line: 1378
03/09/2007 14:04:47.171 Watson: Param1 = Unknown
03/09/2007 14:04:47.218 Watson: Param2 = 0x652
03/09/2007 14:04:47.250 Watson: Param3 = Unknown
03/09/2007 14:04:47.296 Watson: Param4 = 0x652
03/09/2007 14:04:47.343 Watson: Param5 = copyengine.cpp@1378
03/09/2007 14:04:47.375 Watson: Param6 = Unknown
03/09/2007 14:04:47.421 Watson: Param7 = Redist9
03/09/2007 14:04:47.453 Watson: Param8 = @
03/09/2007 14:04:47.515 Watson: Param9 = x86
03/09/2007 14:04:47.546 Watson: Param10 = 3042
03/09/2007 14:04:47.593 Attempting to continue the 32 bit ngen queue
03/09/2007 14:04:53.984 Watson: Param1 = Unknown
03/09/2007 14:04:54.015 Watson: Param2 = 0x643
03/09/2007 14:04:54.046 Watson: Param3 = Unknown
03/09/2007 14:04:54.078 Watson: Param4 = 0x652
03/09/2007 14:04:54.125 Watson: Param5 = copyengine.cpp@1378
03/09/2007 14:04:54.140 Watson: Param6 = Unknown
03/09/2007 14:04:54.171 Watson: Param7 = Redist9
03/09/2007 14:04:54.203 Watson: Param8 = @
03/09/2007 14:04:54.234 Watson: Param9 = x86
03/09/2007 14:04:54.265 Watson: Param10 = 3042

View 10 Replies View Related

Trouble With Installing SQL Server 2005 Developer Edition

Apr 14, 2006

I downloaded the 2 CD ISO Format from msdn to install SQL Server 2005 English Developer Edition on my XP SP2 box.

I currently have SQL 2000 running. So Sql Server 2005 Dev Edition is to run side by side in a named instance.

From CD1, I launched default.hta and could not install Database Services. The log mentioned could not find a 'valid copy of xxx.msi' where xxx is VSS writer, Database Services or SQL XML4 etc...

I tried 3 times and each time it damaged my SQL2000 beyond repair.

Any suggestions will be much appreciated. Thanks

View 4 Replies View Related

Trouble With Sql Server 2005 Install On Vista

Sep 5, 2007

Hi, I upgraded to Vista and then re-installed Sql Server 2005 and then installed SP2. When I choose "Connect to Server" in Management studio I have no choice for "Server Name". If I type in the computer name (which is what the local server used to be) I get a logon error, but I chose windows authentication in setup. Please help. Thanks!

View 1 Replies View Related

Trouble Installing SQL Express

Oct 19, 2006

When trying to install SQL Server 2005 Express, it hangs up on "Detecting Installed IIS". This happens if I have IIS installed, and if I do not. My computer is running XP Media Edition. I found a similar question asked by flashg on these forums, but there was no answer to the problem. There were a few other people who posted the same problem.

Is there any fix to this? I am writing software that I planned on using SQL Server Express to store its data with. But if SQL Server is going to cause problems on my customer's computers then I cannot use it.

This is the end of the log file for my SQL Server installation:

MSI (c) (00:20) [20:47:22:140]: Doing action: CheckIIS.D20239D7_E87C_40C9_9837_E70B8D4882C2
Action 20:47:22: CheckIIS.D20239D7_E87C_40C9_9837_E70B8D4882C2. Detecting Installed IIS
Action start 20:47:22: CheckIIS.D20239D7_E87C_40C9_9837_E70B8D4882C2.
MSI (c) (00:04) [20:47:22:140]: Invoking remote custom action. DLL: C:DOCUME~1KYLEOL~1LOCALS~1TempMSI1AA.tmp, Entrypoint: CheckIIS
<Func Name='LaunchFunction'>
Function=CheckIIS
MSI (c) (00!60) [20:47:22:155]: PROPERTY CHANGE: Modifying InitStatus property. Its current value is '16'. Its new value: '20'.
<Func Name='SetCAContext'>
<EndFunc Name='SetCAContext' Return='T' GetLastError='203'>
Doing Action: CheckIIS
PerfTime Start: CheckIIS : Wed Oct 18 20:47:22 2006
<Func Name='CheckIIS'>
Action 20:47:22: CheckIIS. Detecting Installed IIS
MSI (c) (00!60) [20:47:22:171]: PROPERTY CHANGE: Adding IISCHECKED property. Its value is '0'.
MSI (c) (00!60) [20:47:22:171]: PROPERTY CHANGE: Adding SqlASPNETInstalled property. Its value is '1'.
Skipping RS Feature Dependency Check
<Func Name='GetXMLAttributeValue'>
Error to find XML node /configuration/system.web/compilation
<EndFunc Name='GetXMLAttributeValue' Return='2' GetLastError='0'>
Failed to get ModuleID_RS_Server when getting the ASP Temp directory.

View 2 Replies View Related

Trouble Installing Sql Express

Nov 20, 2006

Hi,

I was trying to install visual studio 2005 and as part of it I wanted to install sql express as well. It installed the rest okay but not the sql express. Going through the log file I figured out that there was some incompatible beta version installed and hence had to be removed. In the log file I got the following error messages. Going through the forum suggestion I was trying to use msiexec /x to deinstall each of them but got the error message that "The setup has encountered an unexpected error in datastore. The action is Write_CommitFlag. The error is unable to write property into cache: flagCommit. Unable to write property into cache: "flagCommit" XmiRW Error: Failure loading xmlrw.dll CheckAllProcedures. returned 2". After this error message when I check the sql server configuration manager, I still see the old instances running.

I followed up another forum suggestion where I completely installed the old CTP and used the tool provided in the DVD(sqlbuw) to uninstall it but it only removes the one instance and leaves the rest on the system.



I will really appreciate help...



ERRRR:...

icrosoft SQL Server 2005 Setup beginning at Sun Nov 19 16:49:19 2006
Process ID : 5736
c:87450d2367f159d42610acad33156dbcsetup.exe Version: 2005.90.1399.0
Running: LoadResourcesAction at: 2006/10/19 16:49:18
Complete: LoadResourcesAction at: 2006/10/19 16:49:18, returned true
Running: ParseBootstrapOptionsAction at: 2006/10/19 16:49:18
Loaded DLL:c:87450d2367f159d42610acad33156dbcxmlrw.dll Version:2.0.3604.0
Complete: ParseBootstrapOptionsAction at: 2006/10/19 16:49:19, returned true
Running: ValidateWinNTAction at: 2006/10/19 16:49:19
Complete: ValidateWinNTAction at: 2006/10/19 16:49:19, returned true
Running: ValidateMinOSAction at: 2006/10/19 16:49:19
Complete: ValidateMinOSAction at: 2006/10/19 16:49:19, returned true
Running: PerformSCCAction at: 2006/10/19 16:49:19
Complete: PerformSCCAction at: 2006/10/19 16:49:19, returned true
Running: ActivateLoggingAction at: 2006/10/19 16:49:19
Complete: ActivateLoggingAction at: 2006/10/19 16:49:19, returned true
Delay load of action "DetectPatchedBootstrapAction" returned nothing. No action will occur as a result.
Action "LaunchPatchedBootstrapAction" will be skipped due to the following restrictions:
Condition "EventCondition: __STP_LaunchPatchedBootstrap__5736" returned false.
Running: PerformSCCAction2 at: 2006/10/19 16:49:19
Loaded DLL:C:WINDOWSsystem32msi.dll Version:3.1.4000.2435
Product "{2373A92B-1C1C-4E71-B494-5CA97F96AA19}" versioned 9.00.1116 is not compatible with current builds of SQL Server.Expected at least version: 9.00.1399.06
The Product Name is "Microsoft SQL Server 2005 CTP"
Product "{CD080F4B-BF2C-4A0E-B923-CDA7F6EAB1C9}" versioned 9.00.1116 is not compatible with current builds of SQL Server.Expected at least version: 9.00.1399.06
The Product Name is "Microsoft SQL Server 2005 CTP"
Product "{481DFF26-7C67-4085-9A27-758283EA494A}" versioned 9.00.1116 is not compatible with current builds of SQL Server.Expected at least version: 9.00.1399.06
The Product Name is "Microsoft SQL Server 2005 CTP"
Product "{982DB00A-9C4E-436B-8707-18E113BAA44C}" versioned 9.00.1116 is not compatible with current builds of SQL Server.Expected at least version: 9.00.1399.06
The Product Name is "Microsoft SQL Server 2005 Analysis Services CTP"
Product "{63A5DC0D-1EDD-4D69-8F31-87FAEB1F7084}" versioned 9.00.1116 is not compatible with current builds of SQL Server.Expected at least version: 9.00.1399.06
The Product Name is "Microsoft SQL Server 2005 Notification Services CTP"
Product "{E0A41F96-7231-4AE8-A654-EEB34F935462}" versioned 9.00.1116 is not compatible with current builds of SQL Server.Expected at least version: 9.00.1399.06
The Product Name is "Microsoft SQL Server 2005 Data Transformation Services CTP"
Product "{90032DD0-ABEE-4424-AC1E-B076BDD4E350}" versioned 9.00.1116 is not compatible with current builds of SQL Server.Expected at least version: 9.00.1399.06
The Product Name is "Microsoft SQL Server 2005 Tools CTP"
Loaded DLL:C:WINDOWSsystem32msi.dll Version:3.1.4000.2435
Error: Action "PerformSCCAction2" threw an exception during execution.
Return Code: 70032
Message displayed to user
SQL Server 2005 Setup has detected incompatible components from beta versions of Visual Studio, .NET Framework, or SQL Server 2005. Use Add or Remove Programs to remove these components, and then run SQL Server 2005 Setup again. For detailed instructions on uninstalling SQL Server 2005, see the SQL Server 2005 Readme.

Delay load of action "UploadDrWatsonLogAction" returned nothing. No action will occur as a result.
Message pump returning: 70032

View 3 Replies View Related

Trouble Installing SQL Express

Aug 17, 2006

It is not in the add and remove programs.  I did what was told and stopped all processes of SQL, I had SQL 2000 running, now I am getting:  The setup has encounted an unexpected error in datastore.  The action is Write_CommitFlag.  The error is Unable to write property into cache: "flagCommit" XmRW Error: Failure loading xmlw.dll CheckAllProcedures[] return 2, I get this when running msiexe /x {the number for the beta}

Could someone please help me, I need to have this install to take courses this weekend, Want to complete the install today, which is Friday.

 

View 1 Replies View Related

SQL Server 2005 Developer Edition Failed After Installing The Last Component

Aug 22, 2006

I am installing SQL 2005 developer edition on windows 2000. The server met all requirements for the installation. I get an €œUnexpected error occurred€? at the end of the installation right when the SQL engine installation is completed.

Looking at the error logs, on the setup0001 (core) file I get the following error: Has anyone encountered this :

Source File Name: sqlchainingsqlchainingactions.cpp
Compiler Timestamp: Thu Sep 1 22:23:05 2005
Function Name: sqls::ReportChainingResults::perform
Source Line Number: 2992

Source File Name: datastorecachedpropertycollection.cpp
Compiler Timestamp: Fri Jul 29 01:13:49 2005
Function Name: CachedPropertyCollection::findProperty
Source Line Number: 130
----------------------------------------------------------
Failed to find property "watsonFailedActionErrorCode" {"SetupStateScope", "", ""} in cache
Source File Name: datastorepropertycollection.cpp
Compiler Timestamp: Fri Jul 29 01:13:50 2005
Function Name: SetupStateScope.watsonFailedActionErrorCode
Source Line Number: 44
----------------------------------------------------------
No collector registered for scope: "SetupStateScope"
Failed to create CAB file due to datastore exception
Source File Name: datastorecachedpropertycollection.cpp
Compiler Timestamp: Fri Jul 29 01:13:49 2005
Function Name: CachedPropertyCollection::findProperty
Source Line Number: 130
----------------------------------------------------------
Failed to find property "watsonFailedActionErrorCode" {"SetupStateScope", "", ""} in cache
Source File Name: datastorepropertycollection.cpp
Compiler Timestamp: Fri Jul 29 01:13:50 2005
Function Name: SetupStateScope.watsonFailedActionErrorCode
Source Line Number: 44
----------------------------------------------------------
No collector registered for scope: "SetupStateScope"
Message pump returning: 1602

View 1 Replies View Related

Installing SQL Server Standard Edition 2005 After Installing SQL Server Express 2005

Feb 14, 2007

Hi

I have installed SQL Server Express 2005 on my machine.

I want to install SQL Server Standard Edition 2005 on my machine to check new services it has.

Can these 2 Editions coexist with each other, or any troubles you think might encounter?

Thanks

View 5 Replies View Related

Can't Install SQL Server 2005 Enterprise Edition On Vista Business Because The Component Checkboxes Are Grey

Oct 27, 2007

Hi,
Is there any one knows how to fix this, please help! This is urgent.
In the configuration checking, there was only one warning message about operation system (this warning should be ignored according to some advice). When coming to the Component checkboxes, there is only one checkboxe checkable at the last item.
Thanks!

View 6 Replies View Related

Trouble In Installing Visual Web Developer 2005 SP

Oct 4, 2007

Hi,

I'm new to SQL Server and am now learning how to operate SQL Server Express 2005.

I'm getting the following error when attempting to install Visual Web Developer 2005 SP1.

"The upgrade patch cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade patch may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade patch"

My machine runs on XP Pro SP2, .NET Framework 3.5.

Currently, what i have got on the computer are as follows
Microsoft SQL Server 2005: SQL Server Management Studio Express, SQL Server Configuration Manager.

View 4 Replies View Related

Trouble Logging In To SQL Server 2005 Express With Domain User Account

Sep 22, 2006

Hi all,

I have a SQL Server 2005 Express edition instance set up on one server, and IIS on another server.

The SQL Server process account is a domain user account, which I have added to the local groups that SQL Server created during installation (I originally used a local user account instead of domain account; however, the problem occurs with both).

SQL Server runs fine, and if I set my IIS application pool identity to a domain admin, my web app can access the database and retrieve the data necessary.

However, I have a domain user account that I want to use to run the app pool and retrieve the data. The domain user account is added to the IIS_WPG group on the web server. On the database server, I have created a login for the account, as well as added it to the db_datareader role of the database that is used for the site.

However, the user is not able to connect to the SQL Server. I get the "Login failed for user <user account>" error in ASP.NET. I also tried connecting with SQL Server Management Studio, and I get the same error. I checked and the user has connect permission to the database server.

With admin accounts, there are no problems logging in, etc.

Any pointers are appreciated,

Thanks,

SA.

Edit: I was able to find out that the State is 11 for the error. According to http://blogs.msdn.com/sql_protocols/archive/2006/02/21/536201.aspx, this indicates "Valid login but server access failure." I am not sure how to resolve this.

View 1 Replies View Related

How To Install SQL Server 2005 Express Downloaded With VS 2008 Express

May 7, 2008

Downloading and installing VS 2008 Express also created a Miscrosoft SQL Server folder.  How do I install the SQL Server 2005 Express?The following is what I found from the HELP menu bar of the VS 2008 Express.  Where can I find the sqlexpr.exe?
TIA,Jeffrey 
 
To install SQL Server Express To begin installation, double-click sqlexpr.exe. Note: SQL Server Express is available as a self-extracting executable file (sqlexpr.exe) from both the Visual Studio 2005 CD and the SQL Server Express Web site. SQLEXPR.EXE installs on x86-based computers and to the 32-bit subsystem (WOW64). For more information, see Hardware and Software Requirements (SQL Server Express)

View 1 Replies View Related

Unable To Re-install SQL Server 2005 Express And Also SQL Express Toolkit

Jul 28, 2007

Hi,


I had some issues on my server and had to uninstall .Net Framework 2.0, SQL Server 2005 Express, and SQL Express Toolkit. I installed SQL Server 2005 Express and it seemed to be ok.


Then my problems all started when I tried to install SQL Express Toolkit because I needed to install DTS Wizard again, and it errors out and wouldn't let me install it. So I uninstalled everything that's listed above again.


I then tried to install SQL Server 2005 Express again, and on the second from last screen, while its listing all the components and configuring them, I get the following error as it's configuring the last component... which was the SQL Server Database Services.


TITLE: Microsoft SQL Server 2005 Setup
-----------------------------------------------------------
The SQL Server service failed to start. For more information, see the SQL Server Books Online topics, "How to: View SQL Server 2005 Setup Log Files" and "Starting SQL Server Manually."


I tried to re-install the SQL Server Express another 7 times wth no luck.


If anyone can point me in the right direction I'd really appreciate it.


Thanks,
Bill

View 1 Replies View Related

Error While Trying To Install SQL Server Express 2005 Express Edition

Mar 8, 2008

Hi,

I'm getting an error while trying to install SQL Server Express 2005 Express Edition. I'm attaching the log of the installation process here. Please throw some light on the same.


Error 29503. The SQL Server service failed to start. For more information, see the SQL Server Books Online topics, "How to: View SQL Server 2005 Setup Log Files" and "Starting SQL Server Manually."
The error is (3) The system cannot find the path specified.

.

<Func Name='GetCAContext'>

<EndFunc Name='GetCAContext' Return='T' GetLastError='203'>

Doing Action: Do_sqlShutDownRANUInstance

PerfTime Start: Do_sqlShutDownRANUInstance : Sat Mar 08 21:39:12 2008

<Func Name='Do_sqlShutDownRANUInstance'>

Service SQLEXPRESS with parameters '' is being started at Sat Mar 08 21:39:12 2008

Unable to start service (3)

Error Code: 0x80070003 (3)
Windows Error Text: The system cannot find the path specified.

Source File Name: sqlsetuplibservice.cpp
Compiler Timestamp: Wed Jun 14 16:29:04 2006
Function Name: sqls:ervice:tart
Source Line Number: 316





---- Context -----------------------------------------------




Setting status of unmanaged components and removing unmanaged resources





Error Code: 3

MSI (s) (D0!64) [21:39:17:257]: Product: Microsoft SQL Server 2005 -- Error 29503. The SQL Server service failed to start. For more information, see the SQL Server Books Online topics, "How to: View SQL Server 2005 Setup Log Files" and "Starting SQL Server Manually."
The error is (3) The system cannot find the path specified.

.



Error 29503. The SQL Server service failed to start. For more information, see the SQL Server Books Online topics, "How to: View SQL Server 2005 Setup Log Files" and "Starting SQL Server Manually."
The error is (3) The system cannot find the path specified.

.

View 4 Replies View Related

How To Set Up SQL Server 2005 Express After Install VS 2008 Express

May 7, 2008

I installed VS 2008 Express with an option to download SQL Server 2005 Express.  I noticed there is a '90' folder under my Microsoft SQL Server folder.  I assumed this the folder for SQL Server 2005 Express. 
How do I set up my SQL Server2005 Express, so that I can use some sample databases for my VS 2008 Express?  Any difference for SQL Server 2005 Express between VS 2008 Expressdownload and SQL Server 2005 Express download?
TIA,Jeffrey 

View 3 Replies View Related

Installing SQL Server 2005 Express

Dec 8, 2006

I am working on Win2K Pro & had SQL Server 2005 Express & SQL Server Management Studio installed. The SQL Server name was MerverSQLEXPRESS. Due to some unavoidable reasons, I had to repair (& not re-install) Win2K but after doing so, I found that I am not able to connect to the database server. I uninstalled all the components related to SQL Server 2005 Express (like Management Studio, Support Files, BOL etc.) from my m/c & then restarted my m/c.

After doing so, I first re-installed SQL Server 2005 Express & other related components (I intended to install SQL Server 2005 Management Studio after installing SQL Server 2005 Express). While installing SQL Server 2005 Express, all the steps get executed successfully except for the last one which happens to be SQL Server Database Services. At this point, I get the following error:

An instance with the same name is already installed on this computer. To proceed with SQL Server Setup, provide a unique instance name.

The problem is after I click the OK button, I am not even given the option to change the instance name! The Status message corresponding to SQL Server Database Services just says Setup failed. Refer to the Setup log for details. Finally, when I click the Next button, the next dialog finishes the Setup (showing the Finish button).

Now how do I overcome this problem? Please note that the Authentication mode I am using is Windows Authentication.

Someone please suggest me a concrete solution. It's driving me nuts! My receding hairline is getting further receded!

Lastly, please note that, as far as possible, I would like to keep the instance name as MerverSQLEXPRESS only.

View 3 Replies View Related

Installing SQL Server 2005 Express

Jan 30, 2007

Hello,

I have a problem installing SQL express from a CD, it installs fine but the installation wizard does not load automatically, so I have tried to setup manually through Add and Remove programs.

But when I get pass System configuration check menu, i do not get the Registration info menu, it goes straight to SQL server express setup and then to another server express setup menu (it skips 3 menu pages) it should have MSML5 components such as SQL setup files, SQL native client, SQL VSS writer etc but it is completely empty. Then I get the finish screen.

However, when I uninstall SQL express, I see the MSML screen with all the components listed before it uninstalls.

I hope this makes sense and I hope someone can help.

Thanks.

View 1 Replies View Related

Installing Sql Server Express 2005

Sep 23, 2007

hi friends!!!

to install sql server express 2005, do i have to install the windows installer 3.0. when i run the setup, after extracting the files, there is a message displaying such that to continue installation, you need to install the windows installer 3.0.

is it so?

regards.,

sekar

View 3 Replies View Related

Installing SQL Server 2005 Express

Jun 15, 2006

Downloaded the program and followed the instructions (as vague as they are) the only thing I see to execute is the configuration tools. I am certain I have missed something. Can anyone assist?

Many thanks!!

View 3 Replies View Related

Installing SQL Server 2005 Express

Mar 17, 2007

Hello,

I'd like to install SQL Server 2005 Express.

I just want to confirm that I can just install it on top of what I already I have.

About 2 months ago, I installed Visual Studio 2005, full edition (not express).

I can't remember what I did regarding SQL... whether I installed anything or not.

On my PC at the moment, in the Control Panel ---> "add/remove programs" section, I have :-

Microsoft SQL Server 2005 Size 197,00MB
Microsoft SQL Server 2005 Mobile [ENU] Developer Tools Size 6,95MB
Microsoft SQL Server Native Client Size 4,16MB
Microsoft SQL Server Setup Support Files (English) Size 20,60MB
Microsoft SQL Server VSS Writer Size 0,66MB

From my start menu --> All Programs, the only SQL program is "Microsoft SQL Server 2005", and this just has one sub-menu to "configuration tools". I cannot see a link to any SQL server, so I don't think I have it installed.

Should I uninstall the 5 programs listed above first ? Or can I just install SQL Server 2005 Express on top of what I already have ?

Thanks for your advice.
Ian.

View 1 Replies View Related

Installing SQL Server 2005 Express Ed

Mar 7, 2006

Hi All,

I'm new to programming and I've got to develop a db for a uni project. However after downloading SQL Server 2005 express ed, I found that I could not find the command prompt to start writing scripts (black and white DOS screem). I only have the configuration tool option in my menu (within that server configuration manager, error & usage reporting and server surface area config).

How do I get started with creating my database, please help....................

I'm I not looking in the right place for the console (command prompt to run scripts) or have I not downloaded the right stuff.

I need help urgently!!!

Thanks, in advance

View 4 Replies View Related

Installing Sql Server Express 2005

Mar 2, 2008

Hi all,

I'm completely frustrated in trying to install this product, I've checke the following from the error file

MSI (s) (20:CC) [20:59:45:951]: Note: 1: 1402 2: HKEY_LOCAL_MACHINESOFTWAREMicrosoftMicrosoft SQL Server90BootstrapMSIRefCount 3: 5
MSI (s) (20:CC) [20:59:45:951]: Product: Microsoft SQL Server Setup Support Files (English) -- Error 1402. Could not open key: HKEY_LOCAL_MACHINESOFTWAREMicrosoftMicrosoft SQL Server90BootstrapMSIRefCount. System error 5. Verify that you have sufficient access to that key, or contact your support personnel.

Any advice would be GREATLY appreciated

Cheers
Norman

View 6 Replies View Related

Installing SQL Server 2005 Express Edition

Dec 3, 2006

I have Visual Web Developer 2005 Express edition and I wanted to install SQL Server 2005 Express edition.From this page, I have downloaded and installed 'Microsoft SQL
Server 2005 Express Edition' and 'Microsoft SQL
Server 2005 Express Edition with Advanced Services http://msdn.microsoft.com/vstudio/express/sql/download/After the installation, how should I access the SQL Server 2005 Express edition?Because the only thing listed in 'Start > All Programs > SQL Server 2005' is 'Configuration Tools'I was hoping that when I install SQL Server 2005 express edition, I would get all the menu that I get by installing SQL Server 2000.So after installing SQL Server 2005 Express edition, what should I be expection? Thanks

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved