Ransomware attackers specifically target and attempt to destroy backup systems to increase the probability of payment. Hardening your system is critical. Please ensure you have reviewed your platform security using the Security Hardening Checklist
Cohesity

COHESITY Documentation

Explore our documentation to get started, discover products & new features, access troubleshooting guides, register sources, platforms support.

Products
Data Security Alliance
Visit Cohesity.com
Demos
Support
Blogs
Developers
Partner Portals
Cohesity Community
© 2026 Cohesity, Inc. All Rights Reserved.
Terms of Use|
Privacy Policy|
Legal|
  1. Home
  2. IT Analytics Help
  3. Section XVI. System Administration
  4. Attribute Management
  5. Rename attributes before upgrading

Rename attributes before upgrading

Beginning with Release Version 10, all attributes are multi-object attributes--that is, a single attribute is defined and that attribute, with its values, can be used for multiple object types. For example, prior to Release Version 10, you could have a Location attribute for a host and a separate Location attribute for an array. During the upgrade, a system attribute named Location is added to the database and this single attribute can be used for multiple object types--in this example, it would be used for both hosts and arrays.

During the Portal upgrade, if the names of existing attributes match the name of a system attribute introduced with the upgrade, you may want to rename existing attributes so that their values do not get merged into a single attribute. Renaming of attributes, before the upgrade is completed, must be performed using SQL at the command line.

Note:

After you rename an attribute, any report templates that used these attributes must be updated via the Portal SQL Template Designer.

To rename existing attributes so that their values do not get merged into a single attribute, take the following steps.

  1. Log in to the Portal server.

  2. At the command line:

    su - aptare
  3. At the command line, launch sqlplus:

    sqlplus <pwd>/<pwd>@//localhost:1521/scdb>
    • Example: sqlplus portal/portal@//localhost:1521/scdb

  4. At the command line, execute the following at the SQL prompt:

    UPDATE apt_attribute
    SET attribute_name - '<NewAttributeName>'
    WHERE attribute_id = <ExistingAttributeID>;
    Commit;
    

    Where <NewAttributeName> is the new name you supply and <ExistingAttributeID> is the ID listed during the Portal upgrade process.

Feedback

Was this page helpful?
Previous

Attribute naming rules

Next

Load host attributes and values

Feedback

Was this page helpful?