Enabling OLE Automation Procedures - PAS ICS Integrity - 7.3 - Help - Intergraph

ICS Integrity Help

Language
English
Product
PAS ICS Integrity
Subproduct
ICS
Search by Category
Help
PAS Version
7.3

The Topology asset model uses OLE automation procedures to process data so it can represent your network components and connections. A SQL Server system administrator needs to enable OLE automation procedures for the Integrity database.

To enable OLE automation procedures:

  1. Open SQL Server Management Studio on the Integrity database server.

  2. Run the following SQL Query on the Integrity database.

    EXEC sys.sp_configure @configname='show advanced options', @configvalue=1;
    RECONFIGURE;
    EXEC sys.sp_configure @configname='ole automation procedures', @configvalue=1;
    RECONFIGURE;
    EXEC sys.sp_configure @configname='show advanced options', @configvalue=0;
    RECONFIGURE;

  3. Close SQL Server Management Studio.