Showing posts with label running. Show all posts
Showing posts with label running. Show all posts

Friday, March 30, 2012

Problems with using Variables in place of Nested Queires

Ok, I had a problem yesterday where the code was erroring out before running. Now it looks like I am presented with some logic errors that may be because of how I have implemented the variables.

Right now the below code runs, but it does not affect any codes "(0 row(s) affected)". I have been able to pull up over 500 rows that the code should affect. I think their may be a fundimental problem with the code below because if I substitute a specific number for the values of the variables, then I still produce the same results (no rows affected).

Ack please help!

DECLARE @.q4TotRebate int, @.sumRebate int, @.q4TotRed int, @.sumRedeemed int

Update tblTransactionSummary

Set TotalRebate =
CASE
WHEN ((@.q4TotRebate + @.sumRebate)-(@.q4TotRed + @.sumRedeemed)) < 0
THEN (TotalRebate - ((@.q4TotRebate + @.sumRebate)-(@.q4TotRed + @.sumRedeemed)))
WHEN ((@.q4TotRebate + @.sumRebate)-(@.q4TotRed + @.sumRedeemed)) > 0
THEN TotalRebate
END

From tblTransactionSummary as t
WHERE

@.q4TotRebate = ISNULL((Select n.TotalRebateAmount
FROM tblSummary as n
WHERE t.AccountNumber = n.AccountNumber
AND Quarter = '2006/Q4'),0)
AND
@.sumRebate = ISNULL(((SELECT SUM(b.TransactionAmount)
FROM tblTransactionDetail as b
WHERE t.AccountNumber = b.AccountNumber
AND b.TransactionType = 'P'
and b.TransactionDate > '12/31/06'
AND b.TransactionDate < '01/06/07') * .01), 0)
AND
@.q4TotRed =ISNULL((Select SUM(g.QtrRebateRedeemed)
FROM tblSummary as g
WHERE g.AccountNumber = t.AccountNumber
And Quarter < '2007/Q1'),0)
AND
@.sumRedeemed = ISNULL((SELECT SUM(m.TransactionAmount)
FROM tblTransactionDetail as m
WHERE t.AccountNumber = m.AccountNumber
AND m.TransactionType = 'R'
AND m.TransactionDate > '12/31/06'
AND m.TransactionDate < '01/06/07'),0)http://www.msdner.com/forum/thread591536.html

Problems with transactional replication.

