Event Id17055
SourceMSSQL.
Description<error code>: <error description>
Event InformationCAUSE: This problem occurs because the Microsoft SQL stored procedure MOMGroomCoordinationReset points to the GroomLock table in the OnePoint database, but it does not point to the OnePoint database to access the table. As a result, the stored procedure tries to access the GroomLock table in the Master database instead of the OnePoint database.
WORKAROUND: To work around this problem, manually change the stored procedure to point to the OnePoint database. To do this, follow these steps:
Click Start, point to Programs, point to Microsoft SQL Server, and then click Query Analyzer.
Type:ALTER PROCEDURE MOMGroomCoordinationReset AS declare @ErrMsg varchar(255)

UPDATE OnePoint.[dbo].[GroomLock]
SET [isGrooming]= 0, [LastGroomStarted] = NULL

if @@error<>0 goto Err
return 0
Err:
SELECT @ErrMsg = @ErrMsg + --SQL Server error + convert( varchar(20), @@error ) + encountered in MOMGroomCoordinationReset
RAISERROR (@ErrMsg, 16, 1)
return 1
On the Query menu, click Execute.
Reference Links Event ID 17055 Event Message "Invalid object name "dbo.GroomLock" " When the Microsoft SQL Server Service Starts


  Did this information help you to resolve the problem?
  Yes: My problem was resolved.
  No: The information was not helpful / Partially helpful.
  Comments:

Captcha  Refresh