How to Enable/Disable Inline OVAL Evaluation in Risk Automation Suite

Article:HOWTO42230  |  Created: 2011-02-01  |  Updated: 2011-02-04  |  Article URL http://www.symantec.com/docs/HOWTO42230
Article Type
How To



There may be times where you will need to enable or disable SRAS' Inline OVAL evaluation process.  At present there is no such control in the WEB UI portal and this setting change must be made directly within the database.  The two options covered here involve connecting to the database via the MS SQL Server Management Studio.  This will require you to have adequate permissions to connect to and affect changes to the Gideon Database.

  To change the setting via direct table edit method...

Open SQL Studio and expand the Gideon database tables

Right-Click the adm_conf_settings table and select "Edit Top 200 Rows"

In the "setting_ID" (First Column) column, find "InlineOvalEvaluation"

Change the value in it's "setting_int" field to ("1" to enable or "0" to disable) Inline evaluation.

Done.

 

To do this programmatically you can execute the code included here from within SQL Management Studio

To Disable:

USE Gideon
UPDATE adm_conf_settings
SET setting_int =0 WHERE setting_ID = 'InlineOvalEvaluation'

 

To Enable:

USE Gideon
UPDATE adm_conf_settings
SET setting_int =1 WHERE setting_ID = 'InlineOvalEvaluation'



Article URL http://www.symantec.com/docs/HOWTO42230


Terms of use for this information are found in Legal Notices