Showing posts with label sp4. Show all posts
Showing posts with label sp4. Show all posts

Thursday, March 29, 2012

error when trying to delete record

Windows 2000 Server sp4, SQL Server 2000 sp3
I get the error below when attempting to delete a record from a table called
Monitor directly from Enterprise Manager GUI.
error:
[Microsoft][ODBC SQL Server Driver][SQL Server][Invalid Obje
ct Name]
'tsvw_KJDKFAJDFKJAKLFDJKLAJDFKJASKFDJKAJ
DF'
[Microsoft][ODBC SQL Server Driver][SQL Server][Invalid Obje
ct
Name]UserA.Monitor
[Microsoft][ODBC SQL Server Driver][SQL Server][Invalid Obje
ct Name]
'ctsv_DKFJDKJFKDJFKDKFJDKJFIEJIEJIEJFIEJ
FKJDKJ'
The KDJFKDJFKJDF above is obviously not exact. The actual error contains a
long string of random characters though.. If i'm not mistaken these are
system generated names for views related to replication.
1) could this be replication related?
2) Important note: UserA is NOT the current owner of the Monitor table!
UserA used to own the table but due to replication issues the owner was
changed to dbo a long time ago. ' Can I safely run the sp_changeobjectowner
procedure specifying dbo again or would I need to drop the merge replication
in order to do that?
3) I verified that the tsvw_ect... and the ctsv_ect... do not exist in the
database?
any suggestions about how to get to the bottom of this would be GREATLY
appreciated. Thanks.It seems you have some "invalid" merge triggers (probably from a previous
publication). Did you republish after changing your table owner name? If
you do have invalid triggers, you should consider dropping and recreating
your publication.
A. Drop the subscription
B. Drop the publication.
C. Delete the triggers that reference the non-existant views
D. Recreate the publication and subscription.
E. Run the snapshot.
reference:
How to manually remove a replication in SQL Server 2000 - ID: 324401
http://support.microsoft.com/?id=324401
Fany Vargas
Microsoft Corporation
This posting is provided "AS IS" with no warranties, and confers no rights.
Are you secure? For information about the Strategic Technology Protection
Program and to order your FREE Security Tool Kit, please visit
http://www.microsoft.com/security.
Microsoft highly recommends that users with Internet access update their
Microsoft software to better protect against viruses and security
vulnerabilities. The easiest way to do this is to visit the following
websites:
http://www.microsoft.com/protect
http://www.microsoft.com/security/guidance/default.mspx|||Thank you! I did not completely drop and recreate the merge replication
setup but what you said is exactly what happened. I had an issue removing
repl before due to the owner of the tables not being dbo. I had to manually
clean out repl.. change table owners to dbo.. and recreate the replication.
It looks like one of the triggers from the older repl setup was still there.
I found the old trigger and deleted it. It was obvious it was old because it
referenced the old user name. There were the 3 correct triggers on the table
as well. One each for insert, update, and delete. So what was happening was
this: there was the old delete trigger on this table and it was listed first
so it executed and failed. The correct trigger never fired then. Now that
old trigger is gone and all works fine.
thanks again.
"Fany Vargas [MSFT]" <fanyv@.online.microsoft.com> wrote in message
news:Yj9qhVuzEHA.3388@.cpmsftngxa10.phx.gbl...
> It seems you have some "invalid" merge triggers (probably from a previous
> publication). Did you republish after changing your table owner name? If
> you do have invalid triggers, you should consider dropping and recreating
> your publication.
> A. Drop the subscription
> B. Drop the publication.
> C. Delete the triggers that reference the non-existant views
> D. Recreate the publication and subscription.
> E. Run the snapshot.
>
> reference:
> How to manually remove a replication in SQL Server 2000 - ID: 324401
> http://support.microsoft.com/?id=324401
> Fany Vargas
> Microsoft Corporation
> This posting is provided "AS IS" with no warranties, and confers no
rights.
> Are you secure? For information about the Strategic Technology Protection
> Program and to order your FREE Security Tool Kit, please visit
> http://www.microsoft.com/security.
> Microsoft highly recommends that users with Internet access update their
> Microsoft software to better protect against viruses and security
> vulnerabilities. The easiest way to do this is to visit the following
> websites:
> http://www.microsoft.com/protect
> http://www.microsoft.com/security/guidance/default.mspx
>

error when trying to delete record

Windows 2000 Server sp4, SQL Server 2000 sp3
I get the error below when attempting to delete a record from a table called
Monitor directly from Enterprise Manager GUI.
error:
[Microsoft][ODBC SQL Server Driver][SQL Server][Invalid Object Name]
'tsvw_KJDKFAJDFKJAKLFDJKLAJDFKJASKFDJKAJDF'
[Microsoft][ODBC SQL Server Driver][SQL Server][Invalid Object
Name]UserA.Monitor
[Microsoft][ODBC SQL Server Driver][SQL Server][Invalid Object Name]
'ctsv_DKFJDKJFKDJFKDKFJDKJFIEJIEJIEJFIEJFKJDKJ'
The KDJFKDJFKJDF above is obviously not exact. The actual error contains a
long string of random characters though.. If i'm not mistaken these are
system generated names for views related to replication.
1) could this be replication related?
2) Important note: UserA is NOT the current owner of the Monitor table!
UserA used to own the table but due to replication issues the owner was
changed to dbo a long time ago. ? Can I safely run the sp_changeobjectowner
procedure specifying dbo again or would I need to drop the merge replication
in order to do that?
3) I verified that the tsvw_ect... and the ctsv_ect... do not exist in the
database?
any suggestions about how to get to the bottom of this would be GREATLY
appreciated. Thanks.
It seems you have some "invalid" merge triggers (probably from a previous
publication). Did you republish after changing your table owner name? If
you do have invalid triggers, you should consider dropping and recreating
your publication.
A. Drop the subscription
B. Drop the publication.
C. Delete the triggers that reference the non-existant views
D. Recreate the publication and subscription.
E. Run the snapshot.
reference:
How to manually remove a replication in SQL Server 2000 - ID: 324401
http://support.microsoft.com/?id=324401
Fany Vargas
Microsoft Corporation
This posting is provided "AS IS" with no warranties, and confers no rights.
Are you secure? For information about the Strategic Technology Protection
Program and to order your FREE Security Tool Kit, please visit
http://www.microsoft.com/security.
Microsoft highly recommends that users with Internet access update their
Microsoft software to better protect against viruses and security
vulnerabilities. The easiest way to do this is to visit the following
websites:
http://www.microsoft.com/protect
http://www.microsoft.com/security/guidance/default.mspx
|||Thank you! I did not completely drop and recreate the merge replication
setup but what you said is exactly what happened. I had an issue removing
repl before due to the owner of the tables not being dbo. I had to manually
clean out repl.. change table owners to dbo.. and recreate the replication.
It looks like one of the triggers from the older repl setup was still there.
I found the old trigger and deleted it. It was obvious it was old because it
referenced the old user name. There were the 3 correct triggers on the table
as well. One each for insert, update, and delete. So what was happening was
this: there was the old delete trigger on this table and it was listed first
so it executed and failed. The correct trigger never fired then. Now that
old trigger is gone and all works fine.
thanks again.
"Fany Vargas [MSFT]" <fanyv@.online.microsoft.com> wrote in message
news:Yj9qhVuzEHA.3388@.cpmsftngxa10.phx.gbl...
> It seems you have some "invalid" merge triggers (probably from a previous
> publication). Did you republish after changing your table owner name? If
> you do have invalid triggers, you should consider dropping and recreating
> your publication.
> A. Drop the subscription
> B. Drop the publication.
> C. Delete the triggers that reference the non-existant views
> D. Recreate the publication and subscription.
> E. Run the snapshot.
>
> reference:
> How to manually remove a replication in SQL Server 2000 - ID: 324401
> http://support.microsoft.com/?id=324401
> Fany Vargas
> Microsoft Corporation
> This posting is provided "AS IS" with no warranties, and confers no
rights.
> Are you secure? For information about the Strategic Technology Protection
> Program and to order your FREE Security Tool Kit, please visit
> http://www.microsoft.com/security.
> Microsoft highly recommends that users with Internet access update their
> Microsoft software to better protect against viruses and security
> vulnerabilities. The easiest way to do this is to visit the following
> websites:
> http://www.microsoft.com/protect
> http://www.microsoft.com/security/guidance/default.mspx
>

error when trying to delete record

Windows 2000 Server sp4, SQL Server 2000 sp3
I get the error below when attempting to delete a record from a table called
Monitor directly from Enterprise Manager GUI.
error:
[Microsoft][ODBC SQL Server Driver][SQL Server][Invalid Object Name]
'tsvw_KJDKFAJDFKJAKLFDJKLAJDFKJASKFDJKAJDF'
[Microsoft][ODBC SQL Server Driver][SQL Server][Invalid Object
Name]UserA.Monitor
[Microsoft][ODBC SQL Server Driver][SQL Server][Invalid Object Name]
'ctsv_DKFJDKJFKDJFKDKFJDKJFIEJIEJIEJFIEJFKJDKJ'
The KDJFKDJFKJDF above is obviously not exact. The actual error contains a
long string of random characters though.. If i'm not mistaken these are
system generated names for views related to replication.
1) could this be replication related?
2) Important note: UserA is NOT the current owner of the Monitor table!
UserA used to own the table but due to replication issues the owner was
changed to dbo a long time ago. ' Can I safely run the sp_changeobjectowner
procedure specifying dbo again or would I need to drop the merge replication
in order to do that?
3) I verified that the tsvw_ect... and the ctsv_ect... do not exist in the
database?
any suggestions about how to get to the bottom of this would be GREATLY
appreciated. Thanks.It seems you have some "invalid" merge triggers (probably from a previous
publication). Did you republish after changing your table owner name? If
you do have invalid triggers, you should consider dropping and recreating
your publication.
A. Drop the subscription
B. Drop the publication.
C. Delete the triggers that reference the non-existant views
D. Recreate the publication and subscription.
E. Run the snapshot.
reference:
How to manually remove a replication in SQL Server 2000 - ID: 324401
http://support.microsoft.com/?id=324401
Fany Vargas
Microsoft Corporation
This posting is provided "AS IS" with no warranties, and confers no rights.
Are you secure? For information about the Strategic Technology Protection
Program and to order your FREE Security Tool Kit, please visit
http://www.microsoft.com/security.
Microsoft highly recommends that users with Internet access update their
Microsoft software to better protect against viruses and security
vulnerabilities. The easiest way to do this is to visit the following
websites:
http://www.microsoft.com/protect
http://www.microsoft.com/security/guidance/default.mspx|||Thank you! I did not completely drop and recreate the merge replication
setup but what you said is exactly what happened. I had an issue removing
repl before due to the owner of the tables not being dbo. I had to manually
clean out repl.. change table owners to dbo.. and recreate the replication.
It looks like one of the triggers from the older repl setup was still there.
I found the old trigger and deleted it. It was obvious it was old because it
referenced the old user name. There were the 3 correct triggers on the table
as well. One each for insert, update, and delete. So what was happening was
this: there was the old delete trigger on this table and it was listed first
so it executed and failed. The correct trigger never fired then. Now that
old trigger is gone and all works fine.
thanks again.
"Fany Vargas [MSFT]" <fanyv@.online.microsoft.com> wrote in message
news:Yj9qhVuzEHA.3388@.cpmsftngxa10.phx.gbl...
> It seems you have some "invalid" merge triggers (probably from a previous
> publication). Did you republish after changing your table owner name? If
> you do have invalid triggers, you should consider dropping and recreating
> your publication.
> A. Drop the subscription
> B. Drop the publication.
> C. Delete the triggers that reference the non-existant views
> D. Recreate the publication and subscription.
> E. Run the snapshot.
>
> reference:
> How to manually remove a replication in SQL Server 2000 - ID: 324401
> http://support.microsoft.com/?id=324401
> Fany Vargas
> Microsoft Corporation
> This posting is provided "AS IS" with no warranties, and confers no
rights.
> Are you secure? For information about the Strategic Technology Protection
> Program and to order your FREE Security Tool Kit, please visit
> http://www.microsoft.com/security.
> Microsoft highly recommends that users with Internet access update their
> Microsoft software to better protect against viruses and security
> vulnerabilities. The easiest way to do this is to visit the following
> websites:
> http://www.microsoft.com/protect
> http://www.microsoft.com/security/guidance/default.mspx
>

Wednesday, March 7, 2012

Error using RDO query object with SQL Server 7.0

While using RDO(msrdo20.dll) query object to create a temporary table in SQL
Server 7.0(with SP4), I am gettng the error:
Code '40002': Error: S0001: :[Microsoft][ODBC SQL Server Driver][SQL Server]
There is already an object name '#<name of temporary table>' in the database.
Please help me to resolve this.
Thanks.Temporary objects persist until they go out of scope or are explicitly
dropped. If you are in the midst of development, you probably have a
pre-existing creation of the object on your current connection that you have
yet reseted nor have you explicitly dropped the table.
Sincerely,
Anthony Thomas
"ak3010" <ak3010@.discussions.microsoft.com> wrote in message
news:FD8956BA-5547-402C-88E5-2981F0A1860B@.microsoft.com...
While using RDO(msrdo20.dll) query object to create a temporary table in SQL
Server 7.0(with SP4), I am gettng the error:
Code '40002': Error: S0001: :[Microsoft][ODBC SQL Server Driver][SQL Server]
There is already an object name '#<name of temporary table>' in the
database.
Please help me to resolve this.
Thanks.|||While using RDO(msrdo20.dll) query object to create a temporary table in SQL
Server 7.0(with SP4), I am gettng the error:
Error: 40002: :[Microsoft][ODBC SQL Server Driver][SQL Server]
The cursor was not declared
From http://www.google.co.in/search?q=40002+++msrdo20.dll&hl=en&start=10&sa=
Posted via DevelopmentNow.com Group
http://www.developmentnow.com

Error using RDO query object with SQL Server 7.0

While using RDO(msrdo20.dll) query object to create a temporary table in SQL
Server 7.0(with SP4), I am gettng the error:
Code '40002': Error: S0001: :[Microsoft][ODBC SQL Server Driver][
;SQL Server]
There is already an object name '#<name of temporary table>' in the database
.
Please help me to resolve this.
Thanks.Temporary objects persist until they go out of scope or are explicitly
dropped. If you are in the midst of development, you probably have a
pre-existing creation of the object on your current connection that you have
yet reseted nor have you explicitly dropped the table.
Sincerely,
Anthony Thomas
"ak3010" <ak3010@.discussions.microsoft.com> wrote in message
news:FD8956BA-5547-402C-88E5-2981F0A1860B@.microsoft.com...
While using RDO(msrdo20.dll) query object to create a temporary table in SQL
Server 7.0(with SP4), I am gettng the error:
Code '40002': Error: S0001: :[Microsoft][ODBC SQL Server Driver][
;SQL Server]
There is already an object name '#<name of temporary table>' in the
database.
Please help me to resolve this.
Thanks.|||While using RDO(msrdo20.dll) query object to create a temporary table in SQL
Server 7.0(with SP4), I am gettng the error:
Error: 40002: :[Microsoft][ODBC SQL Server Driver][SQL Server]
The cursor was not declared
From http://www.google.co.in/search?q=40...elopmentnow.com

Error using RDO query object with SQL Server 7.0

While using RDO(msrdo20.dll) query object to create a temporary table in SQL
Server 7.0(with SP4), I am gettng the error:
Code '40002': Error: S0001: :[Microsoft][ODBC SQL Server Driver][SQL Server]
There is already an object name '#<name of temporary table>' in the database.
Please help me to resolve this.
Thanks.
Temporary objects persist until they go out of scope or are explicitly
dropped. If you are in the midst of development, you probably have a
pre-existing creation of the object on your current connection that you have
yet reseted nor have you explicitly dropped the table.
Sincerely,
Anthony Thomas

"ak3010" <ak3010@.discussions.microsoft.com> wrote in message
news:FD8956BA-5547-402C-88E5-2981F0A1860B@.microsoft.com...
While using RDO(msrdo20.dll) query object to create a temporary table in SQL
Server 7.0(with SP4), I am gettng the error:
Code '40002': Error: S0001: :[Microsoft][ODBC SQL Server Driver][SQL Server]
There is already an object name '#<name of temporary table>' in the
database.
Please help me to resolve this.
Thanks.
|||While using RDO(msrdo20.dll) query object to create a temporary table in SQL
Server 7.0(with SP4), I am gettng the error:
Error: 40002: :[Microsoft][ODBC SQL Server Driver][SQL Server]
The cursor was not declared
From http://www.google.co.in/search?q=40002+++msrdo20.dll&hl=en&start=10&sa=N
Posted via DevelopmentNow.com Groups
http://www.developmentnow.com

