Search This Blog

Tuesday, December 27, 2016

Table 0 not found

Issue
DPC throws Cannot Find Table 0 when clicking on the Status Link.

Event Log
DataRequester - Microsoft OLE DB Provider for SQL Server Desc: SQL Server blocked access to STATEMENT 'OpenRowset/OpenDatasource' of component 'Ad Hoc Distributed Queries' because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of 'Ad Hoc Distributed Queries' by using sp_configure. For more information about enabling 'Ad Hoc Distributed Queries', see "Surface Area Configuration" in SQL Server Books Online. Cmd: p_UI_ISBATCHRUN

Solution
Run following SQL script against BPM Connect database:

/*************************************/
sp_configure 'show advanced options', 1; 
RECONFIGURE;
GO
sp_configure 'Ad Hoc Distributed Queries', 1; 
RECONFIGURE; 
GO
/*************************************/

Note:
This issue affects all versions of BPM Connect.

No comments:

Post a Comment