SEARCH
    GO
 
 
 
Nigel's Blog
Photo Albums
File Archie
Technical Notes
Rachel's Workshop
My Threads
About Nigel
FreeTalk
 
  Nigel's Blog
 
Nigel's Blog
 

 

20110819[Can't Find proc_UpdateStatisticsNVP Error]

Posted by on Friday, August 19, 2011 (PST)

Share Point Server;SBS 2011;SQL

I got this annoying error:

 

Log Name:      Application
Source:        Microsoft-SharePoint Products-SharePoint Foundation
Date:          8/19/2011 12:00:16 AM
Event ID:      5586
Task Category: Database
Level:         Error
Keywords:     
User:          TSLAN\spfarm
Computer:      TS-PDC.tslan.local
Description:
Unknown SQL Exception 2812 occurred. Additional error information from SQL Server is included below.

Could not find stored procedure 'proc_UpdateStatisticsNVP'.

 

It turns out proc_UpdateStatisticsNVP was missing from some of SharePoint databases. To access SharePoint database on the local machine as in SBS 2011 server. You can try to connect as .\SharePoint. You might need to enable administrator which is disabled by default in SBS2011.

After you have connected to it, you can use this very useful script which I found from http://blog.ray1.net/2011/07/could-not-find-stored-procedure.html.

 

exec sp_msforeachdb 'if exists(select name from [?].sys.objects where type = ''P'' and name like ''%proc_UpdateStatistics%'') AND not exists(select name from [?].sys.objects where type = ''P'' and name like ''%proc_UpdateStatisticsNVP%'') select ''?'''

 

You will find the databases which misses the proc_UpdateStatisticsNVP storeprocedure then you can use the script below to find an existing proc_UpdateStatisticsNVP and recreate the store procedure in those database with missing proc_UpdateStatisticsNVP.

 

exec sp_msforeachdb 'if exists(select name from [?].sys.objects where type = ''P'' and name like ''%proc_UpdateStatisticsNVP%'') select ''?'''


 

Add Your Comment

 
 
 
New Photos 
 

 

  • 20120313(Jessie's Birthday)
    20120313;201203;2012;

  • 20120313(Jessie's Birthday)
    20120313;201203;2012;

  • 20120313(Jessie's Birthday)
    20120313;201203;2012;

  •  
     

     

     

    Most Popular Photos
     

     

  • 20060802(Hooters)
    Hooters, Taipei, Taiwan

  • 20060708(Sun-Moon Lake)
    Sun-Moon Lake, Taichung, Taiwan

  • 20060802(Hooters)
    Hooters, Taipei, Taiwan

  •  
     
     
    System Administrator: Nigel H. Lin
    IIS7.0 SBS2011