SQL Queries - CAST Management Base - How to update C++ AU Settings from BackEnd

Purpose of Query

 This query will let you change the CPP analysis unit settings for "IDE used for this Analysis Unit" to "Not Specified and "STL Support" as "Cast emulation

Applicable CAST Version
Release
Yes/No
8.3.x (tick)
8.2.x (tick)
8.1.x (tick)
8.0.x (tick)
Applicable RDBMS


RDBMS
Yes/No
Oracle Server (tick)
Microsoft SQL Server (tick)
CSS2 (tick)


Query for CSS

To update the settings - 

update CMS_CPP_Analysis
 set DevEnv_Usage = 'DevEnvDefault',
 Stl_Usage = 'StlUsageCastEmulation';
Query result example

Query result interpretation

The below values will be updated.

Notes/comments

 If you would like to reset the values, you can run the below query on the MNGT schema- 


update CMS_CPP_Analysis
set DevEnv_Usage = null
Stl_Usage = null;

  

Related Pages