Friday, February 17, 2012

Error Shapshot Pull (Subscriber)

Hello,
I have two server both running SQL 7 SP4 on W2K server SP 4. One SQL server is both the distributor and publishwer and the other one is the subscriber. I published one database on the server (replication type = shapshot) and there were no problems when ru
nning the jobs that this task creates. But when running the pull job on the subscriber, I get the following error:
Could not drop object 'ACCION' because it is referenced by a FOREIGN KEY constraint.
I don't know why this job attemps to drop the table ACCION when all it's supposed to do is to refresh the data. Or is the way it works?
Any help
Regards
Hi,
I was trying to replicate the error that you are facing.
I was able to replicate the error.
What I understand is, if you modify the relationship at the publisher and
after that when the agent tries to apply the changes to the subscriber, it
throws this error.
HTH
Ashish
This posting is provided "AS IS" with no warranties, and confers no rights.

Wednesday, February 15, 2012

Error running script: 80sp4-tools.sql installing sql 2000 SP4

Hello there,

I hope someone can help me with an annoying failure.

While installing sp4, the last running script is going very wrong.

"Error running script: 80sp4-tools.sql"

in the sqlsp.log, there is only an item with Process Exit Code: (1) after 80sp4-tools.sql

this is the log file.

14:15:05 Begin Setup
14:15:05 Version on Media: 8.00.2039
14:15:05 Mode = Normal
14:15:05 ModeType = NORMAL
14:15:06 Loading library - sqlsut.dll (#L1)
14:15:06 Begin: SetupInitialize()
14:15:06 End: SetupInitialize()
14:15:06 Begin: CheckFixedRequirements()
14:15:06 Platform ID: 0xf000
14:15:06 Version: 5.2.3790
14:15:06 File Version - C:\WINDOWS\system32\shdocvw.dll: 6.0.3790.2858
14:15:06 End: CheckFixedRequirements()
14:15:06 Begin Action: CheckRequirements
14:15:06 Processor Architecture: x86 (Pentium)
14:15:06 Service Pack: 256
14:15:06 ComputerName: SERVER01
14:15:06 User Name: administrator
14:15:06 IsAllAccessAllowed returned: 1
14:15:06 OS Language: 0x409
14:15:06 End Action CheckRequirements
14:15:06 CreateSetupTopology(SERVER01), Handle : 0x14d46c8, returned : 0
14:15:06 CreateSetupTopology returned : 0, Handle : 0x14d46c8
14:15:06 Topology Type : 1, Return Value : 0
14:15:06 ST_GetPhysicalNode returned : 0, PNHandle : 0x14d4708
14:15:06 PN_EnumerateEx returned : 0
14:15:06 PN_GetSQLStates returned : 0, SqlStates : 0x88020024
14:15:06 PN_StartScan [0x14d4708] returned : 0
14:15:06 PN_GetNext [0x14d4708] returned : 0, Handle: [0x14d55c0]
14:15:06 SQLI_GetPackageId [0x14d55c0] returned : 0, PackageId = 0x2
14:15:06 SQLI_GetVersion [0x14d55c0] returned : 0, Version = 8.00.194
14:15:06 PN_GetNext [0x14d4708] returned : 0, Handle: [0x14d5f48]
14:15:06 PN_GetNext [0x14d4708] returned : 0, Handle: [0x14d6878]
14:15:06 PN_GetNext [0x14d4708] returned : 0, Handle: [0x14d7180]
14:15:06 PN_GetNext [0x14d4708] returned : 18, Handle: [0x0]
14:15:06 ReleaseSetupTopology
14:15:06 This combination of Package and Operating System allows a full product install.
14:15:06 Begin: SetupInstall()
14:15:06 Reading Software\Microsoft\Windows\CurrentVersion\CommonFilesDir ...
14:15:06 CommonFilesDir=C:\Program Files\Common Files
14:15:06 Windows Directory=C:\WINDOWS\
14:15:06 Program Files=C:\Program Files\
14:15:06 TEMPDIR=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\
14:15:06 End: SetupInstall()
14:15:06 Begin: ShowDialogs()
14:15:06 Initial Dialog Mask: 0x8300037, Disable Back=0x1
14:15:06 Begin Action ShowDialogsHlpr: 0x1
14:15:06 Begin Action: DialogShowSdWelcome
14:15:07 End Action DialogShowSdWelcome
14:15:07 Dialog 0x1 returned: 1
14:15:07 End Action ShowDialogsHlpr
14:15:07 ShowDialogsGetDialog returned: nCurrent=0x2,index=1
14:15:07 Begin Action ShowDialogsHlpr: 0x2
14:15:07 Begin Action: DialogShowSdMachineName
14:15:07 ShowDlgMachine returned: 1
14:15:07 Name = SERVER01, Type = 0x1
14:15:07 End Action DialogShowSdMachineName
14:15:07 begin ShowDialogsUpdateMask
14:15:07 nFullMask = 0x8300037, nCurrent = 0x2, nDirection = 0
14:15:07 Updated Dialog Mask: 0xbf00035, Disable Back = 0x1
14:15:07 Dialog 0x2 returned: 0
14:15:07 End Action ShowDialogsHlpr
14:15:07 ShowDialogsGetDialog returned: nCurrent=0x4,index=2
14:15:07 Begin Action ShowDialogsHlpr: 0x4
14:15:07 Begin Action: DialogShowSdInstallMode
14:15:07 ShowDlgInstallMode returned: 1
14:15:07 InstallMode : 0x2
14:15:07 End Action DialogShowSdInstallMode
14:15:07 begin ShowDialogsUpdateMask
14:15:07 nFullMask = 0xbf00035, nCurrent = 0x4, nDirection = 1
14:15:07 Updated Dialog Mask: 0xb000627, Disable Back = 0x1
14:15:07 Dialog 0x4 returned: 1
14:15:07 End Action ShowDialogsHlpr
14:15:07 ShowDialogsGetDialog returned: nCurrent=0x20,index=5
14:15:07 Begin Action ShowDialogsHlpr: 0x20
14:15:07 Begin Action: DialogShowSdLicense
14:15:08 End Action DialogShowSdLicense
14:15:08 Dialog 0x20 returned: 1
14:15:08 End Action ShowDialogsHlpr
14:15:08 ShowDialogsGetDialog returned: nCurrent=0x200,index=9
14:15:08 Begin Action ShowDialogsHlpr: 0x200
14:15:08 Begin Action: DialogShowSdInstanceName
14:15:08 Begin Action: ShowDlgInstanceName
14:15:09 This machine has SQL Server 2000 SP3 already installed
14:15:09 Version of installed Service Pack: 8.00.761
14:15:09 The language on the CD is 1033 and installed is 1033
14:15:09 End Action : Verify Language
14:15:09 SKU is : Standard Edition
14:15:09 End Action: ShowDlgInstanceName
14:15:09 ShowDlgInstanceName returned : 0
14:15:09 InstanceName : INSTNAME
14:15:09 End Action DialogShowSdInstanceName
14:15:09 begin ShowDialogsUpdateMask
14:15:09 nFullMask = 0xb000627, nCurrent = 0x200, nDirection = 0
14:15:09 Updated Dialog Mask: 0xbc00627, Disable Back = 0x1
14:15:09 Dialog 0x200 returned: 0
14:15:09 End Action ShowDialogsHlpr
14:15:09 ShowDialogsGetDialog returned: nCurrent=0x400,index=10
14:15:09 Begin Action ShowDialogsHlpr: 0x400
14:15:09 Begin Action: DialogShowSdMaintain
14:15:09 ShowDlgMaintainInstall returned : 1
14:15:09 Type : 0xc
14:15:09 CreateSetupTopology(SERVER01), Handle : 0x14d5f08, returned : 0
14:15:09 CreateSetupTopology returned : 0, Handle : 0x14d5f08
14:15:09 Topology Type : 1, Return Value : 0
14:15:09 ST_GetPhysicalNode returned : 0, PNHandle : 0x14d46c8
14:15:09 PN_EnumerateEx returned : 0
14:15:09 PN_GetSQLStates returned : 0, SqlStates : 0x88020024
14:15:09 PN_GetInstance for INSTNAME [0x14d46c8] returned : 0
14:15:09 SQLI_GetPackageId [0x14d55c0] returned : 0, PackageId = 0x2
14:15:09 SQLI_GetVersion [0x14d55c0] returned : 0, Version = 8.00.194
14:15:09 SQLI_GetSQLStates for INSTNAME [0x14d55c0] returned : 0, SQLStates: 0xc20804
14:15:09 SQLI_GetInstallPath [0x14d55c0] returned : 0, Path = C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME
14:15:09 SQLI_GetDataPath [0x14d55c0] returned : 0, DataPath = C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME
14:15:09 SQLI_GetVersion [0x14d55c0] returned : 0, Version = 8.00.194
14:15:09 SQLI_GetRegKeyRoot [0x14d55c0] returned : 0, RegKeyRoot = Software\Microsoft\Microsoft SQL Server\INSTNAME
14:15:09 SQLI_GetPackageName [0x14d55c0] returned : 0, szPackage = Standard Edition
14:15:09 SQLI_GetPackageId [0x14d55c0] returned : 0, PackageId = 0x2
14:15:09 Previous Install Path: C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME
14:15:09 Previous Install Data: C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME
14:15:09 Previous Install Version: 8.00.194
14:15:09 ReleaseSetupTopology
14:15:09 End Action DialogShowSdMaintain
14:15:09 begin ShowDialogsUpdateMask
14:15:09 nFullMask = 0xbc00627, nCurrent = 0x400, nDirection = 1
14:15:09 Updated Dialog Mask: 0xb002627, Disable Back = 0x1
14:15:09 Dialog 0x400 returned: 1
14:15:10 End Action ShowDialogsHlpr
14:15:10 ShowDialogsGetDialog returned: nCurrent=0x2000,index=13
14:15:10 Begin Action ShowDialogsHlpr: 0x2000
14:15:10 Begin Action: DialogShowSdUpgrade
14:15:10 ShowDlgUpgrade returned : 1
14:15:10 Checking databases on instance 'INSTNAME'
14:15:10 Authenticate access
14:15:10 Begin SDPassword Dialog
14:15:13 End SDPassword Dialog
14:15:13 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Service MSSQL$INSTNAME
14:15:13 Process Exit Code: (0)
14:15:13 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 1 -Service MSSQL$INSTNAME -StartupOptions \-T4022
14:16:03 Process Exit Code: (0)
14:16:03 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -n -d master -Q "exit" -o "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\sqlsp.out" -Usa -P"
14:16:04 Process Exit Code: (0)
14:16:04 Begin: CheckSAPassword
14:16:04 Begin: LogOnUsingBlankSA
14:16:04 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -n -d master -o "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\sqlsp.out" -Q"Exit(declare @.ret int if (select count(*) from master..syslogins where name='sa' AND ( (1 = pwdcompare(N'', password)) OR password IS NULL )) = 0 Set @.ret=0 else Set @.ret=9000 Select @.ret)" -Usa -P"
14:16:04 Process Exit Code: (0)
14:16:04 End: LogOnUsingBlankSA
14:16:04 Begin: SdBlankPwd
14:16:04 End: SdBlankPwd
14:16:04 End: CheckSAPassword
14:16:04 Begin : SdErrorReportingDlg
14:16:14 End: SdErrorReportingDlg
14:16:14 Access authenticated
14:16:14 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -n -b -d master -o "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\~sqldb0.txt" -i "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\dbverify.sql" -Usa -P"
14:16:37 Process Exit Code: (0)
14:16:37 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Service MSSQL$INSTNAME
14:17:17 Process Exit Code: (0)
14:17:17 Setup Type: Custom (303)
14:17:18 Processing: SQLProg
14:17:18 Processing: SQLProg\SQLServr
14:17:18 Processing: SQLProg\UpgTools
14:17:18 Processing: SQLProg\ReplSupp
14:17:18 Processing: SQLProg\Install
14:17:18 Processing: SQLProg\System
14:17:18 Processing: SQLProg\SvrExt
14:17:18 Processing: SQLProg\Dat
14:17:18 Processing: SQLProg\DatSmpl
14:17:18 Processing: SQLProg\BaseSys
14:17:18 Processing: SQLProg\BaseBinn
14:17:18 Processing: SQLProg\MSSearch
14:17:18 Processing: SQLProg\BaseInst
14:17:18 Processing: SQLProg\UI
14:17:18 Processing: SQLProg\Symbols
14:17:18 Processing: SQLProg\Perfmon
14:17:18 Processing: SQLProg\Root
14:17:18 Processing: SQLProg\EXE
14:17:18 Processing: SQLProg\DLL
14:17:18 Processing: MgtTool
14:17:18 Processing: MgtTool\SEM
14:17:18 Processing: MgtTool\Profiler
14:17:18 Processing: MgtTool\Qryanlz
14:17:18 Processing: MgtTool\DTCCLi
14:17:18 Processing: MgtTool\Wzcnflct
14:17:18 Processing: MgtTool\UtilSys
14:17:18 Processing: MgtTool\UtilBinn
14:17:18 Processing: Connect
14:17:18 Processing: Connect\ConnSys
14:17:18 Processing: Books
14:17:18 Processing: Books\Bookso
14:17:18 Processing: DevTools
14:17:18 Processing: DevTools\Headers and Libraries
14:17:18 Processing: DevTools\MDAC SDKs
14:17:18 Processing: DevTools\VDI
14:17:18 Processing: DevTools\Dbg Int
14:17:18 Processing: Samples
14:17:18 Processing: Samples\ADO
14:17:18 Processing: Samples\DBLIB
14:17:18 Processing: Samples\Desktop
14:17:18 Processing: Samples\DTS
14:17:18 Processing: Samples\ESQLC
14:17:18 Processing: Samples\Misc
14:17:18 Processing: Samples\MSDTC
14:17:18 Processing: Samples\ODBC
14:17:18 Processing: Samples\ODS
14:17:18 Processing: Samples\OLEAut
14:17:18 Processing: Samples\Repl
14:17:18 Processing: Samples\SilverstoneDB
14:17:18 Processing: Samples\SQLDMO
14:17:18 Processing: Samples\SQLNS
14:17:18 Processing: Samples\Utils
14:17:18 Processing: Samples\XML
14:17:18 Processing: CoreRepl
14:17:18 Processing: CoreRepl\Res1033
14:17:18 Processing: CoreRepl\ResIntl
14:17:18 Processing: Core
14:17:18 Processing: Core\Res1033
14:17:18 Processing: Core\ResOther
14:17:18 Processing: Repostry
14:17:18 Processing: Repostry\RepstSys
14:17:18 Processing: Repostry\Res1033
14:17:18 Processing: Repostry\ResIntl
14:17:18 Processing: CoreMisc
14:17:18 Processing: CoreMisc\ActiveX
14:17:18 Processing: CoreMisc\Res1033
14:17:18 Processing: Monarch
14:17:18 Processing: Monarch\Monr1033
14:17:18 Processing: Monarch\MonrIntl
14:17:18 Processing: Jet
14:17:18 Processing: CoreInst
14:17:18 Processing: CoreCOM
14:17:18 Processing: CoreCOM\Res1033
14:17:18 Processing: CoreCOM\ResIntl
14:17:18 Processing: CoreTool
14:17:18 Processing: CoreTool\Res1033
14:17:18 Processing: CoreTool\ResOther
14:17:18 Processing: DBLibCli
14:17:18 Processing: SFExt
14:17:18 Processing: SFExt\ActiveX
14:17:18 Processing: SFExt\Res1033
14:17:18 Processing: SFExt\ResIntl
14:17:18 Processing: Trace
14:17:18 Processing: Trace\Res1033
14:17:18 Processing: Trace\ResOther
14:17:18 Processing: CnctBinn
14:17:18 Processing: MiscCore
14:17:18 Processing: MC
14:17:18 Processing: MC\MC1033
14:17:18 Processing: MC\MCIntl
14:17:18 Processing: MC\Help
14:17:18 Processing: UI
14:17:18 Processing: UI\UIHlp
14:17:18 Processing: UI\UI1033
14:17:18 Processing: UI\UIIntl
14:17:18 Processing: ClstSys
14:17:18 Processing: SQLMgr
14:17:18 Processing: SQLMgr\Res1033
14:17:18 Processing: SQLMgr\ResIntl
14:17:18 Processing: SvrTool
14:17:18 Processing: SvrTool\Res1033
14:17:18 Processing: SvrTool\ResIntl
14:17:18 Processing: DTSUI
14:17:18 Processing: DTSUI\Res1033
14:17:18 Processing: DTSUI\ResIntl
14:17:18 Processing: ClFTSys
14:17:18 Processing: ClFtdata
14:17:18 Processing: MSOlap
14:17:18 Processing: MSOlap\Res1033
14:17:18 Processing: MSOlap\ResIntl
14:17:18 Processing: ATL
14:17:18 Processing: ATL\winnt
14:17:18 Processing: ATL\win9x
14:17:18 Processing: MFC42U
14:17:18 Processing: VC
14:17:18 Processing: VB
14:17:18 Processing: OCX1
14:17:18 Processing: SQLAdHlp
14:17:18 Processing: SQLAdHlp\Res1033
14:17:18 Processing: SQLAdHlp\ResOther
14:17:18 Setup type: Custom
14:17:18 End Action DialogShowSdUpgrade
14:17:18 begin ShowDialogsUpdateMask
14:17:18 nFullMask = 0xb002627, nCurrent = 0x2000, nDirection = 1
14:17:18 Updated Dialog Mask: 0xb002627, Disable Back = 0x1
14:17:18 Dialog 0x2000 returned: 1
14:17:18 End Action ShowDialogsHlpr
14:17:18 ShowDialogsGetDialog returned: nCurrent=0x1000000,index=24
14:17:18 Begin Action ShowDialogsHlpr: 0x1000000
14:17:18 Begin Action: DlgCollation
14:17:18 ShowDlgCollation returned: 1
14:17:18 collation_name = SQL_Latin1_General_CP1_CI_AS,locale_name = Latin1_General,lcid = 0x409,SortId = 52,dwCompFlags = 0x30001
14:17:18 End Action DlgCollation
14:17:18 begin ShowDialogsUpdateMask
14:17:18 nFullMask = 0xb002627, nCurrent = 0x1000000, nDirection = 1
14:17:18 Updated Dialog Mask: 0xb002627, Disable Back = 0x1
14:17:18 Dialog 0x1000000 returned: 1
14:17:18 End Action ShowDialogsHlpr
14:17:18 ShowDialogsGetDialog returned: nCurrent=0x2000000,index=25
14:17:18 Begin Action ShowDialogsHlpr: 0x2000000
14:17:18 Begin Action: DlgNetwork
14:17:18 ShowDlgNetwork returned: 1
14:17:18 [DlgServerNetwork]
14:17:18 NetworkLibs = 255
14:17:18 TCPPort = 0
14:17:18 TCPPrxy = Default
14:17:18 NMPPipeName = \\.\pipe\MSSQL$INSTNAME\sql\query
14:17:18 Result = 1
14:17:18 End Action DlgNetwork
14:17:18 begin ShowDialogsUpdateMask
14:17:18 nFullMask = 0xb002627, nCurrent = 0x2000000, nDirection = 1
14:17:18 Updated Dialog Mask: 0xb002627, Disable Back = 0x1
14:17:18 Dialog 0x2000000 returned: 1
14:17:18 End Action ShowDialogsHlpr
14:17:18 ShowDialogsGetDialog returned: nCurrent=0x8000000,index=27
14:17:18 Begin Action ShowDialogsHlpr: 0x8000000
14:17:18 Begin Action: DialogShowSdStartCopy
14:17:34 End Action DialogShowSdStartCopy
14:17:34 begin ShowDialogsUpdateMask
14:17:34 nFullMask = 0xb002627, nCurrent = 0x8000000, nDirection = 1
14:17:34 Updated Dialog Mask: 0xb002627, Disable Back = 0x1
14:17:34 Dialog 0x8000000 returned: 1
14:17:34 End Action ShowDialogsHlpr
14:17:34 ShowDialogsGetDialog returned: nCurrent=0x0,index=0
14:17:34 End: ShowDialogs()
14:17:34 Initializing Event Log
14:17:34 Begin Action : LogEvent
14:17:34 End Action : LogEvent
14:17:34 Begin: ProcessBeforeDataMove()
14:17:35 DeinstallStart returned (C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME): 0
14:17:35 End: ProcessBeforeDataMove()
14:17:35 Begin: SetToolsComponentSelection()
14:17:35 CreateSetupTopology(SERVER01), Handle : 0x14d5ee8, returned : 0
14:17:35 CreateSetupTopology returned : 0, Handle : 0x14d5ee8
14:17:35 Topology Type : 1, Return Value : 0
14:17:35 ST_GetPhysicalNode returned : 0, PNHandle : 0x14d46c8
14:17:35 PN_EnumerateEx returned : 0
14:17:35 PN_GetSQLStates returned : 0, SqlStates : 0x88020024
14:17:35 PN_StartScan [0x14d46c8] returned : 0
14:17:35 PN_GetNext [0x14d46c8] returned : 18, Handle: [0x0]
14:17:35 No more items in enumeration.
14:17:35 ReleaseSetupTopology
14:17:35 End: SetToolsComponentSelection()
14:17:35 Begin: ProcessComponentSelection()
14:17:35 End: ProcessComponentSelection()
14:17:35 Begin: LogSelectedComponents()
14:17:35 Processing: SQLProg
14:17:35 Selected: SQLProg
14:17:35 Processing: SQLProg\SQLServr
14:17:35 Selected: SQLProg\SQLServr
14:17:35 Processing: SQLProg\SQLServr\Help
14:17:35 Selected: SQLProg\SQLServr\Help
14:17:35 Processing: SQLProg\SQLServr\SCMDev
14:17:35 Selected: SQLProg\SQLServr\SCMDev
14:17:35 Processing: SQLProg\SQLServr\SCMDev\SCMh
14:17:35 Selected: SQLProg\SQLServr\SCMDev\SCMh
14:17:35 Processing: SQLProg\SQLServr\SCMDev\SCMX86Lb
14:17:35 Selected: SQLProg\SQLServr\SCMDev\SCMX86Lb
14:17:35 Processing: SQLProg\SQLServr\SCMDev\SCMALb
14:17:35 Selected: SQLProg\SQLServr\SCMDev\SCMALb
14:17:35 Processing: SQLProg\SQLServr\Rs1033
14:17:35 Selected: SQLProg\SQLServr\Rs1033
14:17:35 Processing: SQLProg\SQLServr\RsIntl
14:17:35 Selected: SQLProg\SQLServr\RsIntl
14:17:35 Processing: SQLProg\SQLServr\ActiveX
14:17:35 Selected: SQLProg\SQLServr\ActiveX
14:17:35 Processing: SQLProg\SQLServr\System
14:17:35 Selected: SQLProg\SQLServr\System
14:17:35 Processing: SQLProg\SQLServr\Watson
14:17:35 Selected: SQLProg\SQLServr\Watson
14:17:35 Processing: SQLProg\SQLServr\Watson\Watson1033
14:17:35 Selected: SQLProg\SQLServr\Watson\Watson1033
14:17:35 Processing: SQLProg\SQLServr\Watson\WatsonOther
14:17:35 Selected: SQLProg\SQLServr\Watson\WatsonOther
14:17:35 Processing: SQLProg\SQLServr\MSXMLSQL
14:17:35 Selected: SQLProg\SQLServr\MSXMLSQL
14:17:35 Processing: SQLProg\SQLServr\MSXMLSQL\Res1033
14:17:35 Selected: SQLProg\SQLServr\MSXMLSQL\Res1033
14:17:35 Processing: SQLProg\SQLServr\MSXMLSQL\ResIntl
14:17:35 Selected: SQLProg\SQLServr\MSXMLSQL\ResIntl
14:17:35 Processing: SQLProg\UpgTools
14:17:35 Processing: SQLProg\UpgTools\UpgSys
14:17:35 Processing: SQLProg\UpgTools\ActiveX
14:17:35 Processing: SQLProg\UpgTools\Res1033
14:17:35 Processing: SQLProg\UpgTools\ResOther
14:17:35 Processing: SQLProg\UpgTools\Resld
14:17:35 Processing: SQLProg\ReplSupp
14:17:35 Selected: SQLProg\ReplSupp
14:17:35 Processing: SQLProg\ReplSupp\ReplDat
14:17:35 Selected: SQLProg\ReplSupp\ReplDat
14:17:35 Processing: SQLProg\ReplSupp\RepComm
14:17:35 Selected: SQLProg\ReplSupp\RepComm
14:17:35 Processing: SQLProg\ReplSupp\RepNoDk
14:17:35 Selected: SQLProg\ReplSupp\RepNoDk
14:17:35 Processing: SQLProg\ReplSupp\ActiveX
14:17:35 Selected: SQLProg\ReplSupp\ActiveX
14:17:35 Processing: SQLProg\Install
14:17:35 Selected: SQLProg\Install
14:17:35 Processing: SQLProg\System
14:17:35 Selected: SQLProg\System
14:17:35 Processing: SQLProg\SvrExt
14:17:35 Selected: SQLProg\SvrExt
14:17:35 Processing: SQLProg\SvrExt\Help
14:17:35 Selected: SQLProg\SvrExt\Help
14:17:35 Processing: SQLProg\SvrExt\SvrExtRs
14:17:35 Selected: SQLProg\SvrExt\SvrExtRs
14:17:35 Processing: SQLProg\SvrExt\ResIntl
14:17:35 Selected: SQLProg\SvrExt\ResIntl
14:17:35 Processing: SQLProg\Dat
14:17:35 Processing: SQLProg\DatSmpl
14:17:35 Processing: SQLProg\BaseSys
14:17:35 Selected: SQLProg\BaseSys
14:17:35 Processing: SQLProg\BaseBinn
14:17:35 Selected: SQLProg\BaseBinn
14:17:35 Processing: SQLProg\MSSearch
14:17:35 Selected: SQLProg\MSSearch
14:17:35 Processing: SQLProg\MSSearch\Help
14:17:35 Selected: SQLProg\MSSearch\Help
14:17:35 Processing: SQLProg\MSSearch\ActiveX
14:17:35 Selected: SQLProg\MSSearch\ActiveX
14:17:35 Processing: SQLProg\BaseInst
14:17:35 Selected: SQLProg\BaseInst
14:17:35 Processing: SQLProg\UI
14:17:35 Processing: SQLProg\Symbols
14:17:35 Selected: SQLProg\Symbols
14:17:35 Processing: SQLProg\Symbols\EXE
14:17:35 Selected: SQLProg\Symbols\EXE
14:17:35 Processing: SQLProg\Symbols\DLL
14:17:35 Selected: SQLProg\Symbols\DLL
14:17:35 Processing: SQLProg\Perfmon
14:17:35 Selected: SQLProg\Perfmon
14:17:35 Processing: SQLProg\Perfmon\System
14:17:35 Selected: SQLProg\Perfmon\System
14:17:35 Processing: SQLProg\Root
14:17:35 Processing: SQLProg\EXE
14:17:35 Processing: SQLProg\DLL
14:17:35 Processing: MgtTool
14:17:35 Selected: MgtTool
14:17:35 Processing: MgtTool\SEM
14:17:35 Selected: MgtTool\SEM
14:17:35 Processing: MgtTool\SEM\HTML
14:17:35 Selected: MgtTool\SEM\HTML
14:17:35 Processing: MgtTool\SEM\MSD98
14:17:35 Selected: MgtTool\SEM\MSD98
14:17:35 Processing: MgtTool\SEM\MSD98SYS
14:17:35 Selected: MgtTool\SEM\MSD98SYS
14:17:35 Processing: MgtTool\SEM\MSD98Res
14:17:35 Selected: MgtTool\SEM\MSD98Res
14:17:35 Processing: MgtTool\SEM\MSD98Hlp
14:17:35 Selected: MgtTool\SEM\MSD98Hlp
14:17:35 Processing: MgtTool\SEM\Help
14:17:35 Selected: MgtTool\SEM\Help
14:17:35 Processing: MgtTool\SEM\Res1033
14:17:35 Selected: MgtTool\SEM\Res1033
14:17:35 Processing: MgtTool\SEM\ResIntl
14:17:35 Selected: MgtTool\SEM\ResIntl
14:17:35 Processing: MgtTool\SEM\MSD98RsI
14:17:35 Selected: MgtTool\SEM\MSD98RsI
14:17:35 Processing: MgtTool\SEM\ActiveX
14:17:35 Selected: MgtTool\SEM\ActiveX
14:17:35 Processing: MgtTool\SEM\ActiveX\Res1033
14:17:35 Selected: MgtTool\SEM\ActiveX\Res1033
14:17:35 Processing: MgtTool\SEM\ActiveX\ResIntl
14:17:35 Selected: MgtTool\SEM\ActiveX\ResIntl
14:17:35 Processing: MgtTool\SEM\Scripts
14:17:35 Selected: MgtTool\SEM\Scripts
14:17:35 Processing: MgtTool\SEM\OLEDB
14:17:35 Selected: MgtTool\SEM\OLEDB
14:17:35 Processing: MgtTool\SEM\OLEDB\Res1033
14:17:35 Selected: MgtTool\SEM\OLEDB\Res1033
14:17:35 Processing: MgtTool\SEM\OLEDB\ResIntl
14:17:35 Selected: MgtTool\SEM\OLEDB\ResIntl
14:17:35 Processing: MgtTool\SEM\MSD7
14:17:35 Selected: MgtTool\SEM\MSD7
14:17:35 Processing: MgtTool\SEM\MSD7Res
14:17:35 Selected: MgtTool\SEM\MSD7Res
14:17:35 Processing: MgtTool\SEM\MSD7RsI
14:17:35 Selected: MgtTool\SEM\MSD7RsI
14:17:35 Processing: MgtTool\Profiler
14:17:35 Selected: MgtTool\Profiler
14:17:35 Processing: MgtTool\Profiler\Help
14:17:35 Selected: MgtTool\Profiler\Help
14:17:35 Processing: MgtTool\Profiler\Res1033
14:17:35 Selected: MgtTool\Profiler\Res1033
14:17:35 Processing: MgtTool\Profiler\ResIntl
14:17:35 Selected: MgtTool\Profiler\ResIntl
14:17:35 Processing: MgtTool\Qryanlz
14:17:35 Selected: MgtTool\Qryanlz
14:17:35 Processing: MgtTool\Qryanlz\Help
14:17:35 Selected: MgtTool\Qryanlz\Help
14:17:35 Processing: MgtTool\Qryanlz\Res1033
14:17:35 Selected: MgtTool\Qryanlz\Res1033
14:17:35 Processing: MgtTool\Qryanlz\ResIntl
14:17:35 Selected: MgtTool\Qryanlz\ResIntl
14:17:35 Processing: MgtTool\DTCCLi
14:17:35 Selected: MgtTool\DTCCLi
14:17:35 Processing: MgtTool\Wzcnflct
14:17:35 Selected: MgtTool\Wzcnflct
14:17:35 Processing: MgtTool\Wzcnflct\WzcnHlp
14:17:35 Selected: MgtTool\Wzcnflct\WzcnHlp
14:17:35 Processing: MgtTool\Wzcnflct\Wzcn1033
14:17:35 Selected: MgtTool\Wzcnflct\Wzcn1033
14:17:35 Processing: MgtTool\Wzcnflct\WzcnOthr
14:17:35 Selected: MgtTool\Wzcnflct\WzcnOthr
14:17:35 Processing: MgtTool\Wzcnflct\WzcnCmn
14:17:35 Selected: MgtTool\Wzcnflct\WzcnCmn
14:17:35 Processing: MgtTool\UtilSys
14:17:35 Selected: MgtTool\UtilSys
14:17:35 Processing: MgtTool\UtilBinn
14:17:35 Selected: MgtTool\UtilBinn
14:17:35 Processing: Connect
14:17:35 Selected: Connect
14:17:35 Processing: Connect\ConnSys
14:17:35 Selected: Connect\ConnSys
14:17:35 Processing: Books
14:17:35 Selected: Books
14:17:35 Processing: Books\Bookso
14:17:35 Selected: Books\Bookso
14:17:35 Processing: Books\Bookso\Utils
14:17:35 Selected: Books\Bookso\Utils
14:17:35 Processing: DevTools
14:17:35 Selected: DevTools
14:17:35 Processing: DevTools\Headers and Libraries
14:17:35 Processing: DevTools\Headers and Libraries\Include
14:17:35 Processing: DevTools\Headers and Libraries\Libx86
14:17:35 Processing: DevTools\Headers and Libraries\LibAlpha
14:17:35 Processing: DevTools\Headers and Libraries\ESQLC
14:17:35 Processing: DevTools\MDAC SDKs
14:17:35 Processing: DevTools\VDI
14:17:35 Processing: DevTools\VDI\Inc
14:17:35 Processing: DevTools\VDI\Samples
14:17:35 Processing: DevTools\Dbg Int
14:17:35 Selected: DevTools\Dbg Int
14:17:35 Processing: DevTools\Dbg Int\Dbg Int Common
14:17:35 Selected: DevTools\Dbg Int\Dbg Int Common
14:17:35 Processing: DevTools\Dbg Int\EXE
14:17:35 Selected: DevTools\Dbg Int\EXE
14:17:35 Processing: Samples
14:17:35 Processing: Samples\ADO
14:17:35 Processing: Samples\DBLIB
14:17:35 Processing: Samples\Desktop
14:17:35 Processing: Samples\DTS
14:17:35 Processing: Samples\ESQLC
14:17:35 Processing: Samples\Misc
14:17:35 Processing: Samples\MSDTC
14:17:35 Processing: Samples\ODBC
14:17:35 Processing: Samples\ODS
14:17:35 Processing: Samples\OLEAut
14:17:35 Processing: Samples\Repl
14:17:35 Processing: Samples\SilverstoneDB
14:17:35 Processing: Samples\SQLDMO
14:17:35 Processing: Samples\SQLNS
14:17:35 Processing: Samples\Utils
14:17:35 Processing: Samples\XML
14:17:35 Processing: CoreRepl
14:17:35 Selected: CoreRepl
14:17:35 Processing: CoreRepl\Res1033
14:17:35 Selected: CoreRepl\Res1033
14:17:35 Processing: CoreRepl\ResIntl
14:17:35 Selected: CoreRepl\ResIntl
14:17:35 Processing: Core
14:17:35 Selected: Core
14:17:35 Processing: Core\Res1033
14:17:35 Selected: Core\Res1033
14:17:35 Processing: Core\ResOther
14:17:35 Selected: Core\ResOther
14:17:35 Processing: Repostry
14:17:35 Selected: Repostry
14:17:35 Processing: Repostry\RepstSys
14:17:35 Selected: Repostry\RepstSys
14:17:35 Processing: Repostry\Res1033
14:17:35 Selected: Repostry\Res1033
14:17:35 Processing: Repostry\ResIntl
14:17:35 Selected: Repostry\ResIntl
14:17:35 Processing: CoreMisc
14:17:35 Selected: CoreMisc
14:17:35 Processing: CoreMisc\ActiveX
14:17:35 Selected: CoreMisc\ActiveX
14:17:35 Processing: CoreMisc\ActiveX\Res1033
14:17:35 Selected: CoreMisc\ActiveX\Res1033
14:17:35 Processing: CoreMisc\ActiveX\ResIntl
14:17:35 Selected: CoreMisc\ActiveX\ResIntl
14:17:35 Processing: CoreMisc\Res1033
14:17:35 Selected: CoreMisc\Res1033
14:17:35 Processing: Monarch
14:17:35 Selected: Monarch
14:17:35 Processing: Monarch\Monr1033
14:17:35 Selected: Monarch\Monr1033
14:17:35 Processing: Monarch\MonrIntl
14:17:35 Selected: Monarch\MonrIntl
14:17:35 Processing: Jet
14:17:35 Selected: Jet
14:17:35 Processing: CoreInst
14:17:35 Selected: CoreInst
14:17:35 Processing: CoreCOM
14:17:35 Selected: CoreCOM
14:17:35 Processing: CoreCOM\Res1033
14:17:35 Selected: CoreCOM\Res1033
14:17:35 Processing: CoreCOM\ResIntl
14:17:35 Selected: CoreCOM\ResIntl
14:17:35 Processing: CoreTool
14:17:35 Selected: CoreTool
14:17:35 Processing: CoreTool\Res1033
14:17:35 Selected: CoreTool\Res1033
14:17:35 Processing: CoreTool\ResOther
14:17:35 Selected: CoreTool\ResOther
14:17:35 Processing: DBLibCli
14:17:35 Selected: DBLibCli
14:17:35 Processing: SFExt
14:17:35 Selected: SFExt
14:17:35 Processing: SFExt\ActiveX
14:17:35 Selected: SFExt\ActiveX
14:17:35 Processing: SFExt\ActiveX\Res1033
14:17:35 Selected: SFExt\ActiveX\Res1033
14:17:35 Processing: SFExt\ActiveX\ResIntl
14:17:35 Selected: SFExt\ActiveX\ResIntl
14:17:35 Processing: SFExt\Res1033
14:17:35 Selected: SFExt\Res1033
14:17:35 Processing: SFExt\ResIntl
14:17:35 Selected: SFExt\ResIntl
14:17:35 Processing: Trace
14:17:35 Selected: Trace
14:17:35 Processing: Trace\Res1033
14:17:35 Selected: Trace\Res1033
14:17:35 Processing: Trace\ResOther
14:17:35 Selected: Trace\ResOther
14:17:35 Processing: CnctBinn
14:17:35 Processing: MiscCore
14:17:35 Selected: MiscCore
14:17:35 Processing: MC
14:17:35 Selected: MC
14:17:35 Processing: MC\MC1033
14:17:35 Selected: MC\MC1033
14:17:35 Processing: MC\MCIntl
14:17:35 Selected: MC\MCIntl
14:17:35 Processing: MC\Help
14:17:35 Selected: MC\Help
14:17:35 Processing: UI
14:17:35 Processing: UI\UIHlp
14:17:35 Processing: UI\UI1033
14:17:35 Processing: UI\UIIntl
14:17:35 Processing: ClstSys
14:17:35 Processing: SQLMgr
14:17:35 Selected: SQLMgr
14:17:35 Processing: SQLMgr\Res1033
14:17:35 Selected: SQLMgr\Res1033
14:17:35 Processing: SQLMgr\ResIntl
14:17:35 Selected: SQLMgr\ResIntl
14:17:35 Processing: SvrTool
14:17:35 Selected: SvrTool
14:17:35 Processing: SvrTool\Res1033
14:17:35 Selected: SvrTool\Res1033
14:17:35 Processing: SvrTool\ResIntl
14:17:35 Selected: SvrTool\ResIntl
14:17:35 Processing: DTSUI
14:17:35 Selected: DTSUI
14:17:35 Processing: DTSUI\Res1033
14:17:35 Selected: DTSUI\Res1033
14:17:35 Processing: DTSUI\ResIntl
14:17:35 Selected: DTSUI\ResIntl
14:17:35 Processing: ClFTSys
14:17:35 Processing: ClFtdata
14:17:35 Processing: MSOlap
14:17:35 Selected: MSOlap
14:17:35 Processing: MSOlap\Res1033
14:17:35 Selected: MSOlap\Res1033
14:17:35 Processing: MSOlap\ResIntl
14:17:35 Selected: MSOlap\ResIntl
14:17:35 Processing: ATL
14:17:35 Selected: ATL
14:17:35 Processing: ATL\winnt
14:17:35 Selected: ATL\winnt
14:17:35 Processing: ATL\win9x
14:17:35 Selected: ATL\win9x
14:17:35 Processing: MFC42U
14:17:35 Selected: MFC42U
14:17:35 Processing: VC
14:17:35 Selected: VC
14:17:35 Processing: VB
14:17:35 Selected: VB
14:17:35 Processing: OCX1
14:17:35 Processing: SQLAdHlp
14:17:35 Selected: SQLAdHlp
14:17:35 Processing: SQLAdHlp\Res1033
14:17:35 Selected: SQLAdHlp\Res1033
14:17:35 Processing: SQLAdHlp\ResOther
14:17:35 Selected: SQLAdHlp\ResOther
14:17:35 {E07FDDBE-5A21-11d2-9DAD-00C04F79D434}
14:17:35 {E07FDDC7-5A21-11d2-9DAD-00C04F79D434}
14:17:35 {E07FDDC0-5A21-11d2-9DAD-00C04F79D434}
14:17:35 {E07FDDBF-5A21-11d2-9DAD-00C04F79D434}
14:17:35 End: LogSelectedComponents()
14:17:35 Processing: SQLProg
14:17:35 Processing: SQLProg\SQLServr
14:17:35 Processing: SQLProg\SQLServr\Help
14:17:35 Processing: SQLProg\SQLServr\SCMDev
14:17:35 Processing: SQLProg\SQLServr\SCMDev\SCMh
14:17:35 Processing: SQLProg\SQLServr\SCMDev\SCMX86Lb
14:17:35 Processing: SQLProg\SQLServr\SCMDev\SCMALb
14:17:35 Processing: SQLProg\SQLServr\Rs1033
14:17:35 Processing: SQLProg\SQLServr\RsIntl
14:17:35 Processing: SQLProg\SQLServr\ActiveX
14:17:35 Processing: SQLProg\SQLServr\System
14:17:35 Processing: SQLProg\SQLServr\Watson
14:17:35 Processing: SQLProg\SQLServr\Watson\Watson1033
14:17:35 Processing: SQLProg\SQLServr\Watson\WatsonOther
14:17:35 Processing: SQLProg\SQLServr\MSXMLSQL
14:17:35 Processing: SQLProg\SQLServr\MSXMLSQL\Res1033
14:17:35 Processing: SQLProg\SQLServr\MSXMLSQL\ResIntl
14:17:35 Processing: SQLProg\UpgTools
14:17:35 Processing: SQLProg\UpgTools\UpgSys
14:17:35 Processing: SQLProg\UpgTools\ActiveX
14:17:35 Processing: SQLProg\UpgTools\Res1033
14:17:35 Processing: SQLProg\UpgTools\ResOther
14:17:35 Processing: SQLProg\UpgTools\Resld
14:17:35 Processing: SQLProg\ReplSupp
14:17:35 Processing: SQLProg\ReplSupp\ReplDat
14:17:35 Processing: SQLProg\ReplSupp\RepComm
14:17:35 Processing: SQLProg\ReplSupp\RepNoDk
14:17:35 Processing: SQLProg\ReplSupp\ActiveX
14:17:35 Processing: SQLProg\Install
14:17:35 Processing: SQLProg\System
14:17:35 Processing: SQLProg\SvrExt
14:17:35 Processing: SQLProg\SvrExt\Help
14:17:35 Processing: SQLProg\SvrExt\SvrExtRs
14:17:35 Processing: SQLProg\SvrExt\ResIntl
14:17:35 Processing: SQLProg\Dat
14:17:35 Processing: SQLProg\DatSmpl
14:17:35 Processing: SQLProg\BaseSys
14:17:35 Processing: SQLProg\BaseBinn
14:17:35 Processing: SQLProg\MSSearch
14:17:35 Processing: SQLProg\MSSearch\Help
14:17:35 Processing: SQLProg\MSSearch\ActiveX
14:17:35 Processing: SQLProg\BaseInst
14:17:35 Processing: SQLProg\UI
14:17:35 Processing: SQLProg\Symbols
14:17:35 Processing: SQLProg\Symbols\EXE
14:17:35 Processing: SQLProg\Symbols\DLL
14:17:35 Processing: SQLProg\Perfmon
14:17:35 Processing: SQLProg\Perfmon\System
14:17:35 Processing: SQLProg\Root
14:17:35 Processing: SQLProg\EXE
14:17:35 Processing: SQLProg\DLL
14:17:35 Processing: MgtTool
14:17:35 Processing: MgtTool\SEM
14:17:35 Processing: MgtTool\SEM\HTML
14:17:35 Processing: MgtTool\SEM\MSD98
14:17:35 Processing: MgtTool\SEM\MSD98SYS
14:17:35 Processing: MgtTool\SEM\MSD98Res
14:17:35 Processing: MgtTool\SEM\MSD98Hlp
14:17:35 Processing: MgtTool\SEM\Help
14:17:35 Processing: MgtTool\SEM\Res1033
14:17:35 Processing: MgtTool\SEM\ResIntl
14:17:35 Processing: MgtTool\SEM\MSD98RsI
14:17:35 Processing: MgtTool\SEM\ActiveX
14:17:35 Processing: MgtTool\SEM\ActiveX\Res1033
14:17:35 Processing: MgtTool\SEM\ActiveX\ResIntl
14:17:35 Processing: MgtTool\SEM\Scripts
14:17:35 Processing: MgtTool\SEM\OLEDB
14:17:35 Processing: MgtTool\SEM\OLEDB\Res1033
14:17:35 Processing: MgtTool\SEM\OLEDB\ResIntl
14:17:35 Processing: MgtTool\SEM\MSD7
14:17:35 Processing: MgtTool\SEM\MSD7Res
14:17:35 Processing: MgtTool\SEM\MSD7RsI
14:17:35 Processing: MgtTool\Profiler
14:17:35 Processing: MgtTool\Profiler\Help
14:17:35 Processing: MgtTool\Profiler\Res1033
14:17:35 Processing: MgtTool\Profiler\ResIntl
14:17:35 Processing: MgtTool\Qryanlz
14:17:35 Processing: MgtTool\Qryanlz\Help
14:17:35 Processing: MgtTool\Qryanlz\Res1033
14:17:35 Processing: MgtTool\Qryanlz\ResIntl
14:17:35 Processing: MgtTool\DTCCLi
14:17:35 Processing: MgtTool\Wzcnflct
14:17:35 Processing: MgtTool\Wzcnflct\WzcnHlp
14:17:35 Processing: MgtTool\Wzcnflct\Wzcn1033
14:17:35 Processing: MgtTool\Wzcnflct\WzcnOthr
14:17:35 Processing: MgtTool\Wzcnflct\WzcnCmn
14:17:35 Processing: MgtTool\UtilSys
14:17:35 Processing: MgtTool\UtilBinn
14:17:35 Processing: Connect
14:17:35 Processing: Connect\ConnSys
14:17:35 Processing: Books
14:17:35 Processing: Books\Bookso
14:17:35 Processing: Books\Bookso\Utils
14:17:35 Processing: DevTools
14:17:35 Processing: DevTools\Headers and Libraries
14:17:35 Processing: DevTools\Headers and Libraries\Include
14:17:35 Processing: DevTools\Headers and Libraries\Libx86
14:17:35 Processing: DevTools\Headers and Libraries\LibAlpha
14:17:35 Processing: DevTools\Headers and Libraries\ESQLC
14:17:35 Processing: DevTools\MDAC SDKs
14:17:35 Processing: DevTools\VDI
14:17:35 Processing: DevTools\VDI\Inc
14:17:35 Processing: DevTools\VDI\Samples
14:17:35 Processing: DevTools\Dbg Int
14:17:35 Processing: DevTools\Dbg Int\Dbg Int Common
14:17:35 Processing: DevTools\Dbg Int\EXE
14:17:35 Processing: Samples
14:17:35 Processing: Samples\ADO
14:17:35 Processing: Samples\DBLIB
14:17:35 Processing: Samples\Desktop
14:17:35 Processing: Samples\DTS
14:17:35 Processing: Samples\ESQLC
14:17:35 Processing: Samples\Misc
14:17:35 Processing: Samples\MSDTC
14:17:35 Processing: Samples\ODBC
14:17:35 Processing: Samples\ODS
14:17:35 Processing: Samples\OLEAut
14:17:35 Processing: Samples\Repl
14:17:35 Processing: Samples\SilverstoneDB
14:17:35 Processing: Samples\SQLDMO
14:17:35 Processing: Samples\SQLNS
14:17:35 Processing: Samples\Utils
14:17:35 Processing: Samples\XML
14:17:35 Processing: CoreRepl
14:17:35 Processing: CoreRepl\Res1033
14:17:35 Processing: CoreRepl\ResIntl
14:17:35 Processing: Core
14:17:35 Processing: Core\Res1033
14:17:35 Processing: Core\ResOther
14:17:35 Processing: Repostry
14:17:35 Processing: Repostry\RepstSys
14:17:35 Processing: Repostry\Res1033
14:17:35 Processing: Repostry\ResIntl
14:17:35 Processing: CoreMisc
14:17:35 Processing: CoreMisc\ActiveX
14:17:35 Processing: CoreMisc\ActiveX\Res1033
14:17:35 Processing: CoreMisc\ActiveX\ResIntl
14:17:35 Processing: CoreMisc\Res1033
14:17:35 Processing: Monarch
14:17:35 Processing: Monarch\Monr1033
14:17:35 Processing: Monarch\MonrIntl
14:17:35 Processing: Jet
14:17:35 Processing: CoreInst
14:17:35 Processing: CoreCOM
14:17:35 Processing: CoreCOM\Res1033
14:17:35 Processing: CoreCOM\ResIntl
14:17:35 Processing: CoreTool
14:17:35 Processing: CoreTool\Res1033
14:17:35 Processing: CoreTool\ResOther
14:17:35 Processing: DBLibCli
14:17:35 Processing: SFExt
14:17:35 Processing: SFExt\ActiveX
14:17:35 Processing: SFExt\ActiveX\Res1033
14:17:35 Processing: SFExt\ActiveX\ResIntl
14:17:35 Processing: SFExt\Res1033
14:17:35 Processing: SFExt\ResIntl
14:17:35 Processing: Trace
14:17:35 Processing: Trace\Res1033
14:17:35 Processing: Trace\ResOther
14:17:35 Processing: CnctBinn
14:17:35 Processing: MiscCore
14:17:35 Processing: MC
14:17:35 Processing: MC\MC1033
14:17:35 Processing: MC\MCIntl
14:17:35 Processing: MC\Help
14:17:35 Processing: UI
14:17:35 Processing: UI\UIHlp
14:17:35 Processing: UI\UI1033
14:17:35 Processing: UI\UIIntl
14:17:35 Processing: ClstSys
14:17:35 Processing: SQLMgr
14:17:35 Processing: SQLMgr\Res1033
14:17:35 Processing: SQLMgr\ResIntl
14:17:35 Processing: SvrTool
14:17:35 Processing: SvrTool\Res1033
14:17:35 Processing: SvrTool\ResIntl
14:17:35 Processing: DTSUI
14:17:35 Processing: DTSUI\Res1033
14:17:35 Processing: DTSUI\ResIntl
14:17:35 Processing: ClFTSys
14:17:35 Processing: ClFtdata
14:17:35 Processing: MSOlap
14:17:35 Processing: MSOlap\Res1033
14:17:35 Processing: MSOlap\ResIntl
14:17:35 Processing: ATL
14:17:35 Processing: ATL\winnt
14:17:35 Processing: ATL\win9x
14:17:35 Processing: MFC42U
14:17:35 Processing: VC
14:17:35 Processing: VB
14:17:35 Processing: OCX1
14:17:35 Processing: SQLAdHlp
14:17:35 Processing: SQLAdHlp\Res1033
14:17:35 Processing: SQLAdHlp\ResOther
14:17:35 SQL program folder: C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME
14:17:35 SQL data folder: C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME
14:17:35 Windows system folder: C:\WINDOWS\system32\
14:17:35 Prog req: 61137, Data req: 3072, Sys req: 50573
14:17:35 Prog avail: 1573556, Data avail: 1573556, Sys avail: 1573556
14:17:35 Prog req vs. avail, 114782, 1573556
14:17:35 Data req vs. avail, 3072, 1573556
14:17:35 Sys req vs. avail, 53645, 1573556
14:17:35 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Timeout 5000 -Service SQLAgent$INSTNAME
14:17:35 Process Exit Code: (0)
14:17:35 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Timeout 5000 -Service MSSQL$INSTNAME
14:17:35 Process Exit Code: (0)
14:17:35 Begin: InstallPkgs(ID_INSTALLMDAC)
14:17:35 Begin Action: Locked Connectivity Files Check
14:17:35 ConnectivityLocked returned: 0
14:17:35 The operation completed successfully.

14:17:35 End Action: Locked Connectivity Files Check
14:17:35 Setup is installing Microsoft Data Access Components (MDAC) ...
14:17:35 D:\SQL2KSP42\x86\Other\sqlredis.exe /q:a /C:"setupre.exe MDACQFE=0 WARN=1 -s -SMS"
14:17:35 Unloading library - sqlsut.dll (#U2)
14:17:43 Loading library - sqlsut.dll (#L2)
14:17:43 ExitCode: 0
14:17:43 End: InstallPkgs(ID_INSTALLMDAC)
14:17:43 **** STARTING OPEN OP IN WRITE MODE ****
14:17:43 **** CLOSED OPEN OP IN WRITE MODE ****
14:17:43 Begin: MoveFileData()
14:17:43 Enabled SELFREGISTERBATCH
14:17:43 Enabled CORECOMPONENTHANDLING
14:17:49 Begin Action: MoveFileDataSpecial
14:17:49 End Action: MoveFileDataSpecial
14:17:49 End: MoveFileData()
14:17:49 Begin: ProcessAfterDataMove()
14:17:49 Begin Action : Installing Server Net
14:17:49 Server Instance : INSTNAME
14:17:49 Server Net Will only be installed on server only in Enterprise Editions
14:17:49 End: ProcessAfterDataMove()
14:17:49 Begin: BuildServer()
14:17:49 Begin Action: CreateRegistrySetSQL
14:17:49 End Action: CreateRegistrySetSQL
14:17:49 Begin Action: RegWriteSetupEntry
14:17:49 End Action: RegWriteSetupEntry
14:17:49 *** Unable to get RegisteredOwner to apply to Serial number
14:17:49 Begin Action: CreateSer
14:17:49 End Action: CreateSer
14:17:49 SetFileSecuritySQLAndAdmin for C:\WINDOWS\setup.iss returned: 0, 0
14:17:49 SetFileSecuritySQLAndAdmin for C:\WINDOWS\sqlsp.log returned: 0, 0
14:17:49 SetFileSecuritySQLAndAdmin for returned: 3, 3
14:17:49 SetFileSecuritySQLAndAdmin for C:\WINDOWS\sqlsp.log returned: 0, 0
14:17:49 SetFileSecuritySQLAndAdmin for C:\WINDOWS\sqlstp.log returned: 0, 0
14:17:49 SetFileSecPerfAndLogUsers for C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\Binn\SQLCTR80.DLL returned: 0, 0
14:17:49 Begin ServPriv (INSTNAME)
14:17:49 End ServPriv()
14:17:50 Upgrading databases
14:17:50 Upgrading databases on instance 'INSTNAME'
14:17:50 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Service MSSQL$INSTNAME
14:17:50 Process Exit Code: (0)
14:17:50 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Service MSSQL$INSTNAME
14:17:50 Process Exit Code: (0)
14:17:50 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 1 -Service MSSQL$INSTNAME -StartupOptions \-T4022 \-T4010 \-m
14:18:41 Process Exit Code: (0)
14:18:41 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\replsys.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\replsys.sql" -Usa -P"
14:19:18 Process Exit Code: (0)
14:19:18 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\replcom.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\replcom.sql" -Usa -P"
14:19:35 Process Exit Code: (0)
14:19:35 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\repltran.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\repltran.sql" -Usa -P"
14:19:57 Process Exit Code: (0)
14:19:57 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\replmerg.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\replmerg.sql" -Usa -P"
14:20:25 Process Exit Code: (0)
14:20:25 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\remove_old_msx_accounts.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\remove_old_msx_accounts.sql" -Usa -P"
14:20:25 Process Exit Code: (0)
14:20:25 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\sp4_serv_uni.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\sp4_serv_uni.sql" -Usa -P"
14:20:27 Process Exit Code: (0)
14:20:27 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\80sp4-tools.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\80sp4-tools.sql" -Usa -P"
14:20:28 Process Exit Code: (1)
14:20:33 Error running script: 80sp4-tools.sql (1)
14:20:33 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Service MSSQL$INSTNAME
14:21:08 Process Exit Code: (0)
14:21:08 Action CleanUpInstall:
14:21:08 Installation Failed.

I hope for any help, because re-installing is not an option.There are 250 db's on it.

thanks so far.

rb

I am having the same problem. I found a file under the Program Files\Microsoft SQL Server\MSSQL$instancename\Install directory called 80sp4-tools.out. It is telling me that I am having a problem of

"Cannot load the DLL xpstar.dll, or one of the DLLs it references. Reason: 127(The specified procedure could not be found.)." I found some other writes up on that and tried copying an original copy of it to Binn directory of the instance I was working on. It got me past some other problems. But when I try to apply the pack again it gives me the same error. So hopefully this will point you to a log that might hold the answer for you.

|||

What is the settings to your boot.ini?

Drake Teran

Error running script: 80sp4-tools.sql installing sql 2000 SP4

Hello there,

I hope someone can help me with an annoying failure.

While installing sp4, the last running script is going very wrong.

"Error running script: 80sp4-tools.sql"

in the sqlsp.log, there is only an item with Process Exit Code: (1) after 80sp4-tools.sql

this is the log file.

14:15:05 Begin Setup
14:15:05 Version on Media: 8.00.2039
14:15:05 Mode = Normal
14:15:05 ModeType = NORMAL
14:15:06 Loading library - sqlsut.dll (#L1)
14:15:06 Begin: SetupInitialize()
14:15:06 End: SetupInitialize()
14:15:06 Begin: CheckFixedRequirements()
14:15:06 Platform ID: 0xf000
14:15:06 Version: 5.2.3790
14:15:06 File Version - C:\WINDOWS\system32\shdocvw.dll: 6.0.3790.2858
14:15:06 End: CheckFixedRequirements()
14:15:06 Begin Action: CheckRequirements
14:15:06 Processor Architecture: x86 (Pentium)
14:15:06 Service Pack: 256
14:15:06 ComputerName: SERVER01
14:15:06 User Name: administrator
14:15:06 IsAllAccessAllowed returned: 1
14:15:06 OS Language: 0x409
14:15:06 End Action CheckRequirements
14:15:06 CreateSetupTopology(SERVER01), Handle : 0x14d46c8, returned : 0
14:15:06 CreateSetupTopology returned : 0, Handle : 0x14d46c8
14:15:06 Topology Type : 1, Return Value : 0
14:15:06 ST_GetPhysicalNode returned : 0, PNHandle : 0x14d4708
14:15:06 PN_EnumerateEx returned : 0
14:15:06 PN_GetSQLStates returned : 0, SqlStates : 0x88020024
14:15:06 PN_StartScan [0x14d4708] returned : 0
14:15:06 PN_GetNext [0x14d4708] returned : 0, Handle: [0x14d55c0]
14:15:06 SQLI_GetPackageId [0x14d55c0] returned : 0, PackageId = 0x2
14:15:06 SQLI_GetVersion [0x14d55c0] returned : 0, Version = 8.00.194
14:15:06 PN_GetNext [0x14d4708] returned : 0, Handle: [0x14d5f48]
14:15:06 PN_GetNext [0x14d4708] returned : 0, Handle: [0x14d6878]
14:15:06 PN_GetNext [0x14d4708] returned : 0, Handle: [0x14d7180]
14:15:06 PN_GetNext [0x14d4708] returned : 18, Handle: [0x0]
14:15:06 ReleaseSetupTopology
14:15:06 This combination of Package and Operating System allows a full product install.
14:15:06 Begin: SetupInstall()
14:15:06 Reading Software\Microsoft\Windows\CurrentVersion\CommonFilesDir ...
14:15:06 CommonFilesDir=C:\Program Files\Common Files
14:15:06 Windows Directory=C:\WINDOWS\
14:15:06 Program Files=C:\Program Files\
14:15:06 TEMPDIR=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\
14:15:06 End: SetupInstall()
14:15:06 Begin: ShowDialogs()
14:15:06 Initial Dialog Mask: 0x8300037, Disable Back=0x1
14:15:06 Begin Action ShowDialogsHlpr: 0x1
14:15:06 Begin Action: DialogShowSdWelcome
14:15:07 End Action DialogShowSdWelcome
14:15:07 Dialog 0x1 returned: 1
14:15:07 End Action ShowDialogsHlpr
14:15:07 ShowDialogsGetDialog returned: nCurrent=0x2,index=1
14:15:07 Begin Action ShowDialogsHlpr: 0x2
14:15:07 Begin Action: DialogShowSdMachineName
14:15:07 ShowDlgMachine returned: 1
14:15:07 Name = SERVER01, Type = 0x1
14:15:07 End Action DialogShowSdMachineName
14:15:07 begin ShowDialogsUpdateMask
14:15:07 nFullMask = 0x8300037, nCurrent = 0x2, nDirection = 0
14:15:07 Updated Dialog Mask: 0xbf00035, Disable Back = 0x1
14:15:07 Dialog 0x2 returned: 0
14:15:07 End Action ShowDialogsHlpr
14:15:07 ShowDialogsGetDialog returned: nCurrent=0x4,index=2
14:15:07 Begin Action ShowDialogsHlpr: 0x4
14:15:07 Begin Action: DialogShowSdInstallMode
14:15:07 ShowDlgInstallMode returned: 1
14:15:07 InstallMode : 0x2
14:15:07 End Action DialogShowSdInstallMode
14:15:07 begin ShowDialogsUpdateMask
14:15:07 nFullMask = 0xbf00035, nCurrent = 0x4, nDirection = 1
14:15:07 Updated Dialog Mask: 0xb000627, Disable Back = 0x1
14:15:07 Dialog 0x4 returned: 1
14:15:07 End Action ShowDialogsHlpr
14:15:07 ShowDialogsGetDialog returned: nCurrent=0x20,index=5
14:15:07 Begin Action ShowDialogsHlpr: 0x20
14:15:07 Begin Action: DialogShowSdLicense
14:15:08 End Action DialogShowSdLicense
14:15:08 Dialog 0x20 returned: 1
14:15:08 End Action ShowDialogsHlpr
14:15:08 ShowDialogsGetDialog returned: nCurrent=0x200,index=9
14:15:08 Begin Action ShowDialogsHlpr: 0x200
14:15:08 Begin Action: DialogShowSdInstanceName
14:15:08 Begin Action: ShowDlgInstanceName
14:15:09 This machine has SQL Server 2000 SP3 already installed
14:15:09 Version of installed Service Pack: 8.00.761
14:15:09 The language on the CD is 1033 and installed is 1033
14:15:09 End Action : Verify Language
14:15:09 SKU is : Standard Edition
14:15:09 End Action: ShowDlgInstanceName
14:15:09 ShowDlgInstanceName returned : 0
14:15:09 InstanceName : INSTNAME
14:15:09 End Action DialogShowSdInstanceName
14:15:09 begin ShowDialogsUpdateMask
14:15:09 nFullMask = 0xb000627, nCurrent = 0x200, nDirection = 0
14:15:09 Updated Dialog Mask: 0xbc00627, Disable Back = 0x1
14:15:09 Dialog 0x200 returned: 0
14:15:09 End Action ShowDialogsHlpr
14:15:09 ShowDialogsGetDialog returned: nCurrent=0x400,index=10
14:15:09 Begin Action ShowDialogsHlpr: 0x400
14:15:09 Begin Action: DialogShowSdMaintain
14:15:09 ShowDlgMaintainInstall returned : 1
14:15:09 Type : 0xc
14:15:09 CreateSetupTopology(SERVER01), Handle : 0x14d5f08, returned : 0
14:15:09 CreateSetupTopology returned : 0, Handle : 0x14d5f08
14:15:09 Topology Type : 1, Return Value : 0
14:15:09 ST_GetPhysicalNode returned : 0, PNHandle : 0x14d46c8
14:15:09 PN_EnumerateEx returned : 0
14:15:09 PN_GetSQLStates returned : 0, SqlStates : 0x88020024
14:15:09 PN_GetInstance for INSTNAME [0x14d46c8] returned : 0
14:15:09 SQLI_GetPackageId [0x14d55c0] returned : 0, PackageId = 0x2
14:15:09 SQLI_GetVersion [0x14d55c0] returned : 0, Version = 8.00.194
14:15:09 SQLI_GetSQLStates for INSTNAME [0x14d55c0] returned : 0, SQLStates: 0xc20804
14:15:09 SQLI_GetInstallPath [0x14d55c0] returned : 0, Path = C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME
14:15:09 SQLI_GetDataPath [0x14d55c0] returned : 0, DataPath = C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME
14:15:09 SQLI_GetVersion [0x14d55c0] returned : 0, Version = 8.00.194
14:15:09 SQLI_GetRegKeyRoot [0x14d55c0] returned : 0, RegKeyRoot = Software\Microsoft\Microsoft SQL Server\INSTNAME
14:15:09 SQLI_GetPackageName [0x14d55c0] returned : 0, szPackage = Standard Edition
14:15:09 SQLI_GetPackageId [0x14d55c0] returned : 0, PackageId = 0x2
14:15:09 Previous Install Path: C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME
14:15:09 Previous Install Data: C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME
14:15:09 Previous Install Version: 8.00.194
14:15:09 ReleaseSetupTopology
14:15:09 End Action DialogShowSdMaintain
14:15:09 begin ShowDialogsUpdateMask
14:15:09 nFullMask = 0xbc00627, nCurrent = 0x400, nDirection = 1
14:15:09 Updated Dialog Mask: 0xb002627, Disable Back = 0x1
14:15:09 Dialog 0x400 returned: 1
14:15:10 End Action ShowDialogsHlpr
14:15:10 ShowDialogsGetDialog returned: nCurrent=0x2000,index=13
14:15:10 Begin Action ShowDialogsHlpr: 0x2000
14:15:10 Begin Action: DialogShowSdUpgrade
14:15:10 ShowDlgUpgrade returned : 1
14:15:10 Checking databases on instance 'INSTNAME'
14:15:10 Authenticate access
14:15:10 Begin SDPassword Dialog
14:15:13 End SDPassword Dialog
14:15:13 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Service MSSQL$INSTNAME
14:15:13 Process Exit Code: (0)
14:15:13 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 1 -Service MSSQL$INSTNAME -StartupOptions \-T4022
14:16:03 Process Exit Code: (0)
14:16:03 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -n -d master -Q "exit" -o "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\sqlsp.out" -Usa -P"
14:16:04 Process Exit Code: (0)
14:16:04 Begin: CheckSAPassword
14:16:04 Begin: LogOnUsingBlankSA
14:16:04 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -n -d master -o "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\sqlsp.out" -Q"Exit(declare @.ret int if (select count(*) from master..syslogins where name='sa' AND ( (1 = pwdcompare(N'', password)) OR password IS NULL )) = 0 Set @.ret=0 else Set @.ret=9000 Select @.ret)" -Usa -P"
14:16:04 Process Exit Code: (0)
14:16:04 End: LogOnUsingBlankSA
14:16:04 Begin: SdBlankPwd
14:16:04 End: SdBlankPwd
14:16:04 End: CheckSAPassword
14:16:04 Begin : SdErrorReportingDlg
14:16:14 End: SdErrorReportingDlg
14:16:14 Access authenticated
14:16:14 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -n -b -d master -o "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\~sqldb0.txt" -i "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\dbverify.sql" -Usa -P"
14:16:37 Process Exit Code: (0)
14:16:37 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Service MSSQL$INSTNAME
14:17:17 Process Exit Code: (0)
14:17:17 Setup Type: Custom (303)
14:17:18 Processing: SQLProg
14:17:18 Processing: SQLProg\SQLServr
14:17:18 Processing: SQLProg\UpgTools
14:17:18 Processing: SQLProg\ReplSupp
14:17:18 Processing: SQLProg\Install
14:17:18 Processing: SQLProg\System
14:17:18 Processing: SQLProg\SvrExt
14:17:18 Processing: SQLProg\Dat
14:17:18 Processing: SQLProg\DatSmpl
14:17:18 Processing: SQLProg\BaseSys
14:17:18 Processing: SQLProg\BaseBinn
14:17:18 Processing: SQLProg\MSSearch
14:17:18 Processing: SQLProg\BaseInst
14:17:18 Processing: SQLProg\UI
14:17:18 Processing: SQLProg\Symbols
14:17:18 Processing: SQLProg\Perfmon
14:17:18 Processing: SQLProg\Root
14:17:18 Processing: SQLProg\EXE
14:17:18 Processing: SQLProg\DLL
14:17:18 Processing: MgtTool
14:17:18 Processing: MgtTool\SEM
14:17:18 Processing: MgtTool\Profiler
14:17:18 Processing: MgtTool\Qryanlz
14:17:18 Processing: MgtTool\DTCCLi
14:17:18 Processing: MgtTool\Wzcnflct
14:17:18 Processing: MgtTool\UtilSys
14:17:18 Processing: MgtTool\UtilBinn
14:17:18 Processing: Connect
14:17:18 Processing: Connect\ConnSys
14:17:18 Processing: Books
14:17:18 Processing: Books\Bookso
14:17:18 Processing: DevTools
14:17:18 Processing: DevTools\Headers and Libraries
14:17:18 Processing: DevTools\MDAC SDKs
14:17:18 Processing: DevTools\VDI
14:17:18 Processing: DevTools\Dbg Int
14:17:18 Processing: Samples
14:17:18 Processing: Samples\ADO
14:17:18 Processing: Samples\DBLIB
14:17:18 Processing: Samples\Desktop
14:17:18 Processing: Samples\DTS
14:17:18 Processing: Samples\ESQLC
14:17:18 Processing: Samples\Misc
14:17:18 Processing: Samples\MSDTC
14:17:18 Processing: Samples\ODBC
14:17:18 Processing: Samples\ODS
14:17:18 Processing: Samples\OLEAut
14:17:18 Processing: Samples\Repl
14:17:18 Processing: Samples\SilverstoneDB
14:17:18 Processing: Samples\SQLDMO
14:17:18 Processing: Samples\SQLNS
14:17:18 Processing: Samples\Utils
14:17:18 Processing: Samples\XML
14:17:18 Processing: CoreRepl
14:17:18 Processing: CoreRepl\Res1033
14:17:18 Processing: CoreRepl\ResIntl
14:17:18 Processing: Core
14:17:18 Processing: Core\Res1033
14:17:18 Processing: Core\ResOther
14:17:18 Processing: Repostry
14:17:18 Processing: Repostry\RepstSys
14:17:18 Processing: Repostry\Res1033
14:17:18 Processing: Repostry\ResIntl
14:17:18 Processing: CoreMisc
14:17:18 Processing: CoreMisc\ActiveX
14:17:18 Processing: CoreMisc\Res1033
14:17:18 Processing: Monarch
14:17:18 Processing: Monarch\Monr1033
14:17:18 Processing: Monarch\MonrIntl
14:17:18 Processing: Jet
14:17:18 Processing: CoreInst
14:17:18 Processing: CoreCOM
14:17:18 Processing: CoreCOM\Res1033
14:17:18 Processing: CoreCOM\ResIntl
14:17:18 Processing: CoreTool
14:17:18 Processing: CoreTool\Res1033
14:17:18 Processing: CoreTool\ResOther
14:17:18 Processing: DBLibCli
14:17:18 Processing: SFExt
14:17:18 Processing: SFExt\ActiveX
14:17:18 Processing: SFExt\Res1033
14:17:18 Processing: SFExt\ResIntl
14:17:18 Processing: Trace
14:17:18 Processing: Trace\Res1033
14:17:18 Processing: Trace\ResOther
14:17:18 Processing: CnctBinn
14:17:18 Processing: MiscCore
14:17:18 Processing: MC
14:17:18 Processing: MC\MC1033
14:17:18 Processing: MC\MCIntl
14:17:18 Processing: MC\Help
14:17:18 Processing: UI
14:17:18 Processing: UI\UIHlp
14:17:18 Processing: UI\UI1033
14:17:18 Processing: UI\UIIntl
14:17:18 Processing: ClstSys
14:17:18 Processing: SQLMgr
14:17:18 Processing: SQLMgr\Res1033
14:17:18 Processing: SQLMgr\ResIntl
14:17:18 Processing: SvrTool
14:17:18 Processing: SvrTool\Res1033
14:17:18 Processing: SvrTool\ResIntl
14:17:18 Processing: DTSUI
14:17:18 Processing: DTSUI\Res1033
14:17:18 Processing: DTSUI\ResIntl
14:17:18 Processing: ClFTSys
14:17:18 Processing: ClFtdata
14:17:18 Processing: MSOlap
14:17:18 Processing: MSOlap\Res1033
14:17:18 Processing: MSOlap\ResIntl
14:17:18 Processing: ATL
14:17:18 Processing: ATL\winnt
14:17:18 Processing: ATL\win9x
14:17:18 Processing: MFC42U
14:17:18 Processing: VC
14:17:18 Processing: VB
14:17:18 Processing: OCX1
14:17:18 Processing: SQLAdHlp
14:17:18 Processing: SQLAdHlp\Res1033
14:17:18 Processing: SQLAdHlp\ResOther
14:17:18 Setup type: Custom
14:17:18 End Action DialogShowSdUpgrade
14:17:18 begin ShowDialogsUpdateMask
14:17:18 nFullMask = 0xb002627, nCurrent = 0x2000, nDirection = 1
14:17:18 Updated Dialog Mask: 0xb002627, Disable Back = 0x1
14:17:18 Dialog 0x2000 returned: 1
14:17:18 End Action ShowDialogsHlpr
14:17:18 ShowDialogsGetDialog returned: nCurrent=0x1000000,index=24
14:17:18 Begin Action ShowDialogsHlpr: 0x1000000
14:17:18 Begin Action: DlgCollation
14:17:18 ShowDlgCollation returned: 1
14:17:18 collation_name = SQL_Latin1_General_CP1_CI_AS,locale_name = Latin1_General,lcid = 0x409,SortId = 52,dwCompFlags = 0x30001
14:17:18 End Action DlgCollation
14:17:18 begin ShowDialogsUpdateMask
14:17:18 nFullMask = 0xb002627, nCurrent = 0x1000000, nDirection = 1
14:17:18 Updated Dialog Mask: 0xb002627, Disable Back = 0x1
14:17:18 Dialog 0x1000000 returned: 1
14:17:18 End Action ShowDialogsHlpr
14:17:18 ShowDialogsGetDialog returned: nCurrent=0x2000000,index=25
14:17:18 Begin Action ShowDialogsHlpr: 0x2000000
14:17:18 Begin Action: DlgNetwork
14:17:18 ShowDlgNetwork returned: 1
14:17:18 [DlgServerNetwork]
14:17:18 NetworkLibs = 255
14:17:18 TCPPort = 0
14:17:18 TCPPrxy = Default
14:17:18 NMPPipeName = \\.\pipe\MSSQL$INSTNAME\sql\query
14:17:18 Result = 1
14:17:18 End Action DlgNetwork
14:17:18 begin ShowDialogsUpdateMask
14:17:18 nFullMask = 0xb002627, nCurrent = 0x2000000, nDirection = 1
14:17:18 Updated Dialog Mask: 0xb002627, Disable Back = 0x1
14:17:18 Dialog 0x2000000 returned: 1
14:17:18 End Action ShowDialogsHlpr
14:17:18 ShowDialogsGetDialog returned: nCurrent=0x8000000,index=27
14:17:18 Begin Action ShowDialogsHlpr: 0x8000000
14:17:18 Begin Action: DialogShowSdStartCopy
14:17:34 End Action DialogShowSdStartCopy
14:17:34 begin ShowDialogsUpdateMask
14:17:34 nFullMask = 0xb002627, nCurrent = 0x8000000, nDirection = 1
14:17:34 Updated Dialog Mask: 0xb002627, Disable Back = 0x1
14:17:34 Dialog 0x8000000 returned: 1
14:17:34 End Action ShowDialogsHlpr
14:17:34 ShowDialogsGetDialog returned: nCurrent=0x0,index=0
14:17:34 End: ShowDialogs()
14:17:34 Initializing Event Log
14:17:34 Begin Action : LogEvent
14:17:34 End Action : LogEvent
14:17:34 Begin: ProcessBeforeDataMove()
14:17:35 DeinstallStart returned (C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME): 0
14:17:35 End: ProcessBeforeDataMove()
14:17:35 Begin: SetToolsComponentSelection()
14:17:35 CreateSetupTopology(SERVER01), Handle : 0x14d5ee8, returned : 0
14:17:35 CreateSetupTopology returned : 0, Handle : 0x14d5ee8
14:17:35 Topology Type : 1, Return Value : 0
14:17:35 ST_GetPhysicalNode returned : 0, PNHandle : 0x14d46c8
14:17:35 PN_EnumerateEx returned : 0
14:17:35 PN_GetSQLStates returned : 0, SqlStates : 0x88020024
14:17:35 PN_StartScan [0x14d46c8] returned : 0
14:17:35 PN_GetNext [0x14d46c8] returned : 18, Handle: [0x0]
14:17:35 No more items in enumeration.
14:17:35 ReleaseSetupTopology
14:17:35 End: SetToolsComponentSelection()
14:17:35 Begin: ProcessComponentSelection()
14:17:35 End: ProcessComponentSelection()
14:17:35 Begin: LogSelectedComponents()
14:17:35 Processing: SQLProg
14:17:35 Selected: SQLProg
14:17:35 Processing: SQLProg\SQLServr
14:17:35 Selected: SQLProg\SQLServr
14:17:35 Processing: SQLProg\SQLServr\Help
14:17:35 Selected: SQLProg\SQLServr\Help
14:17:35 Processing: SQLProg\SQLServr\SCMDev
14:17:35 Selected: SQLProg\SQLServr\SCMDev
14:17:35 Processing: SQLProg\SQLServr\SCMDev\SCMh
14:17:35 Selected: SQLProg\SQLServr\SCMDev\SCMh
14:17:35 Processing: SQLProg\SQLServr\SCMDev\SCMX86Lb
14:17:35 Selected: SQLProg\SQLServr\SCMDev\SCMX86Lb
14:17:35 Processing: SQLProg\SQLServr\SCMDev\SCMALb
14:17:35 Selected: SQLProg\SQLServr\SCMDev\SCMALb
14:17:35 Processing: SQLProg\SQLServr\Rs1033
14:17:35 Selected: SQLProg\SQLServr\Rs1033
14:17:35 Processing: SQLProg\SQLServr\RsIntl
14:17:35 Selected: SQLProg\SQLServr\RsIntl
14:17:35 Processing: SQLProg\SQLServr\ActiveX
14:17:35 Selected: SQLProg\SQLServr\ActiveX
14:17:35 Processing: SQLProg\SQLServr\System
14:17:35 Selected: SQLProg\SQLServr\System
14:17:35 Processing: SQLProg\SQLServr\Watson
14:17:35 Selected: SQLProg\SQLServr\Watson
14:17:35 Processing: SQLProg\SQLServr\Watson\Watson1033
14:17:35 Selected: SQLProg\SQLServr\Watson\Watson1033
14:17:35 Processing: SQLProg\SQLServr\Watson\WatsonOther
14:17:35 Selected: SQLProg\SQLServr\Watson\WatsonOther
14:17:35 Processing: SQLProg\SQLServr\MSXMLSQL
14:17:35 Selected: SQLProg\SQLServr\MSXMLSQL
14:17:35 Processing: SQLProg\SQLServr\MSXMLSQL\Res1033
14:17:35 Selected: SQLProg\SQLServr\MSXMLSQL\Res1033
14:17:35 Processing: SQLProg\SQLServr\MSXMLSQL\ResIntl
14:17:35 Selected: SQLProg\SQLServr\MSXMLSQL\ResIntl
14:17:35 Processing: SQLProg\UpgTools
14:17:35 Processing: SQLProg\UpgTools\UpgSys
14:17:35 Processing: SQLProg\UpgTools\ActiveX
14:17:35 Processing: SQLProg\UpgTools\Res1033
14:17:35 Processing: SQLProg\UpgTools\ResOther
14:17:35 Processing: SQLProg\UpgTools\Resld
14:17:35 Processing: SQLProg\ReplSupp
14:17:35 Selected: SQLProg\ReplSupp
14:17:35 Processing: SQLProg\ReplSupp\ReplDat
14:17:35 Selected: SQLProg\ReplSupp\ReplDat
14:17:35 Processing: SQLProg\ReplSupp\RepComm
14:17:35 Selected: SQLProg\ReplSupp\RepComm
14:17:35 Processing: SQLProg\ReplSupp\RepNoDk
14:17:35 Selected: SQLProg\ReplSupp\RepNoDk
14:17:35 Processing: SQLProg\ReplSupp\ActiveX
14:17:35 Selected: SQLProg\ReplSupp\ActiveX
14:17:35 Processing: SQLProg\Install
14:17:35 Selected: SQLProg\Install
14:17:35 Processing: SQLProg\System
14:17:35 Selected: SQLProg\System
14:17:35 Processing: SQLProg\SvrExt
14:17:35 Selected: SQLProg\SvrExt
14:17:35 Processing: SQLProg\SvrExt\Help
14:17:35 Selected: SQLProg\SvrExt\Help
14:17:35 Processing: SQLProg\SvrExt\SvrExtRs
14:17:35 Selected: SQLProg\SvrExt\SvrExtRs
14:17:35 Processing: SQLProg\SvrExt\ResIntl
14:17:35 Selected: SQLProg\SvrExt\ResIntl
14:17:35 Processing: SQLProg\Dat
14:17:35 Processing: SQLProg\DatSmpl
14:17:35 Processing: SQLProg\BaseSys
14:17:35 Selected: SQLProg\BaseSys
14:17:35 Processing: SQLProg\BaseBinn
14:17:35 Selected: SQLProg\BaseBinn
14:17:35 Processing: SQLProg\MSSearch
14:17:35 Selected: SQLProg\MSSearch
14:17:35 Processing: SQLProg\MSSearch\Help
14:17:35 Selected: SQLProg\MSSearch\Help
14:17:35 Processing: SQLProg\MSSearch\ActiveX
14:17:35 Selected: SQLProg\MSSearch\ActiveX
14:17:35 Processing: SQLProg\BaseInst
14:17:35 Selected: SQLProg\BaseInst
14:17:35 Processing: SQLProg\UI
14:17:35 Processing: SQLProg\Symbols
14:17:35 Selected: SQLProg\Symbols
14:17:35 Processing: SQLProg\Symbols\EXE
14:17:35 Selected: SQLProg\Symbols\EXE
14:17:35 Processing: SQLProg\Symbols\DLL
14:17:35 Selected: SQLProg\Symbols\DLL
14:17:35 Processing: SQLProg\Perfmon
14:17:35 Selected: SQLProg\Perfmon
14:17:35 Processing: SQLProg\Perfmon\System
14:17:35 Selected: SQLProg\Perfmon\System
14:17:35 Processing: SQLProg\Root
14:17:35 Processing: SQLProg\EXE
14:17:35 Processing: SQLProg\DLL
14:17:35 Processing: MgtTool
14:17:35 Selected: MgtTool
14:17:35 Processing: MgtTool\SEM
14:17:35 Selected: MgtTool\SEM
14:17:35 Processing: MgtTool\SEM\HTML
14:17:35 Selected: MgtTool\SEM\HTML
14:17:35 Processing: MgtTool\SEM\MSD98
14:17:35 Selected: MgtTool\SEM\MSD98
14:17:35 Processing: MgtTool\SEM\MSD98SYS
14:17:35 Selected: MgtTool\SEM\MSD98SYS
14:17:35 Processing: MgtTool\SEM\MSD98Res
14:17:35 Selected: MgtTool\SEM\MSD98Res
14:17:35 Processing: MgtTool\SEM\MSD98Hlp
14:17:35 Selected: MgtTool\SEM\MSD98Hlp
14:17:35 Processing: MgtTool\SEM\Help
14:17:35 Selected: MgtTool\SEM\Help
14:17:35 Processing: MgtTool\SEM\Res1033
14:17:35 Selected: MgtTool\SEM\Res1033
14:17:35 Processing: MgtTool\SEM\ResIntl
14:17:35 Selected: MgtTool\SEM\ResIntl
14:17:35 Processing: MgtTool\SEM\MSD98RsI
14:17:35 Selected: MgtTool\SEM\MSD98RsI
14:17:35 Processing: MgtTool\SEM\ActiveX
14:17:35 Selected: MgtTool\SEM\ActiveX
14:17:35 Processing: MgtTool\SEM\ActiveX\Res1033
14:17:35 Selected: MgtTool\SEM\ActiveX\Res1033
14:17:35 Processing: MgtTool\SEM\ActiveX\ResIntl
14:17:35 Selected: MgtTool\SEM\ActiveX\ResIntl
14:17:35 Processing: MgtTool\SEM\Scripts
14:17:35 Selected: MgtTool\SEM\Scripts
14:17:35 Processing: MgtTool\SEM\OLEDB
14:17:35 Selected: MgtTool\SEM\OLEDB
14:17:35 Processing: MgtTool\SEM\OLEDB\Res1033
14:17:35 Selected: MgtTool\SEM\OLEDB\Res1033
14:17:35 Processing: MgtTool\SEM\OLEDB\ResIntl
14:17:35 Selected: MgtTool\SEM\OLEDB\ResIntl
14:17:35 Processing: MgtTool\SEM\MSD7
14:17:35 Selected: MgtTool\SEM\MSD7
14:17:35 Processing: MgtTool\SEM\MSD7Res
14:17:35 Selected: MgtTool\SEM\MSD7Res
14:17:35 Processing: MgtTool\SEM\MSD7RsI
14:17:35 Selected: MgtTool\SEM\MSD7RsI
14:17:35 Processing: MgtTool\Profiler
14:17:35 Selected: MgtTool\Profiler
14:17:35 Processing: MgtTool\Profiler\Help
14:17:35 Selected: MgtTool\Profiler\Help
14:17:35 Processing: MgtTool\Profiler\Res1033
14:17:35 Selected: MgtTool\Profiler\Res1033
14:17:35 Processing: MgtTool\Profiler\ResIntl
14:17:35 Selected: MgtTool\Profiler\ResIntl
14:17:35 Processing: MgtTool\Qryanlz
14:17:35 Selected: MgtTool\Qryanlz
14:17:35 Processing: MgtTool\Qryanlz\Help
14:17:35 Selected: MgtTool\Qryanlz\Help
14:17:35 Processing: MgtTool\Qryanlz\Res1033
14:17:35 Selected: MgtTool\Qryanlz\Res1033
14:17:35 Processing: MgtTool\Qryanlz\ResIntl
14:17:35 Selected: MgtTool\Qryanlz\ResIntl
14:17:35 Processing: MgtTool\DTCCLi
14:17:35 Selected: MgtTool\DTCCLi
14:17:35 Processing: MgtTool\Wzcnflct
14:17:35 Selected: MgtTool\Wzcnflct
14:17:35 Processing: MgtTool\Wzcnflct\WzcnHlp
14:17:35 Selected: MgtTool\Wzcnflct\WzcnHlp
14:17:35 Processing: MgtTool\Wzcnflct\Wzcn1033
14:17:35 Selected: MgtTool\Wzcnflct\Wzcn1033
14:17:35 Processing: MgtTool\Wzcnflct\WzcnOthr
14:17:35 Selected: MgtTool\Wzcnflct\WzcnOthr
14:17:35 Processing: MgtTool\Wzcnflct\WzcnCmn
14:17:35 Selected: MgtTool\Wzcnflct\WzcnCmn
14:17:35 Processing: MgtTool\UtilSys
14:17:35 Selected: MgtTool\UtilSys
14:17:35 Processing: MgtTool\UtilBinn
14:17:35 Selected: MgtTool\UtilBinn
14:17:35 Processing: Connect
14:17:35 Selected: Connect
14:17:35 Processing: Connect\ConnSys
14:17:35 Selected: Connect\ConnSys
14:17:35 Processing: Books
14:17:35 Selected: Books
14:17:35 Processing: Books\Bookso
14:17:35 Selected: Books\Bookso
14:17:35 Processing: Books\Bookso\Utils
14:17:35 Selected: Books\Bookso\Utils
14:17:35 Processing: DevTools
14:17:35 Selected: DevTools
14:17:35 Processing: DevTools\Headers and Libraries
14:17:35 Processing: DevTools\Headers and Libraries\Include
14:17:35 Processing: DevTools\Headers and Libraries\Libx86
14:17:35 Processing: DevTools\Headers and Libraries\LibAlpha
14:17:35 Processing: DevTools\Headers and Libraries\ESQLC
14:17:35 Processing: DevTools\MDAC SDKs
14:17:35 Processing: DevTools\VDI
14:17:35 Processing: DevTools\VDI\Inc
14:17:35 Processing: DevTools\VDI\Samples
14:17:35 Processing: DevTools\Dbg Int
14:17:35 Selected: DevTools\Dbg Int
14:17:35 Processing: DevTools\Dbg Int\Dbg Int Common
14:17:35 Selected: DevTools\Dbg Int\Dbg Int Common
14:17:35 Processing: DevTools\Dbg Int\EXE
14:17:35 Selected: DevTools\Dbg Int\EXE
14:17:35 Processing: Samples
14:17:35 Processing: Samples\ADO
14:17:35 Processing: Samples\DBLIB
14:17:35 Processing: Samples\Desktop
14:17:35 Processing: Samples\DTS
14:17:35 Processing: Samples\ESQLC
14:17:35 Processing: Samples\Misc
14:17:35 Processing: Samples\MSDTC
14:17:35 Processing: Samples\ODBC
14:17:35 Processing: Samples\ODS
14:17:35 Processing: Samples\OLEAut
14:17:35 Processing: Samples\Repl
14:17:35 Processing: Samples\SilverstoneDB
14:17:35 Processing: Samples\SQLDMO
14:17:35 Processing: Samples\SQLNS
14:17:35 Processing: Samples\Utils
14:17:35 Processing: Samples\XML
14:17:35 Processing: CoreRepl
14:17:35 Selected: CoreRepl
14:17:35 Processing: CoreRepl\Res1033
14:17:35 Selected: CoreRepl\Res1033
14:17:35 Processing: CoreRepl\ResIntl
14:17:35 Selected: CoreRepl\ResIntl
14:17:35 Processing: Core
14:17:35 Selected: Core
14:17:35 Processing: Core\Res1033
14:17:35 Selected: Core\Res1033
14:17:35 Processing: Core\ResOther
14:17:35 Selected: Core\ResOther
14:17:35 Processing: Repostry
14:17:35 Selected: Repostry
14:17:35 Processing: Repostry\RepstSys
14:17:35 Selected: Repostry\RepstSys
14:17:35 Processing: Repostry\Res1033
14:17:35 Selected: Repostry\Res1033
14:17:35 Processing: Repostry\ResIntl
14:17:35 Selected: Repostry\ResIntl
14:17:35 Processing: CoreMisc
14:17:35 Selected: CoreMisc
14:17:35 Processing: CoreMisc\ActiveX
14:17:35 Selected: CoreMisc\ActiveX
14:17:35 Processing: CoreMisc\ActiveX\Res1033
14:17:35 Selected: CoreMisc\ActiveX\Res1033
14:17:35 Processing: CoreMisc\ActiveX\ResIntl
14:17:35 Selected: CoreMisc\ActiveX\ResIntl
14:17:35 Processing: CoreMisc\Res1033
14:17:35 Selected: CoreMisc\Res1033
14:17:35 Processing: Monarch
14:17:35 Selected: Monarch
14:17:35 Processing: Monarch\Monr1033
14:17:35 Selected: Monarch\Monr1033
14:17:35 Processing: Monarch\MonrIntl
14:17:35 Selected: Monarch\MonrIntl
14:17:35 Processing: Jet
14:17:35 Selected: Jet
14:17:35 Processing: CoreInst
14:17:35 Selected: CoreInst
14:17:35 Processing: CoreCOM
14:17:35 Selected: CoreCOM
14:17:35 Processing: CoreCOM\Res1033
14:17:35 Selected: CoreCOM\Res1033
14:17:35 Processing: CoreCOM\ResIntl
14:17:35 Selected: CoreCOM\ResIntl
14:17:35 Processing: CoreTool
14:17:35 Selected: CoreTool
14:17:35 Processing: CoreTool\Res1033
14:17:35 Selected: CoreTool\Res1033
14:17:35 Processing: CoreTool\ResOther
14:17:35 Selected: CoreTool\ResOther
14:17:35 Processing: DBLibCli
14:17:35 Selected: DBLibCli
14:17:35 Processing: SFExt
14:17:35 Selected: SFExt
14:17:35 Processing: SFExt\ActiveX
14:17:35 Selected: SFExt\ActiveX
14:17:35 Processing: SFExt\ActiveX\Res1033
14:17:35 Selected: SFExt\ActiveX\Res1033
14:17:35 Processing: SFExt\ActiveX\ResIntl
14:17:35 Selected: SFExt\ActiveX\ResIntl
14:17:35 Processing: SFExt\Res1033
14:17:35 Selected: SFExt\Res1033
14:17:35 Processing: SFExt\ResIntl
14:17:35 Selected: SFExt\ResIntl
14:17:35 Processing: Trace
14:17:35 Selected: Trace
14:17:35 Processing: Trace\Res1033
14:17:35 Selected: Trace\Res1033
14:17:35 Processing: Trace\ResOther
14:17:35 Selected: Trace\ResOther
14:17:35 Processing: CnctBinn
14:17:35 Processing: MiscCore
14:17:35 Selected: MiscCore
14:17:35 Processing: MC
14:17:35 Selected: MC
14:17:35 Processing: MC\MC1033
14:17:35 Selected: MC\MC1033
14:17:35 Processing: MC\MCIntl
14:17:35 Selected: MC\MCIntl
14:17:35 Processing: MC\Help
14:17:35 Selected: MC\Help
14:17:35 Processing: UI
14:17:35 Processing: UI\UIHlp
14:17:35 Processing: UI\UI1033
14:17:35 Processing: UI\UIIntl
14:17:35 Processing: ClstSys
14:17:35 Processing: SQLMgr
14:17:35 Selected: SQLMgr
14:17:35 Processing: SQLMgr\Res1033
14:17:35 Selected: SQLMgr\Res1033
14:17:35 Processing: SQLMgr\ResIntl
14:17:35 Selected: SQLMgr\ResIntl
14:17:35 Processing: SvrTool
14:17:35 Selected: SvrTool
14:17:35 Processing: SvrTool\Res1033
14:17:35 Selected: SvrTool\Res1033
14:17:35 Processing: SvrTool\ResIntl
14:17:35 Selected: SvrTool\ResIntl
14:17:35 Processing: DTSUI
14:17:35 Selected: DTSUI
14:17:35 Processing: DTSUI\Res1033
14:17:35 Selected: DTSUI\Res1033
14:17:35 Processing: DTSUI\ResIntl
14:17:35 Selected: DTSUI\ResIntl
14:17:35 Processing: ClFTSys
14:17:35 Processing: ClFtdata
14:17:35 Processing: MSOlap
14:17:35 Selected: MSOlap
14:17:35 Processing: MSOlap\Res1033
14:17:35 Selected: MSOlap\Res1033
14:17:35 Processing: MSOlap\ResIntl
14:17:35 Selected: MSOlap\ResIntl
14:17:35 Processing: ATL
14:17:35 Selected: ATL
14:17:35 Processing: ATL\winnt
14:17:35 Selected: ATL\winnt
14:17:35 Processing: ATL\win9x
14:17:35 Selected: ATL\win9x
14:17:35 Processing: MFC42U
14:17:35 Selected: MFC42U
14:17:35 Processing: VC
14:17:35 Selected: VC
14:17:35 Processing: VB
14:17:35 Selected: VB
14:17:35 Processing: OCX1
14:17:35 Processing: SQLAdHlp
14:17:35 Selected: SQLAdHlp
14:17:35 Processing: SQLAdHlp\Res1033
14:17:35 Selected: SQLAdHlp\Res1033
14:17:35 Processing: SQLAdHlp\ResOther
14:17:35 Selected: SQLAdHlp\ResOther
14:17:35 {E07FDDBE-5A21-11d2-9DAD-00C04F79D434}
14:17:35 {E07FDDC7-5A21-11d2-9DAD-00C04F79D434}
14:17:35 {E07FDDC0-5A21-11d2-9DAD-00C04F79D434}
14:17:35 {E07FDDBF-5A21-11d2-9DAD-00C04F79D434}
14:17:35 End: LogSelectedComponents()
14:17:35 Processing: SQLProg
14:17:35 Processing: SQLProg\SQLServr
14:17:35 Processing: SQLProg\SQLServr\Help
14:17:35 Processing: SQLProg\SQLServr\SCMDev
14:17:35 Processing: SQLProg\SQLServr\SCMDev\SCMh
14:17:35 Processing: SQLProg\SQLServr\SCMDev\SCMX86Lb
14:17:35 Processing: SQLProg\SQLServr\SCMDev\SCMALb
14:17:35 Processing: SQLProg\SQLServr\Rs1033
14:17:35 Processing: SQLProg\SQLServr\RsIntl
14:17:35 Processing: SQLProg\SQLServr\ActiveX
14:17:35 Processing: SQLProg\SQLServr\System
14:17:35 Processing: SQLProg\SQLServr\Watson
14:17:35 Processing: SQLProg\SQLServr\Watson\Watson1033
14:17:35 Processing: SQLProg\SQLServr\Watson\WatsonOther
14:17:35 Processing: SQLProg\SQLServr\MSXMLSQL
14:17:35 Processing: SQLProg\SQLServr\MSXMLSQL\Res1033
14:17:35 Processing: SQLProg\SQLServr\MSXMLSQL\ResIntl
14:17:35 Processing: SQLProg\UpgTools
14:17:35 Processing: SQLProg\UpgTools\UpgSys
14:17:35 Processing: SQLProg\UpgTools\ActiveX
14:17:35 Processing: SQLProg\UpgTools\Res1033
14:17:35 Processing: SQLProg\UpgTools\ResOther
14:17:35 Processing: SQLProg\UpgTools\Resld
14:17:35 Processing: SQLProg\ReplSupp
14:17:35 Processing: SQLProg\ReplSupp\ReplDat
14:17:35 Processing: SQLProg\ReplSupp\RepComm
14:17:35 Processing: SQLProg\ReplSupp\RepNoDk
14:17:35 Processing: SQLProg\ReplSupp\ActiveX
14:17:35 Processing: SQLProg\Install
14:17:35 Processing: SQLProg\System
14:17:35 Processing: SQLProg\SvrExt
14:17:35 Processing: SQLProg\SvrExt\Help
14:17:35 Processing: SQLProg\SvrExt\SvrExtRs
14:17:35 Processing: SQLProg\SvrExt\ResIntl
14:17:35 Processing: SQLProg\Dat
14:17:35 Processing: SQLProg\DatSmpl
14:17:35 Processing: SQLProg\BaseSys
14:17:35 Processing: SQLProg\BaseBinn
14:17:35 Processing: SQLProg\MSSearch
14:17:35 Processing: SQLProg\MSSearch\Help
14:17:35 Processing: SQLProg\MSSearch\ActiveX
14:17:35 Processing: SQLProg\BaseInst
14:17:35 Processing: SQLProg\UI
14:17:35 Processing: SQLProg\Symbols
14:17:35 Processing: SQLProg\Symbols\EXE
14:17:35 Processing: SQLProg\Symbols\DLL
14:17:35 Processing: SQLProg\Perfmon
14:17:35 Processing: SQLProg\Perfmon\System
14:17:35 Processing: SQLProg\Root
14:17:35 Processing: SQLProg\EXE
14:17:35 Processing: SQLProg\DLL
14:17:35 Processing: MgtTool
14:17:35 Processing: MgtTool\SEM
14:17:35 Processing: MgtTool\SEM\HTML
14:17:35 Processing: MgtTool\SEM\MSD98
14:17:35 Processing: MgtTool\SEM\MSD98SYS
14:17:35 Processing: MgtTool\SEM\MSD98Res
14:17:35 Processing: MgtTool\SEM\MSD98Hlp
14:17:35 Processing: MgtTool\SEM\Help
14:17:35 Processing: MgtTool\SEM\Res1033
14:17:35 Processing: MgtTool\SEM\ResIntl
14:17:35 Processing: MgtTool\SEM\MSD98RsI
14:17:35 Processing: MgtTool\SEM\ActiveX
14:17:35 Processing: MgtTool\SEM\ActiveX\Res1033
14:17:35 Processing: MgtTool\SEM\ActiveX\ResIntl
14:17:35 Processing: MgtTool\SEM\Scripts
14:17:35 Processing: MgtTool\SEM\OLEDB
14:17:35 Processing: MgtTool\SEM\OLEDB\Res1033
14:17:35 Processing: MgtTool\SEM\OLEDB\ResIntl
14:17:35 Processing: MgtTool\SEM\MSD7
14:17:35 Processing: MgtTool\SEM\MSD7Res
14:17:35 Processing: MgtTool\SEM\MSD7RsI
14:17:35 Processing: MgtTool\Profiler
14:17:35 Processing: MgtTool\Profiler\Help
14:17:35 Processing: MgtTool\Profiler\Res1033
14:17:35 Processing: MgtTool\Profiler\ResIntl
14:17:35 Processing: MgtTool\Qryanlz
14:17:35 Processing: MgtTool\Qryanlz\Help
14:17:35 Processing: MgtTool\Qryanlz\Res1033
14:17:35 Processing: MgtTool\Qryanlz\ResIntl
14:17:35 Processing: MgtTool\DTCCLi
14:17:35 Processing: MgtTool\Wzcnflct
14:17:35 Processing: MgtTool\Wzcnflct\WzcnHlp
14:17:35 Processing: MgtTool\Wzcnflct\Wzcn1033
14:17:35 Processing: MgtTool\Wzcnflct\WzcnOthr
14:17:35 Processing: MgtTool\Wzcnflct\WzcnCmn
14:17:35 Processing: MgtTool\UtilSys
14:17:35 Processing: MgtTool\UtilBinn
14:17:35 Processing: Connect
14:17:35 Processing: Connect\ConnSys
14:17:35 Processing: Books
14:17:35 Processing: Books\Bookso
14:17:35 Processing: Books\Bookso\Utils
14:17:35 Processing: DevTools
14:17:35 Processing: DevTools\Headers and Libraries
14:17:35 Processing: DevTools\Headers and Libraries\Include
14:17:35 Processing: DevTools\Headers and Libraries\Libx86
14:17:35 Processing: DevTools\Headers and Libraries\LibAlpha
14:17:35 Processing: DevTools\Headers and Libraries\ESQLC
14:17:35 Processing: DevTools\MDAC SDKs
14:17:35 Processing: DevTools\VDI
14:17:35 Processing: DevTools\VDI\Inc
14:17:35 Processing: DevTools\VDI\Samples
14:17:35 Processing: DevTools\Dbg Int
14:17:35 Processing: DevTools\Dbg Int\Dbg Int Common
14:17:35 Processing: DevTools\Dbg Int\EXE
14:17:35 Processing: Samples
14:17:35 Processing: Samples\ADO
14:17:35 Processing: Samples\DBLIB
14:17:35 Processing: Samples\Desktop
14:17:35 Processing: Samples\DTS
14:17:35 Processing: Samples\ESQLC
14:17:35 Processing: Samples\Misc
14:17:35 Processing: Samples\MSDTC
14:17:35 Processing: Samples\ODBC
14:17:35 Processing: Samples\ODS
14:17:35 Processing: Samples\OLEAut
14:17:35 Processing: Samples\Repl
14:17:35 Processing: Samples\SilverstoneDB
14:17:35 Processing: Samples\SQLDMO
14:17:35 Processing: Samples\SQLNS
14:17:35 Processing: Samples\Utils
14:17:35 Processing: Samples\XML
14:17:35 Processing: CoreRepl
14:17:35 Processing: CoreRepl\Res1033
14:17:35 Processing: CoreRepl\ResIntl
14:17:35 Processing: Core
14:17:35 Processing: Core\Res1033
14:17:35 Processing: Core\ResOther
14:17:35 Processing: Repostry
14:17:35 Processing: Repostry\RepstSys
14:17:35 Processing: Repostry\Res1033
14:17:35 Processing: Repostry\ResIntl
14:17:35 Processing: CoreMisc
14:17:35 Processing: CoreMisc\ActiveX
14:17:35 Processing: CoreMisc\ActiveX\Res1033
14:17:35 Processing: CoreMisc\ActiveX\ResIntl
14:17:35 Processing: CoreMisc\Res1033
14:17:35 Processing: Monarch
14:17:35 Processing: Monarch\Monr1033
14:17:35 Processing: Monarch\MonrIntl
14:17:35 Processing: Jet
14:17:35 Processing: CoreInst
14:17:35 Processing: CoreCOM
14:17:35 Processing: CoreCOM\Res1033
14:17:35 Processing: CoreCOM\ResIntl
14:17:35 Processing: CoreTool
14:17:35 Processing: CoreTool\Res1033
14:17:35 Processing: CoreTool\ResOther
14:17:35 Processing: DBLibCli
14:17:35 Processing: SFExt
14:17:35 Processing: SFExt\ActiveX
14:17:35 Processing: SFExt\ActiveX\Res1033
14:17:35 Processing: SFExt\ActiveX\ResIntl
14:17:35 Processing: SFExt\Res1033
14:17:35 Processing: SFExt\ResIntl
14:17:35 Processing: Trace
14:17:35 Processing: Trace\Res1033
14:17:35 Processing: Trace\ResOther
14:17:35 Processing: CnctBinn
14:17:35 Processing: MiscCore
14:17:35 Processing: MC
14:17:35 Processing: MC\MC1033
14:17:35 Processing: MC\MCIntl
14:17:35 Processing: MC\Help
14:17:35 Processing: UI
14:17:35 Processing: UI\UIHlp
14:17:35 Processing: UI\UI1033
14:17:35 Processing: UI\UIIntl
14:17:35 Processing: ClstSys
14:17:35 Processing: SQLMgr
14:17:35 Processing: SQLMgr\Res1033
14:17:35 Processing: SQLMgr\ResIntl
14:17:35 Processing: SvrTool
14:17:35 Processing: SvrTool\Res1033
14:17:35 Processing: SvrTool\ResIntl
14:17:35 Processing: DTSUI
14:17:35 Processing: DTSUI\Res1033
14:17:35 Processing: DTSUI\ResIntl
14:17:35 Processing: ClFTSys
14:17:35 Processing: ClFtdata
14:17:35 Processing: MSOlap
14:17:35 Processing: MSOlap\Res1033
14:17:35 Processing: MSOlap\ResIntl
14:17:35 Processing: ATL
14:17:35 Processing: ATL\winnt
14:17:35 Processing: ATL\win9x
14:17:35 Processing: MFC42U
14:17:35 Processing: VC
14:17:35 Processing: VB
14:17:35 Processing: OCX1
14:17:35 Processing: SQLAdHlp
14:17:35 Processing: SQLAdHlp\Res1033
14:17:35 Processing: SQLAdHlp\ResOther
14:17:35 SQL program folder: C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME
14:17:35 SQL data folder: C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME
14:17:35 Windows system folder: C:\WINDOWS\system32\
14:17:35 Prog req: 61137, Data req: 3072, Sys req: 50573
14:17:35 Prog avail: 1573556, Data avail: 1573556, Sys avail: 1573556
14:17:35 Prog req vs. avail, 114782, 1573556
14:17:35 Data req vs. avail, 3072, 1573556
14:17:35 Sys req vs. avail, 53645, 1573556
14:17:35 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Timeout 5000 -Service SQLAgent$INSTNAME
14:17:35 Process Exit Code: (0)
14:17:35 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Timeout 5000 -Service MSSQL$INSTNAME
14:17:35 Process Exit Code: (0)
14:17:35 Begin: InstallPkgs(ID_INSTALLMDAC)
14:17:35 Begin Action: Locked Connectivity Files Check
14:17:35 ConnectivityLocked returned: 0
14:17:35 The operation completed successfully.

14:17:35 End Action: Locked Connectivity Files Check
14:17:35 Setup is installing Microsoft Data Access Components (MDAC) ...
14:17:35 D:\SQL2KSP42\x86\Other\sqlredis.exe /q:a /C:"setupre.exe MDACQFE=0 WARN=1 -s -SMS"
14:17:35 Unloading library - sqlsut.dll (#U2)
14:17:43 Loading library - sqlsut.dll (#L2)
14:17:43 ExitCode: 0
14:17:43 End: InstallPkgs(ID_INSTALLMDAC)
14:17:43 **** STARTING OPEN OP IN WRITE MODE ****
14:17:43 **** CLOSED OPEN OP IN WRITE MODE ****
14:17:43 Begin: MoveFileData()
14:17:43 Enabled SELFREGISTERBATCH
14:17:43 Enabled CORECOMPONENTHANDLING
14:17:49 Begin Action: MoveFileDataSpecial
14:17:49 End Action: MoveFileDataSpecial
14:17:49 End: MoveFileData()
14:17:49 Begin: ProcessAfterDataMove()
14:17:49 Begin Action : Installing Server Net
14:17:49 Server Instance : INSTNAME
14:17:49 Server Net Will only be installed on server only in Enterprise Editions
14:17:49 End: ProcessAfterDataMove()
14:17:49 Begin: BuildServer()
14:17:49 Begin Action: CreateRegistrySetSQL
14:17:49 End Action: CreateRegistrySetSQL
14:17:49 Begin Action: RegWriteSetupEntry
14:17:49 End Action: RegWriteSetupEntry
14:17:49 *** Unable to get RegisteredOwner to apply to Serial number
14:17:49 Begin Action: CreateSer
14:17:49 End Action: CreateSer
14:17:49 SetFileSecuritySQLAndAdmin for C:\WINDOWS\setup.iss returned: 0, 0
14:17:49 SetFileSecuritySQLAndAdmin for C:\WINDOWS\sqlsp.log returned: 0, 0
14:17:49 SetFileSecuritySQLAndAdmin for returned: 3, 3
14:17:49 SetFileSecuritySQLAndAdmin for C:\WINDOWS\sqlsp.log returned: 0, 0
14:17:49 SetFileSecuritySQLAndAdmin for C:\WINDOWS\sqlstp.log returned: 0, 0
14:17:49 SetFileSecPerfAndLogUsers for C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\Binn\SQLCTR80.DLL returned: 0, 0
14:17:49 Begin ServPriv (INSTNAME)
14:17:49 End ServPriv()
14:17:50 Upgrading databases
14:17:50 Upgrading databases on instance 'INSTNAME'
14:17:50 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Service MSSQL$INSTNAME
14:17:50 Process Exit Code: (0)
14:17:50 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Service MSSQL$INSTNAME
14:17:50 Process Exit Code: (0)
14:17:50 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 1 -Service MSSQL$INSTNAME -StartupOptions \-T4022 \-T4010 \-m
14:18:41 Process Exit Code: (0)
14:18:41 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\replsys.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\replsys.sql" -Usa -P"
14:19:18 Process Exit Code: (0)
14:19:18 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\replcom.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\replcom.sql" -Usa -P"
14:19:35 Process Exit Code: (0)
14:19:35 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\repltran.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\repltran.sql" -Usa -P"
14:19:57 Process Exit Code: (0)
14:19:57 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\replmerg.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\replmerg.sql" -Usa -P"
14:20:25 Process Exit Code: (0)
14:20:25 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\remove_old_msx_accounts.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\remove_old_msx_accounts.sql" -Usa -P"
14:20:25 Process Exit Code: (0)
14:20:25 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\sp4_serv_uni.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\sp4_serv_uni.sql" -Usa -P"
14:20:27 Process Exit Code: (0)
14:20:27 D:\SQL2KS~1\x86\BINN\osql.exe -SlpcTongue TiedERVER01\INSTNAME -b -n -d master -o "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\80sp4-tools.out" -i "C:\Program Files\Microsoft SQL Server\MSSQL$INSTNAME\install\80sp4-tools.sql" -Usa -P"
14:20:28 Process Exit Code: (1)
14:20:33 Error running script: 80sp4-tools.sql (1)
14:20:33 C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\SqlSetup\Bin\scm.exe -Silent 1 -Action 6 -Service MSSQL$INSTNAME
14:21:08 Process Exit Code: (0)
14:21:08 Action CleanUpInstall:
14:21:08 Installation Failed.

I hope for any help, because re-installing is not an option.There are 250 db's on it.

thanks so far.

rb

I am having the same problem. I found a file under the Program Files\Microsoft SQL Server\MSSQL$instancename\Install directory called 80sp4-tools.out. It is telling me that I am having a problem of

"Cannot load the DLL xpstar.dll, or one of the DLLs it references. Reason: 127(The specified procedure could not be found.)." I found some other writes up on that and tried copying an original copy of it to Binn directory of the instance I was working on. It got me past some other problems. But when I try to apply the pack again it gives me the same error. So hopefully this will point you to a log that might hold the answer for you.

|||

What is the settings to your boot.ini?

Drake Teran