Hi, I have confired some transactional replication with puss subscrition
between servers running sql server 2000 sp3. The replication works fine,
but yesterday after the publication/distribution was restared the log
reader agent of each publication reports this error:
The process could not execute 'sp_msadd_repl_commands27hp'
on publishername
Do somebody know how could I resolve the problem.
Thanks a lot for your help.
*** Sent via Developersdex http://www.codecomments.com ***
Please try increasing theLogReader's QueryTimeout parameter.
Also it might be interesting to check the view msdistribution_status to see
how many commands are in the pipeline.
Cheers,
Paul Ibison SQL Server MVP, www.replicationanswers.com
(recommended sql server 2000 replication book:
http://www.nwsu.com/0974973602p.html)
sql

Problems with tempdb log.

Hi, I am trying to execute a process on a server that is running sql
server 2000 sp3. When i try to execute the process displays this error:
Error: 9002, Severity: 17, State: 6
The log file for database 'tempdb' is full. Back up the transaction log
for the database to free up some log space.
I check the tempdb log and is ok, i create a secundary file on another
disk and it still display the error. I drop and recreate the second file
and the error continues.
The process i executed by a cognos software.
The server has enought free space.
Do you know what could be the reason of this error.
Thanks a lot for your help.
*** Sent via Developersdex http://www.codecomments.com ***Can you check for open transactions?
dbcc opentran
go
AMB
"MariaGuzman" wrote:

> Hi, I am trying to execute a process on a server that is running sql
> server 2000 sp3. When i try to execute the process displays this error:
> Error: 9002, Severity: 17, State: 6
> The log file for database 'tempdb' is full. Back up the transaction log
> for the database to free up some log space.
> I check the tempdb log and is ok, i create a secundary file on another
> disk and it still display the error. I drop and recreate the second file
> and the error continues.
> The process i executed by a cognos software.
> The server has enought free space.
> Do you know what could be the reason of this error.
> Thanks a lot for your help.
>
>
>
> *** Sent via Developersdex http://www.codecomments.com ***
>|||Better to read this.
Why is tempdb full, and how can I prevent this from happening?
http://www.aspfaq.com/show.asp?id=2446
AMB
P.S. Thanks god I do not have to pay to Aaron every time I post a link from
his oustanding web site.
"Alejandro Mesa" wrote:
[vbcol=seagreen]
> Can you check for open transactions?
> dbcc opentran
> go
>
> AMB
> "MariaGuzman" wrote:
>sql

Problems with tempdb log.

Hi, I am trying to execute a process on a server that is running sql
server 2000 sp3. When i try to execute the process displays this error:
Error: 9002, Severity: 17, State: 6
The log file for database 'tempdb' is full. Back up the transaction log
for the database to free up some log space.
I check the tempdb log and is ok, i create a secundary file on another
disk and it still display the error. I drop and recreate the second file
and the error continues.
The process i executed by a cognos software.
The server has enought free space.
Do you know what could be the reason of this error.
Thanks a lot for your help.
*** Sent via Developersdex http://www.developersdex.com ***Can you check for open transactions?
dbcc opentran
go
AMB
"MariaGuzman" wrote:
> Hi, I am trying to execute a process on a server that is running sql
> server 2000 sp3. When i try to execute the process displays this error:
> Error: 9002, Severity: 17, State: 6
> The log file for database 'tempdb' is full. Back up the transaction log
> for the database to free up some log space.
> I check the tempdb log and is ok, i create a secundary file on another
> disk and it still display the error. I drop and recreate the second file
> and the error continues.
> The process i executed by a cognos software.
> The server has enought free space.
> Do you know what could be the reason of this error.
> Thanks a lot for your help.
>
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
>|||Better to read this.
Why is tempdb full, and how can I prevent this from happening?
http://www.aspfaq.com/show.asp?id=2446
AMB
P.S. Thanks god I do not have to pay to Aaron every time I post a link from
his oustanding web site.
"Alejandro Mesa" wrote:
> Can you check for open transactions?
> dbcc opentran
> go
>
> AMB
> "MariaGuzman" wrote:
> > Hi, I am trying to execute a process on a server that is running sql
> > server 2000 sp3. When i try to execute the process displays this error:
> >
> > Error: 9002, Severity: 17, State: 6
> > The log file for database 'tempdb' is full. Back up the transaction log
> > for the database to free up some log space.
> >
> > I check the tempdb log and is ok, i create a secundary file on another
> > disk and it still display the error. I drop and recreate the second file
> > and the error continues.
> >
> > The process i executed by a cognos software.
> >
> > The server has enought free space.
> >
> > Do you know what could be the reason of this error.
> >
> > Thanks a lot for your help.
> >
> >
> >
> >
> >
> >
> > *** Sent via Developersdex http://www.developersdex.com ***
> >

Problems with tempdb log.

Hi, I am trying to execute a process on a server that is running sql
server 2000 sp3. When i try to execute the process displays this error:
Error: 9002, Severity: 17, State: 6
The log file for database 'tempdb' is full. Back up the transaction log
for the database to free up some log space.
I check the tempdb log and is ok, i create a secundary file on another
disk and it still display the error. I drop and recreate the second file
and the error continues.
The process i executed by a cognos software.
The server has enought free space.
Do you know what could be the reason of this error.
Thanks a lot for your help.
*** Sent via Developersdex http://www.codecomments.com ***
Can you check for open transactions?
dbcc opentran
go
AMB
"MariaGuzman" wrote:

> Hi, I am trying to execute a process on a server that is running sql
> server 2000 sp3. When i try to execute the process displays this error:
> Error: 9002, Severity: 17, State: 6
> The log file for database 'tempdb' is full. Back up the transaction log
> for the database to free up some log space.
> I check the tempdb log and is ok, i create a secundary file on another
> disk and it still display the error. I drop and recreate the second file
> and the error continues.
> The process i executed by a cognos software.
> The server has enought free space.
> Do you know what could be the reason of this error.
> Thanks a lot for your help.
>
>
>
> *** Sent via Developersdex http://www.codecomments.com ***
>
|||Better to read this.
Why is tempdb full, and how can I prevent this from happening?
http://www.aspfaq.com/show.asp?id=2446
AMB
P.S. Thanks god I do not have to pay to Aaron every time I post a link from
his oustanding web site.
"Alejandro Mesa" wrote:
[vbcol=seagreen]
> Can you check for open transactions?
> dbcc opentran
> go
>
> AMB
> "MariaGuzman" wrote:

Problems with System Stored Procedures Permissions

Hello,
I have a problem with Server Traces. Actually I'm running some different
audit traces on SQL2K, that I can access with SQL Profiler or using System
UDF like "fn_trace_getinfo" and "fn_trace_gettable".
The problem is that I need to access to the audit trace files with a
different user, who is not in sysadmin role. So, I want this is user to be
capable to execute that system UDF.
I grant select permissions on "fn_trace_getinfo" to the user,but when I try
to execute a simple query like
"select * from :: fn_trace_getinfo (default)", I receive a message like
this:
Server: Msg 262, Level 14, State 12, Procedure fn_trace_getinfo, Line 10
FN_TRACE_GETINFO permission denied in database 'master'.
Despite this message I have the permissions I need on master. I've been
reading out in the web and books, and all them say that a member of fix
sysadmin role can execute the UDF. But I wonder if there is a way to give
permissions to another users.
Can anyone help me please?
Thanks in advance.
Victor wrote:
> Hello,
> I have a problem with Server Traces. Actually I'm running some
> different audit traces on SQL2K, that I can access with SQL Profiler
> or using System UDF like "fn_trace_getinfo" and "fn_trace_gettable".
> The problem is that I need to access to the audit trace files with a
> different user, who is not in sysadmin role. So, I want this is user
> to be capable to execute that system UDF.
> I grant select permissions on "fn_trace_getinfo" to the user,but when
> I try to execute a simple query like
> "select * from :: fn_trace_getinfo (default)", I receive a message
> like this:
> Server: Msg 262, Level 14, State 12, Procedure fn_trace_getinfo, Line
> 10 FN_TRACE_GETINFO permission denied in database 'master'.
> Despite this message I have the permissions I need on master. I've
> been reading out in the web and books, and all them say that a member
> of fix sysadmin role can execute the UDF. But I wonder if there is a
> way to give permissions to another users.
> Can anyone help me please?
> Thanks in advance.
Running traces in SQL 2000 is limited to system administrators. SQL 2005
allows you to grant trace rights using the Alter Trace grant.
David Gugick - SQL Server MVP
Quest Software
sql

Wednesday, March 28, 2012

Problems with stored procedure

This is probably a stupid question but I cannot find the data. The code
following is in a stored procedure I am running in SS 2000. It executes, and
if I run it in Query Analyzer I see the results. I have the parameters
defined in the Parameters collection of an ADO command object and have the
direction defined as output (I've also tried 'adParamInputOutput') However,
the values of the parameter objects all contain NULL (except the first two
which are input parameters).
Where is the returned data? I have even have the execute method return a
resultset and checked the Fields collection on it. I have written quite a fe
w
stored procedures, but never any that returned data in output parameters. I
am beginning to see why.
========================================
========
CREATE PROCEDURE sp_hr_pay_register_get_summary_totals
@.PayDate smalldatetime,
@.Location nvarchar(5),
@.RegHours numeric(8,2) OUTPUT,
@.RegEarnings numeric(8,2) OUTPUT,
@.OTHours numeric(8,2) OUTPUT,
@.OTEarnings numeric(8,2) OUTPUT,
@.OtherHours numeric(8,2) OUTPUT,
@.OtherEarnings numeric(8,2) OUTPUT,
@.Taxes numeric(8,2) OUTPUT,
@.Deductions numeric(8,2) OUTPUT
AS
SELECT @.RegHours = SUM(ISNULL(P.Hours, 0))
FROM tblPayrollRegisterPayments P INNER JOIN
tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER JOIN
tblDepartments D ON E.DepartmentCode = D.DeptID
WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AND
P.PayTypeCode = 'regular pa'
SELECT @.OTHours = SUM(ISNULL(P.Hours, 0))
FROM tblPayrollRegisterPayments P INNER JOIN
tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER JOIN
tblDepartments D ON E.DepartmentCode = D.DeptID
WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AND
P.PayTypeCode = 'overtime'
SELECT @.OtherHours = SUM(ISNULL(P.Hours, 0))
FROM tblPayrollRegisterPayments P INNER JOIN
tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER JOIN
tblDepartments D ON E.DepartmentCode = D.DeptID
WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AND
P.PayTypeCode NOT IN ('regular pa', 'overtime')
SELECT @.RegEarnings = SUM(ISNULL(P.Amount, 0))
FROM tblPayrollRegisterPayments P INNER JOIN
tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER JOIN
tblDepartments D ON E.DepartmentCode = D.DeptID
WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AND
P.PayTypeCode = 'regular pa'
SELECT @.OTEarnings = SUM(ISNULL(P.Amount, 0))
FROM tblPayrollRegisterPayments P INNER JOIN
tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER JOIN
tblDepartments D ON E.DepartmentCode = D.DeptID
WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AND
P.PayTypeCode = 'overtime'
SELECT @.OtherEarnings = SUM(ISNULL(P.Amount, 0))
FROM tblPayrollRegisterPayments P INNER JOIN
tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER JOIN
tblDepartments D ON E.DepartmentCode = D.DeptID
WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AND
P.PayTypeCode NOT IN ('regular pa', 'overtime')
SELECT @.Taxes = SUM(ISNULL(Ded.Amount, 0))
FROM tblPayrollRegisterDeductions Ded INNER JOIN
tblPayrollRegisterEmployee E ON Ded.EmpID = E.EmpID AND
Ded.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
JOIN
tblDepartments D ON E.DepartmentCode = D.DeptID INNER
JOIN
tblDeductionCodes DC ON Ded.DeductionCode =
DC.DeductionCode
WHERE (D.DeptLocation = @.Location) AND (DC.DeductionType = 'TAX') AND
(Ded.PayPeriodEndingDate = @.PayDate)
SELECT @.Deductions = SUM(ISNULL(Ded.Amount, 0))
FROM tblPayrollRegisterDeductions Ded INNER JOIN
tblPayrollRegisterEmployee E ON Ded.EmpID = E.EmpID AND
Ded.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
JOIN
tblDepartments D ON E.DepartmentCode = D.DeptID INNER
JOIN
tblDeductionCodes DC ON Ded.DeductionCode =
DC.DeductionCode
WHERE (D.DeptLocation = @.Location) AND (DC.DeductionType = 'DED') AND
(Ded.PayPeriodEndingDate = @.PayDate)
-- SELECT @.RegHours, @.RegEarnings, @.OTHours, @.OTEarnings, @.OtherHours,
@.OtherEarnings, @.Taxes, @.Deductions
GOSuggest you put
SET NOCOUNT ON
at the start of the stored procedure. There is a known ADO issue with
this.|||Did not make any difference.
"markc600@.hotmail.com" wrote:

> Suggest you put
> SET NOCOUNT ON
> at the start of the stored procedure. There is a known ADO issue with
> this.
>|||You didn't show your ASP code but that seems to be where the problem is
(since it works in QA, the problem clearly isn't the SQL). Have a look at
http://www.aspfaq.com/params.htm for a walk-through of using output
parameters from ASP.
That said.
You should never use sp_ prefix on user-defined stored procedures.
And if you think you are being more efficient by using OUTPUT parameters and
changing a SELECT query into a dozen different queries, you should test both
versions. All told, I am betting it will be more efficient to just run a
single GROUP BY query and return a result set to ASP.
"Doug" <dbb211-hd204@.yahoo.com> wrote in message
news:D74A5285-C542-41C5-AF5C-C2F2A59A7ABE@.microsoft.com...
> This is probably a stupid question but I cannot find the data. The code
> following is in a stored procedure I am running in SS 2000. It executes,
> and
> if I run it in Query Analyzer I see the results. I have the parameters
> defined in the Parameters collection of an ADO command object and have the
> direction defined as output (I've also tried 'adParamInputOutput')
> However,
> the values of the parameter objects all contain NULL (except the first two
> which are input parameters).
> Where is the returned data? I have even have the execute method return a
> resultset and checked the Fields collection on it. I have written quite a
> few
> stored procedures, but never any that returned data in output parameters.
> I
> am beginning to see why.
> ========================================
========
>
> CREATE PROCEDURE sp_hr_pay_register_get_summary_totals
> @.PayDate smalldatetime,
> @.Location nvarchar(5),
> @.RegHours numeric(8,2) OUTPUT,
> @.RegEarnings numeric(8,2) OUTPUT,
> @.OTHours numeric(8,2) OUTPUT,
> @.OTEarnings numeric(8,2) OUTPUT,
> @.OtherHours numeric(8,2) OUTPUT,
> @.OtherEarnings numeric(8,2) OUTPUT,
> @.Taxes numeric(8,2) OUTPUT,
> @.Deductions numeric(8,2) OUTPUT
> AS
> SELECT @.RegHours = SUM(ISNULL(P.Hours, 0))
> FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
> JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
> WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location
> AND
> P.PayTypeCode = 'regular pa'
> SELECT @.OTHours = SUM(ISNULL(P.Hours, 0))
> FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
> JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
> WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location
> AND
> P.PayTypeCode = 'overtime'
> SELECT @.OtherHours = SUM(ISNULL(P.Hours, 0))
> FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
> JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
> WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location
> AND
> P.PayTypeCode NOT IN ('regular pa', 'overtime')
> SELECT @.RegEarnings = SUM(ISNULL(P.Amount, 0))
> FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
> JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
> WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location
> AND
> P.PayTypeCode = 'regular pa'
> SELECT @.OTEarnings = SUM(ISNULL(P.Amount, 0))
> FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
> JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
> WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location
> AND
> P.PayTypeCode = 'overtime'
> SELECT @.OtherEarnings = SUM(ISNULL(P.Amount, 0))
> FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
> JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
> WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location
> AND
> P.PayTypeCode NOT IN ('regular pa', 'overtime')
> SELECT @.Taxes = SUM(ISNULL(Ded.Amount, 0))
> FROM tblPayrollRegisterDeductions Ded INNER JOIN
> tblPayrollRegisterEmployee E ON Ded.EmpID = E.EmpID
> AND
> Ded.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
> JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID INNER
> JOIN
> tblDeductionCodes DC ON Ded.DeductionCode =
> DC.DeductionCode
> WHERE (D.DeptLocation = @.Location) AND (DC.DeductionType = 'TAX') AND
> (Ded.PayPeriodEndingDate = @.PayDate)
>
> SELECT @.Deductions = SUM(ISNULL(Ded.Amount, 0))
> FROM tblPayrollRegisterDeductions Ded INNER JOIN
> tblPayrollRegisterEmployee E ON Ded.EmpID = E.EmpID
> AND
> Ded.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
> JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID INNER
> JOIN
> tblDeductionCodes DC ON Ded.DeductionCode =
> DC.DeductionCode
> WHERE (D.DeptLocation = @.Location) AND (DC.DeductionType = 'DED') AND
> (Ded.PayPeriodEndingDate = @.PayDate)
> -- SELECT @.RegHours, @.RegEarnings, @.OTHours, @.OTEarnings, @.OtherHours,
> @.OtherEarnings, @.Taxes, @.Deductions
> GO
>|||The program is running in VB6, not ASP. If you look at the code, you will
realize there are several different conditions in the WHERE clauses. Some ar
e
testing on PayType code, joining one set of tables, others are testing on
DeductionType, joining another set of tables. There are three different test
conditions on PayTypeCode and two different test conditions on DeductionType
.
That aside, because it has nothing to do with the problem, I am using
standard ADO within VB. I have a class that I developed 5-6 years ago that
encapsulates all the functionality of ADO with methods to set properties, ad
d
parameters to an ADOCommand object, set the values of the parameters, get th
e
values, work with a resultset if one is returned, handle errors, etc. The
basic structure is to create a parameter object, set its properties and
append it to the Parameters collection. It has worked stable for years on
hundreds of stored procedures so I do not suspect it. As I stated, I have
tried this with the data direction set to both Output and InputOutput. I am
really flustered by this.
"Aaron Bertrand [SQL Server MVP]" wrote:

> You didn't show your ASP code but that seems to be where the problem is
> (since it works in QA, the problem clearly isn't the SQL). Have a look at
> http://www.aspfaq.com/params.htm for a walk-through of using output
> parameters from ASP.
> That said.
> You should never use sp_ prefix on user-defined stored procedures.
> And if you think you are being more efficient by using OUTPUT parameters a
nd
> changing a SELECT query into a dozen different queries, you should test bo
th
> versions. All told, I am betting it will be more efficient to just run a
> single GROUP BY query and return a result set to ASP.
>|||So what is different between this stored procedure and the hundreds of
others that do work? You might use profiler to make sure it is getting
executed and you might also write a version that just returns fixed values
for the output parameters to see if it's a problem with the parameters or
with the stored procedure logic. When I hear it works in QA and not in the
code, it usually means either the parameters are different between the code
and QA or there's a permissions issue. Since rowcount doesn't affect your
execution, your magic classes must be receiving the rowcount so make sure
it's the same in your code as it is in QA.
This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
"Doug" <dbb211-hd204@.yahoo.com> wrote in message
news:27131BEA-1D7C-4C19-A3AD-01263BAEEA63@.microsoft.com...
> The program is running in VB6, not ASP. If you look at the code, you will
> realize there are several different conditions in the WHERE clauses. Some
> are
> testing on PayType code, joining one set of tables, others are testing on
> DeductionType, joining another set of tables. There are three different
> test
> conditions on PayTypeCode and two different test conditions on
> DeductionType.
> That aside, because it has nothing to do with the problem, I am using
> standard ADO within VB. I have a class that I developed 5-6 years ago that
> encapsulates all the functionality of ADO with methods to set properties,
> add
> parameters to an ADOCommand object, set the values of the parameters, get
> the
> values, work with a resultset if one is returned, handle errors, etc. The
> basic structure is to create a parameter object, set its properties and
> append it to the Parameters collection. It has worked stable for years on
> hundreds of stored procedures so I do not suspect it. As I stated, I have
> tried this with the data direction set to both Output and InputOutput. I
> am
> really flustered by this.
> "Aaron Bertrand [SQL Server MVP]" wrote:
>
>|||There is some text cut and pasted from VB6 help below but note, definitely
put SET NOCOUNT ON at the top of your stored procedure and definitely close
your recordset in order to retreive your output values. If you're still
having problems after that, break it down. Create a simple stored procedure
with one OUTPUT parameter, create a simple VB ADO project to access it,
forget your class. See if that works.
Let me know how you get on.
Damien
The output and return parameter can also be specified through the Parameter
objects, but the actual value for both parameters is not returned until the
data of the Recordset object has been completely fetched out or the Recordse
t
has been closed.
The ADO code is:
Dim Cmd As New ADODB.Command
Dim rs As New ADODB.Recordset
Dim param As Parameter
Cmd.ActiveConnection = "DSN=pubs;UID=sa"
Cmd.CommandText = "myproc"
Cmd.CommandType = adCmdStoredProc
' Set up parameters.
Set param = Cmd.CreateParameter("Return", adInteger, adParamReturnValue, , 0
)
Cmd.Parameters.Append param
Set param = Cmd.CreateParameter("Output", adInteger, adParamOutput, , 0)
Cmd.Parameters.Append param
Set rs = Cmd.Execute
If Not rs.EOF And Not rs.BOF Then
Debug.Print rs(0)
rs.Close
End If
Debug.Print Cmd(0) ' The return code
Debug.Print Cmd(1) ' The Output parameter
"Doug" wrote:

> This is probably a stupid question but I cannot find the data. The code
> following is in a stored procedure I am running in SS 2000. It executes, a
nd
> if I run it in Query Analyzer I see the results. I have the parameters
> defined in the Parameters collection of an ADO command object and have the
> direction defined as output (I've also tried 'adParamInputOutput') However
,
> the values of the parameter objects all contain NULL (except the first two
> which are input parameters).
> Where is the returned data? I have even have the execute method return a
> resultset and checked the Fields collection on it. I have written quite a
few
> stored procedures, but never any that returned data in output parameters.
I
> am beginning to see why.
> ========================================
========
>
> CREATE PROCEDURE sp_hr_pay_register_get_summary_totals
> @.PayDate smalldatetime,
> @.Location nvarchar(5),
> @.RegHours numeric(8,2) OUTPUT,
> @.RegEarnings numeric(8,2) OUTPUT,
> @.OTHours numeric(8,2) OUTPUT,
> @.OTEarnings numeric(8,2) OUTPUT,
> @.OtherHours numeric(8,2) OUTPUT,
> @.OtherEarnings numeric(8,2) OUTPUT,
> @.Taxes numeric(8,2) OUTPUT,
> @.Deductions numeric(8,2) OUTPUT
> AS
> SELECT @.RegHours = SUM(ISNULL(P.Hours, 0))
> FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AN
D
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
> WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AN
D
> P.PayTypeCode = 'regular pa'
> SELECT @.OTHours = SUM(ISNULL(P.Hours, 0))
> FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AN
D
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
> WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AN
D
> P.PayTypeCode = 'overtime'
> SELECT @.OtherHours = SUM(ISNULL(P.Hours, 0))
> FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AN
D
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
> WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AN
D
> P.PayTypeCode NOT IN ('regular pa', 'overtime')
> SELECT @.RegEarnings = SUM(ISNULL(P.Amount, 0))
> FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AN
D
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
> WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AN
D
> P.PayTypeCode = 'regular pa'
> SELECT @.OTEarnings = SUM(ISNULL(P.Amount, 0))
> FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AN
D
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
> WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AN
D
> P.PayTypeCode = 'overtime'
> SELECT @.OtherEarnings = SUM(ISNULL(P.Amount, 0))
> FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AN
D
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
> WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AN
D
> P.PayTypeCode NOT IN ('regular pa', 'overtime')
> SELECT @.Taxes = SUM(ISNULL(Ded.Amount, 0))
> FROM tblPayrollRegisterDeductions Ded INNER JOIN
> tblPayrollRegisterEmployee E ON Ded.EmpID = E.EmpID
AND
> Ded.PayPeriodEndingDate = E.PayPeriodEndingDate INNE
R
> JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID INNE
R
> JOIN
> tblDeductionCodes DC ON Ded.DeductionCode =
> DC.DeductionCode
> WHERE (D.DeptLocation = @.Location) AND (DC.DeductionType = 'TAX') AND
> (Ded.PayPeriodEndingDate = @.PayDate)
>
> SELECT @.Deductions = SUM(ISNULL(Ded.Amount, 0))
> FROM tblPayrollRegisterDeductions Ded INNER JOIN
> tblPayrollRegisterEmployee E ON Ded.EmpID = E.EmpID
AND
> Ded.PayPeriodEndingDate = E.PayPeriodEndingDate INNE
R
> JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID INNE
R
> JOIN
> tblDeductionCodes DC ON Ded.DeductionCode =
> DC.DeductionCode
> WHERE (D.DeptLocation = @.Location) AND (DC.DeductionType = 'DED') AND
> (Ded.PayPeriodEndingDate = @.PayDate)
> -- SELECT @.RegHours, @.RegEarnings, @.OTHours, @.OTEarnings, @.OtherHours,
> @.OtherEarnings, @.Taxes, @.Deductions
> GO
>|||Sometimes the simplest solution is to take a day off it and come back
tomorrow with a fresh mind. Actually, it had nothing to do with SQL or VB,
but the value of one of the parameters being passed to the stored procedure.
When I executed it in QA, I hardcoded the date, but when executed in code,
the date is actually a calculated date. Since a new pay period had cycled
since I last loaded date, the date was now invalid. Actually, it was valid,
there just was no data for it, so it was, in fact, returning the correct
values. :-(
Doug
p.s. Thanks to everyone who offered suggestions and possible solutions.
"Damien" wrote:
> There is some text cut and pasted from VB6 help below but note, definitely
> put SET NOCOUNT ON at the top of your stored procedure and definitely clos
e
> your recordset in order to retreive your output values. If you're still
> having problems after that, break it down. Create a simple stored procedu
re
> with one OUTPUT parameter, create a simple VB ADO project to access it,
> forget your class. See if that works.
> Let me know how you get on.
>
> Damien
> The output and return parameter can also be specified through the Paramete
r
> objects, but the actual value for both parameters is not returned until th
e
> data of the Recordset object has been completely fetched out or the Record
set
> has been closed.
> The ADO code is:
> Dim Cmd As New ADODB.Command
> Dim rs As New ADODB.Recordset
> Dim param As Parameter
> Cmd.ActiveConnection = "DSN=pubs;UID=sa"
> Cmd.CommandText = "myproc"
> Cmd.CommandType = adCmdStoredProc
> ' Set up parameters.
> Set param = Cmd.CreateParameter("Return", adInteger, adParamReturnValue, ,
0)
> Cmd.Parameters.Append param
> Set param = Cmd.CreateParameter("Output", adInteger, adParamOutput, , 0)
> Cmd.Parameters.Append param
> Set rs = Cmd.Execute
> If Not rs.EOF And Not rs.BOF Then
> Debug.Print rs(0)
> rs.Close
> End If
> Debug.Print Cmd(0) ' The return code
> Debug.Print Cmd(1) ' The Output parameter
>
> "Doug" wrote:
>|||On Fri, 10 Mar 2006 12:40:27 -0800, Doug wrote:

>CREATE PROCEDURE sp_hr_pay_register_get_summary_totals
(snip)
Hi Doug,
I know that this is not what you're asking about, but do you realise
that you could rewrite your stored procedure to make it much more
efficient?
First: rename it. The prefix "sp_" on stored procedures is reserved for
system stored procedures. On encountering this prefix, SQL Server will
first check the master DB for a stored procedure of that name and run it
instead of yours. In the best case, you take a performance hit. In the
worst case, Microsoft adds a system stored procedure with the exact same
name to the master DB with the next service pack and your code suddenly
starts acting _very_ funny!
The code below, consisting of six SELECT statements, can be combined
into the one SELECT statement I'll give below:
(snip)
>SELECT @.RegHours = SUM(ISNULL(P.Hours, 0))
>FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER J
OIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
>WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AND
>P.PayTypeCode = 'regular pa'
>SELECT @.OTHours = SUM(ISNULL(P.Hours, 0))
>FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER J
OIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
>WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AND
>P.PayTypeCode = 'overtime'
>SELECT @.OtherHours = SUM(ISNULL(P.Hours, 0))
>FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER J
OIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
>WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AND
>P.PayTypeCode NOT IN ('regular pa', 'overtime')
>SELECT @.RegEarnings = SUM(ISNULL(P.Amount, 0))
>FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER J
OIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
>WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AND
>P.PayTypeCode = 'regular pa'
>SELECT @.OTEarnings = SUM(ISNULL(P.Amount, 0))
>FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER J
OIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
>WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AND
>P.PayTypeCode = 'overtime'
>SELECT @.OtherEarnings = SUM(ISNULL(P.Amount, 0))
>FROM tblPayrollRegisterPayments P INNER JOIN
> tblPayrollRegisterEmployee E ON P.EmpID = E.EmpID AND
> P.PayPeriodEndingDate = E.PayPeriodEndingDate INNER J
OIN
> tblDepartments D ON E.DepartmentCode = D.DeptID
>WHERE P.PayPeriodEndingDate = @.PayDate AND D.DeptLocation = @.Location AND
>P.PayTypeCode NOT IN ('regular pa', 'overtime')
SELECT @.RegHours = SUM(CASE WHEN P.PayTypeCode = 'regular pa'
THEN ISNULL(P.Hours, 0) ELSE 0 END),
@.OTHours = SUM(CASE WHEN P.PayTypeCode = 'overtime'
THEN ISNULL(P.Hours, 0) ELSE 0 END),
@.OtherHours = SUM(CASE WHEN P.PayTypeCode NOT IN ('regular
pa', 'overtime')
THEN ISNULL(P.Hours, 0) ELSE 0 END),
@.RegEarnings = SUM(CASE WHEN P.PayTypeCode = 'regular pa'
THEN ISNULL(P.Amount, 0) ELSE 0 END),
@.OTEarnings = SUM(CASE WHEN P.PayTypeCode = 'overtime'
THEN ISNULL(P.Amount, 0) ELSE 0 END),
@.OtherEarnings = SUM(CASE WHEN P.PayTypeCode NOT IN ('regular
pa', 'overtime')
THEN ISNULL(P.Hours, 0) ELSE 0 END)
FROM tblPayrollRegisterPayments AS P
INNER JOIN tblPayrollRegisterEmployee AS E
ON P.EmpID = E.EmpID
AND P.PayPeriodEndingDate = E.PayPeriodEndingDate
INNER JOIN tblDepartments AS D
ON E.DepartmentCode = D.DeptID
WHERE P.PayPeriodEndingDate = @.PayDate
AND D.DeptLocation = @.Location
And in a similar vein, the last two queries can also be combined into
one:

>SELECT @.Taxes = SUM(ISNULL(Ded.Amount, 0))
>FROM tblPayrollRegisterDeductions Ded INNER JOIN
> tblPayrollRegisterEmployee E ON Ded.EmpID = E.EmpID A
ND
> Ded.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
>JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID INNER
>JOIN
> tblDeductionCodes DC ON Ded.DeductionCode =
>DC.DeductionCode
>WHERE (D.DeptLocation = @.Location) AND (DC.DeductionType = 'TAX') AND
> (Ded.PayPeriodEndingDate = @.PayDate)
>
>SELECT @.Deductions = SUM(ISNULL(Ded.Amount, 0))
>FROM tblPayrollRegisterDeductions Ded INNER JOIN
> tblPayrollRegisterEmployee E ON Ded.EmpID = E.EmpID A
ND
> Ded.PayPeriodEndingDate = E.PayPeriodEndingDate INNER
>JOIN
> tblDepartments D ON E.DepartmentCode = D.DeptID INNER
>JOIN
> tblDeductionCodes DC ON Ded.DeductionCode =
>DC.DeductionCode
>WHERE (D.DeptLocation = @.Location) AND (DC.DeductionType = 'DED') AND
> (Ded.PayPeriodEndingDate = @.PayDate)
SELECT @.Taxes = SUM(CASE WHEN DC.DeductionType = 'TAX'
THEN ISNULL(Ded.Amount, 0) ELSE 0 END),
@.Deductions = SUM(CASE WHEN DC.DeductionType = 'DED'
THEN ISNULL(Ded.Amount, 0) ELSE 0 END)
FROM tblPayrollRegisterDeductions AS Ded
INNER JOIN tblPayrollRegisterEmployee AS E
ON Ded.EmpID = E.EmpID
AND Ded.PayPeriodEndingDate = E.PayPeriodEndingDate
INNER JOIN tblDepartments AS D
ON E.DepartmentCode = D.DeptID
INNER JOIN tblDeductionCodes AS DC
ON Ded.DeductionCode = DC.DeductionCode
WHERE D.DeptLocation = @.Location
AND Ded.PayPeriodEndingDate = @.PayDate
Note that these queries are untested. Check out www.aspfaq.com/5006 if
you prefer a tested reply.
Hugo Kornelis, SQL Server MVP

Problems with SQL Task

Hi!

I have a problem running a package and one of its SQL Tasks.

This is the action the task performs:

DELETE FROM Fac_Vendita WHERE Data >= ?

I pick the value from a variable I get from a previous task, and I map it in the new task like this:

Variable name: User::dur Direction: Input Data Type : DBTIMESTAMP Parameter Name: 0

I get this error:

DELETE FROM Fac_Vendita
WHERE Data >= ?" failed with the following error: "Invalid character value for cast specification". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.

I tried also the other data type, but I get another type of error.... What's the problem?

Try setting the whole thing with a property expression instead - that should help to eliminate these problems.

-Jamie

|||How can I do it?|||

no more help is needed... I found another way to do it

Thanks anyway...

|||i am having the same problem, it would help if you could post your solution.

thanks,

nicolas|||i totally changed the approach, and I built a different statement.... My new SQL states:
DELETE FROM Name_Table WHERE (select .....)
this way it works..... :P

Monday, March 26, 2012

Problems With SQL 2005 SP1 (x64)

Hi,

After installing SP1 onto our SQL x64 2005 box (running Server 2003 x64 R2), I have come across two problems. The first is that the install seems to fail for database services (and I see I'm not the only one), declaring the following:


04/21/2006 11:31:59.773 ================================================================================
04/21/2006 11:31:59.773 Hotfix package launched
04/21/2006 11:32:01.351 Product discovery successfully completed during the install process for MSSQLSERVER
04/21/2006 11:32:01.351 SP Level check successfully completed during the install process for MSSQLSERVER
04/21/2006 11:32:01.351 Product language check successfully completed during the install process for MSSQLSERVER
04/21/2006 11:32:01.351 Product version check successfully completed during the install process for MSSQLSERVER
04/21/2006 11:32:01.351 Command-line instance name check completed during the install process
04/21/2006 11:32:01.351 Baseline build check completed during the install process
04/21/2006 11:32:29.538 Attempting to install instance: MSSQLSERVER
04/21/2006 11:32:29.600 Attempting to install target: my_server
04/21/2006 11:32:29.616 Attempting to stop service: SQLSERVERAGENT
04/21/2006 11:32:34.631 Successfully stopped service: SQLSERVERAGENT
04/21/2006 11:32:34.631 Attempting to stop service: MSSQLServer
04/21/2006 11:32:36.631 Successfully stopped service: MSSQLServer
04/21/2006 11:32:36.631 Attempting to check for locked files: sqlrun_sql.msp
04/21/2006 11:32:36.663 Attempting to check for locked files: \\my_server\d$\39e3f3124a1ef45cc9e9\HotFixSQL\Files\sqlrun_sql.msp
04/21/2006 11:32:36.663 Creating MSP locked file check log at: C:\WINDOWS\Hotfix\SQL9\Logs\SQL9_Hotfix_KB913090_sqlrun_sql.msp.out
04/21/2006 11:32:51.787 MSP returned 1602: The user cancels installation.
04/21/2006 11:32:51.866 Successfully checked file: \\my_server\d$\39e3f3124a1ef45cc9e9\HotFixSQL\Files\sqlrun_sql.msp
04/21/2006 11:32:51.881 Successfully opened registry key: System\CurrentControlSet\Control\Session Manager
04/21/2006 11:32:51.881 Failed to read registry key: PendingFileRenameOperations
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\xmlfilt.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\ThaWBrkr.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\query.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\nls400.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\nlhtml.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\msir5jp.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\msftesql.exe
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\msftepxy.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\msftefd.exe
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\msfte.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\LangWrbk.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\korwbrkr.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\infosoft.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\FTERef\FTERef.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\CHTBRKR.DLL
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\ChsBrkr.dll
04/21/2006 11:32:51.881 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\COM\Resources\1033\REPLRES.rll
04/21/2006 11:32:51.881 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\COM\replrec.dll
04/21/2006 11:32:51.881 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\COM\rplisapi.dll
04/21/2006 11:32:51.881 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\WINDOWS\assembly\GAC_64\Microsoft.SqlServer.Replication\9.0.242.0__89845dcd8080cc91\Repl.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.SqlServer.DataStorage\9.0.242.0__89845dcd8080cc91\Microsoft.SqlServer.DataStorage.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Common Files\Microsoft Shared\Database Replication\Resources\1033\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install\rplhtfin.sql
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install\
C:\Program Files\Microsoft SQL Server\90\COM\qrdrsvc.exe
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\Program Files (x86)\Microsoft SQL Server\90\COM\snapshot.exe
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\9.0.2047.0
C:\Program Files\Microsoft SQL Server\90\COM\sqlmergx.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\COM\tabldiff.exe
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\COM\DISTRIB.exe
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\DatabaseMail90.exe
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\3082\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\2052\sqlevn70.rll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1053\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1046\sqlevn70.rll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1043\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1042\sqlevn70.rll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1041\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1040\sqlevn70.rll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1036\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\sqlevn70.rll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1031\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1028\sqlevn70.rll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\sqlacc~1.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\xmlrwbin.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\2.0.3609.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\sqlsvc90.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\SQLBOOT.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\xplog70.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\batchp~1.dll
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\SQLAGENT90.RLL
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\SQLAGENT90.RLL
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\SQLAGENT90.RLL
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\SQLAGENT90.EXE
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\SQLAGENT90.EXE
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\SQLAGENT90.EXE
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\Resources\1033\9.0.2047.0
C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msmdrdir.dll
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msmdlocal.dll
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msmdlocal.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msmdlocal.dll
04/21/2006 11:32:51.912 Failed to read version information for the following file: C:\Program Files (x86)\Common Files\System\ole db\2.0.3609.0
C:\Program Files (x86)\Common Files\System\ole db\xmlrw.dll
04/21/2006 11:32:51.912 Failed to read version information for the following file: C:\Program Files\Common Files\System\ole db\2.0.3609.0
C:\Program Files\Common Files\System\ole db\xmlrw.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlbrowser.exe
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlbrowser.exe
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlbrowser.exe
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msasxpress.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msasxpress.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msasxpress.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\msasxpress.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\msasxpress.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\msasxpress.dll
04/21/2006 11:32:51.912 Failed to read version information for the following file: C:\Program Files (x86)\Microsoft.NET\ADOMD.NET\90\en\Microsoft.AnalysisServices.AdomdClient.xml
04/21/2006 11:32:51.912 Failed to read version information for the following file: C:\Program Files\Microsoft.NET\ADOMD.NET\90\en\Microsoft.AnalysisServices.AdomdClient.xml
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft.NET\ADOMD.NET\90\Microsoft.AnalysisServices.AdomdClient.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.AnalysisServices.AdomdClient\9.0.242.0__89845dcd8080cc91\Microsoft.AnalysisServices.AdomdClient.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft.NET\ADOMD.NET\90\Microsoft.AnalysisServices.AdomdClient.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.AnalysisServices.AdomdClient\9.0.242.0__89845dcd8080cc91\Microsoft.AnalysisServices.AdomdClient.dll
04/21/2006 11:32:51.912 Failed to read version information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\Resources\1033\
C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\Resources\1033\sqlcm.xml
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\Resources\1033\SqlManager.rll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\Resources\1033\SqlManager.rll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\Resources\1033\SqlManager.rll
04/21/2006 11:32:51.912 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\Resources\1033\
C:\Program Files\Microsoft SQL Server\90\Tools\Binn\Resources\1033\sqlcm.xml
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\Resources\1033\SqlManager.rll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\Resources\1033\SqlManager.rll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\Resources\1033\SqlManager.rll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\SqlManager.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\SqlManager.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\SqlManager.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\binn\SqlManager.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\binn\SqlManager.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\binn\SqlManager.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\batchparser90.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\batchparser90.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\batchparser90.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\batchparser90.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\batchparser90.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\batchparser90.dll
04/21/2006 11:32:51.928 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\Resources\1033\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\SQLAM90.DLL
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\SQLAgentMail90.rll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\SQLAgentMail90.rll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\SQLAgentMail90.rll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\SQLSVC90.DLL
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\SQLSVC90.DLL
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\SQLSVC90.DLL
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\binn\SQLSVC90.DLL
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\binn\SQLSVC90.DLL
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\binn\SQLSVC90.DLL
04/21/2006 11:32:51.928 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install\
C:\Program Files\Microsoft SQL Server\90\Tools\Binn\xmlrw.dll
04/21/2006 11:32:51.944 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\Tools\Binn\OSQL.EXE
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsvcsync.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsvcsync.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsvcsync.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsecacctchg.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsecacctchg.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsecacctchg.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlftacct.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlftacct.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlftacct.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\isacctchange.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\isacctchange.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\isacctchange.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\svrenumapi.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\svrenumapi.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\svrenumapi.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsvcsync.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsvcsync.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsvcsync.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsecacctchg.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsecacctchg.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsecacctchg.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlftacct.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlftacct.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlftacct.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\isacctchange.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\isacctchange.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\isacctchange.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\svrenumapi.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\svrenumapi.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\svrenumapi.dll
04/21/2006 11:32:51.959 Failed to read version information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\Shared\SqlBoot.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsqm.exe
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsqm.exe
04/21/2006 11:32:51.959 Failed to read version information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\9.0.2047.0
C:\Program Files (x86)\Microsoft SQL Server\90\Shared\dbghelp.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\SqlDumper.exe
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\SqlDumper.exe
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\SqlDumper.exe
04/21/2006 11:32:51.959 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\9.0.2047.0
C:\Program Files\Microsoft SQL Server\90\Shared\dbghelp.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\SqlDumper.exe
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\SqlDumper.exe
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\SqlDumper.exe
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.SqlServer.Rmo\9.0.242.0__89845dcd8080cc91\Microsoft.SqlServer.Rmo.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.AnalysisServices\9.0.242.0__89845dcd8080cc91\Microsoft.AnalysisServices.DLL
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.DataWarehouse.Interfaces\9.0.242.0__89845dcd8080cc91\Microsoft.DataWarehouse.Interfaces.DLL
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_64\Microsoft.SqlServer.BatchParser\9.0.242.0__89845dcd8080cc91\microsoft.sqlserver.batchparser.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_64\Microsoft.SqlServer.BatchParser\9.0.242.0__89845dcd8080cc91\microsoft.sqlserver.batchparser.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_64\Microsoft.SqlServer.BatchParser\9.0.242.0__89845dcd8080cc91\microsoft.sqlserver.batchparser.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.SqlServer.SqlEnum\9.0.242.0__89845dcd8080cc91\Microsoft.SqlServer.SqlEnum.dll
04/21/2006 11:32:51.975 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.SqlServer.Smo\9.0.242.0__89845dcd8080cc91\Microsoft.SqlServer.Smo.dll
04/21/2006 11:32:51.975 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\SqlSAC.exe
04/21/2006 11:32:51.975 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\Microsoft.SqlSac.Public.dll
04/21/2006 11:32:52.006 Attempting to install file: sqlrun_sql.msp
04/21/2006 11:32:52.022 Attempting to install file: \\my_server\d$\39e3f3124a1ef45cc9e9\HotFixSQL\Files\sqlrun_sql.msp
04/21/2006 11:32:52.022 Creating MSP install log file at: C:\WINDOWS\Hotfix\SQL9\Logs\SQL9_Hotfix_KB913090_sqlrun_sql.msp.log
04/21/2006 11:32:52.022 Successfully opened registry key: Software\Policies\Microsoft\Windows\Installer
04/21/2006 11:32:52.022 Failed to read registry key: Debug
04/21/2006 11:34:17.130 MSP returned 1603: A fatal error occurred during installation.
04/21/2006 11:34:17.146 Successfully opened registry key: Software\Policies\Microsoft\Windows\Installer
04/21/2006 11:34:17.146 Failed to read registry key: Debug
04/21/2006 11:34:17.146 Unable to install MSP file: \\my_server\d$\39e3f3124a1ef45cc9e9\HotFixSQL\Files\sqlrun_sql.msp
04/21/2006 11:34:17.146 The following exception occurred: Unable to install Windows Installer MSP file Date: 04/21/2006 11:34:17.146 File: \depot\sqlvault\setupmain\setup\sqlse\sqlsedll\copyengine.cpp Line: 856
04/21/2006 11:34:17.177
04/21/2006 11:34:17.177 Product Status Summary:
04/21/2006 11:34:17.177 Product: SQL Server Native Client (64-bit)
04/21/2006 11:34:17.177 SQL Server Native Client (64-bit) (RTM ) - Success
04/21/2006 11:34:17.177
04/21/2006 11:34:17.177 Product: Setup Support Files (64-bit)
04/21/2006 11:34:17.177 Setup Support Files (64-bit) (RTM ) - Success
04/21/2006 11:34:17.177
04/21/2006 11:34:17.177 Product: Database Services (64-bit)
04/21/2006 11:34:17.177 Database Services (64-bit) (SP1 2047 ENU) - Failure
04/21/2006 11:34:17.177 Details: Unable to install Windows Installer MSP file
04/21/2006 11:34:17.177 Analysis Services (64-bit) (SP1 2047 ENU) - Not Applied
04/21/2006 11:34:17.177 Reporting Services (64-bit) (SP1 2047 ENU) - Not Applied
04/21/2006 11:34:17.177
04/21/2006 11:34:17.177 Product: Notification Services (64-bit)
04/21/2006 11:34:17.177 Notification Services (64-bit) (SP1 2047 ENU) - Not Applied
04/21/2006 11:34:17.177
04/21/2006 11:34:17.177 Product: Integration Services (64-bit)
04/21/2006 11:34:17.177 Integration Services (64-bit) (SP1 2047 ENU) - Not Applied
04/21/2006 11:34:17.177
04/21/2006 11:34:17.177 Product: Client Components (64-bit)
04/21/2006 11:34:17.177 Client Components (64-bit) (SP1 2047 ENU) - Not Applied
04/21/2006 11:34:17.193
04/21/2006 11:34:17.193 Product: MSXML 6.0 Parser (64-bit)
04/21/2006 11:34:17.193 MSXML 6.0 Parser (64-bit) (RTM ) - Not Applied
04/21/2006 11:34:17.193
04/21/2006 11:34:17.193 Product: SQLXML4 (64-bit)
04/21/2006 11:34:17.193 SQLXML4 (64-bit) (RTM ) - Not Applied
04/21/2006 11:34:17.193
04/21/2006 11:34:17.193 Product: Backward Compatibility (64-bit)
04/21/2006 11:34:17.193 Backward Compatibility (64-bit) (RTM ) - Not Applied
04/21/2006 11:34:17.193
04/21/2006 11:34:17.193 Product: Microsoft SQL Server VSS Writer (64-bit)
04/21/2006 11:34:17.193 Microsoft SQL Server VSS Writer (64-bit) (RTM ) - Not Applied
04/21/2006 11:34:17.193


This has not caused any initial problems, as the database service will still start and everything appears ok.

...however, the second problem this have given me, is that the Integration Services service will not start (errors with a timeout). I'm having a number of maintenance jobs fails as a result of this.

Let me know what information you would like, and I'll be right back with it.

Cheers,

Darren

Just managed to pull this out of a log file:


Property(S): SqlUpgradeMessage = SQL Server Setup has encountered the following problem: [Microsoft][SQL Native Client][SQL Server]Cannot find the object 'dm_exec_query_resource_semaphores', because it does not exist or you do not have permission.. To continue, correct the problem, and then run SQL Server Setup again.
Property(S): UpgradeInstruction = Connect to SQL instance SRVHAM14 as sysadmin
Launch SQL statement USE master
Launch script file C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install\sysdbupg.sql
Launch script file C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install\DbEngine_hotfix_install.sql
Launch script file C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install\repl_hotfix_install.sql
Stop service MSSQLSERVER
MSI (s) (20:A4) [13:56:22:544]: Product: Microsoft SQL Server 2005 (64-bit) - Update 'Service Pack 1 for SQL Server Database Services 2005 (64-bit) ENU (KB913090)' could not be installed. Error code 1603. Additional information is available in the log file C:\WINDOWS\Hotfix\SQL9\Logs\SQL9_Hotfix_KB913090_sqlrun_sql.msp.log.


"Cannot find the object 'dm_exec_query_resource_semaphores', because it does not exist or you do not have permission."

:/|||I haven't had a problem across a suite of x64 installs here at the bank. Disk space can be an issue as the SP install seems to require a lot. You can also run into problems if you have removed the security groups that SQL installs - there's another thread on this on this forum.|||Thanks for the reply. The file permissions haven't been touched, and disk space certainly isnt an issue (doesn't even come close to filling any partition).

I've dropped some more information into the bottom of this thread (guy seemed to be having the same problem as me)

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=318632&SiteID=1|||This is the third forum message I've seen with this message, so hopefully we can solve it quickly.

After you get the 'dm_exec_query_resource_semaphores' error and the installer cancels out, can you try to apply SP1 a second time? Does that attempt also fail with the same message?

Thanks,
Samuel Lester (MSFT)

|||Yes, and yes :)|||

Darren

Can you upload the first setup log file that failed with this error?

Thanks

Vishal

|||

We are having the same problem with Integration Services timing out after installing SP1, but we are running the 32-bit standard version.

I had to uninstall SQL 2005. I'm installing it again now. Should be done in about 6 hours.

|||

Hi

I had the same problem and found the solution in KB 918695

"The problem occurs because the master database file is not in the same location as the Resource database file for the instance of SQL Server 2005 on which you install SQL Server 2005 SP1. You may have previously moved the master database from its originally installed location. When you move the master database, you must make sure that the master and Resource database files are located in the same folder. If you only move the master database files, you experience this problem when you install SQL Server 2005 SP1. This problem occurs because the location of the master and Resource database files is inconsistent."

|||

Hello all...

Just to add my experience; in the process of setting up several servers, I encountered the same, however on one system, it was a clean installation and on the other, SQL had been installed/removed and re-installed (to support .NET 3.0).

Since I had the time and option and knew that the Master Database had not been moved, the corrective action is to:

a) Click Cancel on the database update locked message (the process will continue) - this lock message will occur on both the Database and again on Analysis Services

b) Let the entire process complete

c) Do not reboot - open Administrative Tools > Services and perform a Restart on the Microsoft SQL Server service

d) Rerun SP1

Regards,

David Sterling - Sterling International Consulting Group
www.sterling-consulting.com

Problems With SQL 2005 SP1 (x64)

Hi,

After installing SP1 onto our SQL x64 2005 box (running Server 2003 x64 R2), I have come across two problems. The first is that the install seems to fail for database services (and I see I'm not the only one), declaring the following:


04/21/2006 11:31:59.773 ================================================================================
04/21/2006 11:31:59.773 Hotfix package launched
04/21/2006 11:32:01.351 Product discovery successfully completed during the install process for MSSQLSERVER
04/21/2006 11:32:01.351 SP Level check successfully completed during the install process for MSSQLSERVER
04/21/2006 11:32:01.351 Product language check successfully completed during the install process for MSSQLSERVER
04/21/2006 11:32:01.351 Product version check successfully completed during the install process for MSSQLSERVER
04/21/2006 11:32:01.351 Command-line instance name check completed during the install process
04/21/2006 11:32:01.351 Baseline build check completed during the install process
04/21/2006 11:32:29.538 Attempting to install instance: MSSQLSERVER
04/21/2006 11:32:29.600 Attempting to install target: my_server
04/21/2006 11:32:29.616 Attempting to stop service: SQLSERVERAGENT
04/21/2006 11:32:34.631 Successfully stopped service: SQLSERVERAGENT
04/21/2006 11:32:34.631 Attempting to stop service: MSSQLServer
04/21/2006 11:32:36.631 Successfully stopped service: MSSQLServer
04/21/2006 11:32:36.631 Attempting to check for locked files: sqlrun_sql.msp
04/21/2006 11:32:36.663 Attempting to check for locked files: \\my_server\d$\39e3f3124a1ef45cc9e9\HotFixSQL\Files\sqlrun_sql.msp
04/21/2006 11:32:36.663 Creating MSP locked file check log at: C:\WINDOWS\Hotfix\SQL9\Logs\SQL9_Hotfix_KB913090_sqlrun_sql.msp.out
04/21/2006 11:32:51.787 MSP returned 1602: The user cancels installation.
04/21/2006 11:32:51.866 Successfully checked file: \\my_server\d$\39e3f3124a1ef45cc9e9\HotFixSQL\Files\sqlrun_sql.msp
04/21/2006 11:32:51.881 Successfully opened registry key: System\CurrentControlSet\Control\Session Manager
04/21/2006 11:32:51.881 Failed to read registry key: PendingFileRenameOperations
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\xmlfilt.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\ThaWBrkr.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\query.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\nls400.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\nlhtml.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\msir5jp.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\msftesql.exe
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\msftepxy.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\msftefd.exe
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\msfte.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\LangWrbk.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\korwbrkr.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\infosoft.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\FTERef\FTERef.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\CHTBRKR.DLL
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\ChsBrkr.dll
04/21/2006 11:32:51.881 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\COM\Resources\1033\REPLRES.rll
04/21/2006 11:32:51.881 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\COM\replrec.dll
04/21/2006 11:32:51.881 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\COM\rplisapi.dll
04/21/2006 11:32:51.881 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\WINDOWS\assembly\GAC_64\Microsoft.SqlServer.Replication\9.0.242.0__89845dcd8080cc91\Repl.dll
04/21/2006 11:32:51.881 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.SqlServer.DataStorage\9.0.242.0__89845dcd8080cc91\Microsoft.SqlServer.DataStorage.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Common Files\Microsoft Shared\Database Replication\Resources\1033\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install\rplhtfin.sql
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install\
C:\Program Files\Microsoft SQL Server\90\COM\qrdrsvc.exe
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\Program Files (x86)\Microsoft SQL Server\90\COM\snapshot.exe
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\9.0.2047.0
C:\Program Files\Microsoft SQL Server\90\COM\sqlmergx.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\COM\tabldiff.exe
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\COM\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\COM\DISTRIB.exe
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\DatabaseMail90.exe
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\3082\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\2052\sqlevn70.rll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1053\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1046\sqlevn70.rll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1043\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1042\sqlevn70.rll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1041\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1040\sqlevn70.rll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1036\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\sqlevn70.rll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1031\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1028\sqlevn70.rll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\sqlacc~1.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\xmlrwbin.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\2.0.3609.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\sqlsvc90.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\SQLBOOT.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\xplog70.dll
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\batchp~1.dll
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\SQLAGENT90.RLL
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\SQLAGENT90.RLL
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\SQLAGENT90.RLL
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\SQLAGENT90.EXE
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\SQLAGENT90.EXE
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\SQLAGENT90.EXE
04/21/2006 11:32:51.897 Failed to read version information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\Resources\1033\9.0.2047.0
C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msmdrdir.dll
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msmdlocal.dll
04/21/2006 11:32:51.897 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msmdlocal.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msmdlocal.dll
04/21/2006 11:32:51.912 Failed to read version information for the following file: C:\Program Files (x86)\Common Files\System\ole db\2.0.3609.0
C:\Program Files (x86)\Common Files\System\ole db\xmlrw.dll
04/21/2006 11:32:51.912 Failed to read version information for the following file: C:\Program Files\Common Files\System\ole db\2.0.3609.0
C:\Program Files\Common Files\System\ole db\xmlrw.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlbrowser.exe
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlbrowser.exe
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlbrowser.exe
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msasxpress.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msasxpress.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\msasxpress.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\msasxpress.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\msasxpress.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\msasxpress.dll
04/21/2006 11:32:51.912 Failed to read version information for the following file: C:\Program Files (x86)\Microsoft.NET\ADOMD.NET\90\en\Microsoft.AnalysisServices.AdomdClient.xml
04/21/2006 11:32:51.912 Failed to read version information for the following file: C:\Program Files\Microsoft.NET\ADOMD.NET\90\en\Microsoft.AnalysisServices.AdomdClient.xml
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft.NET\ADOMD.NET\90\Microsoft.AnalysisServices.AdomdClient.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.AnalysisServices.AdomdClient\9.0.242.0__89845dcd8080cc91\Microsoft.AnalysisServices.AdomdClient.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft.NET\ADOMD.NET\90\Microsoft.AnalysisServices.AdomdClient.dll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.AnalysisServices.AdomdClient\9.0.242.0__89845dcd8080cc91\Microsoft.AnalysisServices.AdomdClient.dll
04/21/2006 11:32:51.912 Failed to read version information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\Resources\1033\
C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\Resources\1033\sqlcm.xml
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\Resources\1033\SqlManager.rll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\Resources\1033\SqlManager.rll
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\Resources\1033\SqlManager.rll
04/21/2006 11:32:51.912 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\Resources\1033\
C:\Program Files\Microsoft SQL Server\90\Tools\Binn\Resources\1033\sqlcm.xml
04/21/2006 11:32:51.912 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\Resources\1033\SqlManager.rll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\Resources\1033\SqlManager.rll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\Resources\1033\SqlManager.rll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\SqlManager.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\SqlManager.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\SqlManager.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\binn\SqlManager.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\binn\SqlManager.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\binn\SqlManager.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\batchparser90.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\batchparser90.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\batchparser90.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\batchparser90.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\batchparser90.dll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\batchparser90.dll
04/21/2006 11:32:51.928 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\Resources\1033\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\SQLAM90.DLL
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\SQLAgentMail90.rll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\SQLAgentMail90.rll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\Resources\1033\SQLAgentMail90.rll
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\SQLSVC90.DLL
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\SQLSVC90.DLL
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\SQLSVC90.DLL
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\binn\SQLSVC90.DLL
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\binn\SQLSVC90.DLL
04/21/2006 11:32:51.928 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\binn\SQLSVC90.DLL
04/21/2006 11:32:51.928 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install\
C:\Program Files\Microsoft SQL Server\90\Tools\Binn\xmlrw.dll
04/21/2006 11:32:51.944 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\Tools\Binn\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\Tools\Binn\OSQL.EXE
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsvcsync.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsvcsync.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsvcsync.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsecacctchg.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsecacctchg.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsecacctchg.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlftacct.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlftacct.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlftacct.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\isacctchange.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\isacctchange.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\isacctchange.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\svrenumapi.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\svrenumapi.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\svrenumapi.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsvcsync.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsvcsync.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsvcsync.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsecacctchg.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsecacctchg.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsecacctchg.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlftacct.dll
04/21/2006 11:32:51.944 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlftacct.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlftacct.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\isacctchange.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\isacctchange.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\isacctchange.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\svrenumapi.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\svrenumapi.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\svrenumapi.dll
04/21/2006 11:32:51.959 Failed to read version information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\2005.90.2047.0
C:\Program Files\Microsoft SQL Server\90\Shared\SqlBoot.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\sqlsqm.exe
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\sqlsqm.exe
04/21/2006 11:32:51.959 Failed to read version information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\9.0.2047.0
C:\Program Files (x86)\Microsoft SQL Server\90\Shared\dbghelp.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\SqlDumper.exe
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\SqlDumper.exe
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\SqlDumper.exe
04/21/2006 11:32:51.959 Failed to read version information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\9.0.2047.0
C:\Program Files\Microsoft SQL Server\90\Shared\dbghelp.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\SqlDumper.exe
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\SqlDumper.exe
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\Program Files\Microsoft SQL Server\90\Shared\SqlDumper.exe
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.SqlServer.Rmo\9.0.242.0__89845dcd8080cc91\Microsoft.SqlServer.Rmo.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.AnalysisServices\9.0.242.0__89845dcd8080cc91\Microsoft.AnalysisServices.DLL
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.DataWarehouse.Interfaces\9.0.242.0__89845dcd8080cc91\Microsoft.DataWarehouse.Interfaces.DLL
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_64\Microsoft.SqlServer.BatchParser\9.0.242.0__89845dcd8080cc91\microsoft.sqlserver.batchparser.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_64\Microsoft.SqlServer.BatchParser\9.0.242.0__89845dcd8080cc91\microsoft.sqlserver.batchparser.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_64\Microsoft.SqlServer.BatchParser\9.0.242.0__89845dcd8080cc91\microsoft.sqlserver.batchparser.dll
04/21/2006 11:32:51.959 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.SqlServer.SqlEnum\9.0.242.0__89845dcd8080cc91\Microsoft.SqlServer.SqlEnum.dll
04/21/2006 11:32:51.975 Failed to read associated hotfix build information for the following file: C:\WINDOWS\assembly\GAC_MSIL\Microsoft.SqlServer.Smo\9.0.242.0__89845dcd8080cc91\Microsoft.SqlServer.Smo.dll
04/21/2006 11:32:51.975 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\SqlSAC.exe
04/21/2006 11:32:51.975 Failed to read associated hotfix build information for the following file: C:\Program Files (x86)\Microsoft SQL Server\90\Shared\Microsoft.SqlSac.Public.dll
04/21/2006 11:32:52.006 Attempting to install file: sqlrun_sql.msp
04/21/2006 11:32:52.022 Attempting to install file: \\my_server\d$\39e3f3124a1ef45cc9e9\HotFixSQL\Files\sqlrun_sql.msp
04/21/2006 11:32:52.022 Creating MSP install log file at: C:\WINDOWS\Hotfix\SQL9\Logs\SQL9_Hotfix_KB913090_sqlrun_sql.msp.log
04/21/2006 11:32:52.022 Successfully opened registry key: Software\Policies\Microsoft\Windows\Installer
04/21/2006 11:32:52.022 Failed to read registry key: Debug
04/21/2006 11:34:17.130 MSP returned 1603: A fatal error occurred during installation.
04/21/2006 11:34:17.146 Successfully opened registry key: Software\Policies\Microsoft\Windows\Installer
04/21/2006 11:34:17.146 Failed to read registry key: Debug
04/21/2006 11:34:17.146 Unable to install MSP file: \\my_server\d$\39e3f3124a1ef45cc9e9\HotFixSQL\Files\sqlrun_sql.msp
04/21/2006 11:34:17.146 The following exception occurred: Unable to install Windows Installer MSP file Date: 04/21/2006 11:34:17.146 File: \depot\sqlvault\setupmain\setup\sqlse\sqlsedll\copyengine.cpp Line: 856
04/21/2006 11:34:17.177
04/21/2006 11:34:17.177 Product Status Summary:
04/21/2006 11:34:17.177 Product: SQL Server Native Client (64-bit)
04/21/2006 11:34:17.177 SQL Server Native Client (64-bit) (RTM ) - Success
04/21/2006 11:34:17.177
04/21/2006 11:34:17.177 Product: Setup Support Files (64-bit)
04/21/2006 11:34:17.177 Setup Support Files (64-bit) (RTM ) - Success
04/21/2006 11:34:17.177
04/21/2006 11:34:17.177 Product: Database Services (64-bit)
04/21/2006 11:34:17.177 Database Services (64-bit) (SP1 2047 ENU) - Failure
04/21/2006 11:34:17.177 Details: Unable to install Windows Installer MSP file
04/21/2006 11:34:17.177 Analysis Services (64-bit) (SP1 2047 ENU) - Not Applied
04/21/2006 11:34:17.177 Reporting Services (64-bit) (SP1 2047 ENU) - Not Applied
04/21/2006 11:34:17.177
04/21/2006 11:34:17.177 Product: Notification Services (64-bit)
04/21/2006 11:34:17.177 Notification Services (64-bit) (SP1 2047 ENU) - Not Applied
04/21/2006 11:34:17.177
04/21/2006 11:34:17.177 Product: Integration Services (64-bit)
04/21/2006 11:34:17.177 Integration Services (64-bit) (SP1 2047 ENU) - Not Applied
04/21/2006 11:34:17.177
04/21/2006 11:34:17.177 Product: Client Components (64-bit)
04/21/2006 11:34:17.177 Client Components (64-bit) (SP1 2047 ENU) - Not Applied
04/21/2006 11:34:17.193
04/21/2006 11:34:17.193 Product: MSXML 6.0 Parser (64-bit)
04/21/2006 11:34:17.193 MSXML 6.0 Parser (64-bit) (RTM ) - Not Applied
04/21/2006 11:34:17.193
04/21/2006 11:34:17.193 Product: SQLXML4 (64-bit)
04/21/2006 11:34:17.193 SQLXML4 (64-bit) (RTM ) - Not Applied
04/21/2006 11:34:17.193
04/21/2006 11:34:17.193 Product: Backward Compatibility (64-bit)
04/21/2006 11:34:17.193 Backward Compatibility (64-bit) (RTM ) - Not Applied
04/21/2006 11:34:17.193
04/21/2006 11:34:17.193 Product: Microsoft SQL Server VSS Writer (64-bit)
04/21/2006 11:34:17.193 Microsoft SQL Server VSS Writer (64-bit) (RTM ) - Not Applied
04/21/2006 11:34:17.193


This has not caused any initial problems, as the database service will still start and everything appears ok.

...however, the second problem this have given me, is that the Integration Services service will not start (errors with a timeout). I'm having a number of maintenance jobs fails as a result of this.

Let me know what information you would like, and I'll be right back with it.

Cheers,

Darren

Just managed to pull this out of a log file:


Property(S): SqlUpgradeMessage = SQL Server Setup has encountered the following problem: [Microsoft][SQL Native Client][SQL Server]Cannot find the object 'dm_exec_query_resource_semaphores', because it does not exist or you do not have permission.. To continue, correct the problem, and then run SQL Server Setup again.
Property(S): UpgradeInstruction = Connect to SQL instance SRVHAM14 as sysadmin
Launch SQL statement USE master
Launch script file C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install\sysdbupg.sql
Launch script file C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install\DbEngine_hotfix_install.sql
Launch script file C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Install\repl_hotfix_install.sql
Stop service MSSQLSERVER
MSI (s) (20:A4) [13:56:22:544]: Product: Microsoft SQL Server 2005 (64-bit) - Update 'Service Pack 1 for SQL Server Database Services 2005 (64-bit) ENU (KB913090)' could not be installed. Error code 1603. Additional information is available in the log file C:\WINDOWS\Hotfix\SQL9\Logs\SQL9_Hotfix_KB913090_sqlrun_sql.msp.log.


"Cannot find the object 'dm_exec_query_resource_semaphores', because it does not exist or you do not have permission."

:/|||I haven't had a problem across a suite of x64 installs here at the bank. Disk space can be an issue as the SP install seems to require a lot. You can also run into problems if you have removed the security groups that SQL installs - there's another thread on this on this forum.|||Thanks for the reply. The file permissions haven't been touched, and disk space certainly isnt an issue (doesn't even come close to filling any partition).

I've dropped some more information into the bottom of this thread (guy seemed to be having the same problem as me)

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=318632&SiteID=1|||This is the third forum message I've seen with this message, so hopefully we can solve it quickly.

After you get the 'dm_exec_query_resource_semaphores' error and the installer cancels out, can you try to apply SP1 a second time? Does that attempt also fail with the same message?

Thanks,
Samuel Lester (MSFT)

|||Yes, and yes :)|||

Darren

Can you upload the first setup log file that failed with this error?

Thanks

Vishal

|||

We are having the same problem with Integration Services timing out after installing SP1, but we are running the 32-bit standard version.

I had to uninstall SQL 2005. I'm installing it again now. Should be done in about 6 hours.

|||

Hi

I had the same problem and found the solution in KB 918695

"The problem occurs because the master database file is not in the same location as the Resource database file for the instance of SQL Server 2005 on which you install SQL Server 2005 SP1. You may have previously moved the master database from its originally installed location. When you move the master database, you must make sure that the master and Resource database files are located in the same folder. If you only move the master database files, you experience this problem when you install SQL Server 2005 SP1. This problem occurs because the location of the master and Resource database files is inconsistent."

|||

Hello all...

Just to add my experience; in the process of setting up several servers, I encountered the same, however on one system, it was a clean installation and on the other, SQL had been installed/removed and re-installed (to support .NET 3.0).

Since I had the time and option and knew that the Master Database had not been moved, the corrective action is to:

a) Click Cancel on the database update locked message (the process will continue) - this lock message will occur on both the Database and again on Analysis Services

b) Let the entire process complete

c) Do not reboot - open Administrative Tools > Services and perform a Restart on the Microsoft SQL Server service

d) Rerun SP1

Regards,

David Sterling - Sterling International Consulting Group
www.sterling-consulting.com

sql