RE: The stored procedure smGetNextNoteIndex retured the following result : DBMS : 2812, Dynamics dic : 0
Hi Govind
Search SQL Error 2812 on the web gives:
Error 2812
Severity Level 16
Message Text
Could not find stored procedure '%.*ls'.
technet.microsoft.com/.../aa258751%28v=sql.80%29.aspx;MSPPError=-2147217396
Looking at the source for smGetNextNoteIndex in the system database, it only contains an update statement on the SY01500 table in a transaction.
So... I suspect you have a trigger on the SY01500 table which is attempting to call a non-existent stored procedure.
Using SQL Server Management Studio, find the SY01500 table in System database and expand it and look under Triggers.
There are no triggers for that table by default. So if you have any, right click on them and disable them.
If the error goes away, you have identified the cause. You will then need to contact whoever added the triggers and get them to fix their code.
David
PS: The reason I think it is this situation is because the error is returned by smGetNextNoteIndex which is different to not finding smGetNextNoteIndex. But do check if smGetNextNoteIndex is there under Programmability >> Stored Procedures. If it is missing run DBMaintenance.exe in the GP Application folder to fix.