2016-04-25 26 views
0

我試圖運行報告,但它給這個消息:OLEDB提供商的架構版本的編譯時間和運行時間之間的表錯誤鏈接服務器報告的改變

An error has occurred during report processing. (rsProcessingAborted) 
Query execution failed for dataset 'ParamYear'. (rsErrorExecutingCommand) 
For more information about this error navigate to the report server on the local server machine, or enable remote errors 

我在Visual Studio中檢查,我得到這個錯誤:

OLEDB provider for linked server sql10 reported change of schema version between 
compile time("182424452472301") and run time ("182454520418731") 
for table dbo.stud 

查詢:

SELECT DISTINCT Funding_Type 
FROM   Destinations_1415_1516_Union 
WHERE  (Year IN (@Year)) AND (AgeBand IN (@AgeBand)) AND (Completion_Status IN (2, 3)) 

請讓我知道如何RESOLV e此

回答

0

我只是在ssms中運行dbcc freeproccache命令並重新運行報告。現在正常工作....

相關問題