Prior to the release of IIQ 6.1, the description for any object was stored within the XML defining that object. It was possible to export the XML, edit the description, and then import the object to modify the description of an application, policy, etc.
With the release of IIQ 6.1, the description content is no longer stored in the XML object and is now managed in a separate database table called spt_localized_attribute. While SailPoint does not support customers manually editing the contents of the IdentityIQ system tables, this example is provided for informational purposes only.
Here is a sample SQL statement demonstrating the modification of the description for the 'AdminsApp' within the demo data:
insert into spt_localized_attribute (created, modified, owner, name, locale,
attribute, value, target_class, target_name, target_id, id)
values (1374495641912, '', '', 'AdminsApp : description : en_US', 'en_US',
'description', 'Here is a new description for the AdminsApp', 'Application', 'AdminsApp',
'ff8080813ecca887013eccca479b0523', 'ff80808140064daf014006531138000d')