Please enter search query.
Search <book_title>...
Important Update: Cohesity Products Documentation
All Cohesity product documentation are now managed via the Cohesity Docs Portal: https://docs.cohesity.com/HomePage/Content/home.htm. Some documentation available here may not reflect the latest information or may no longer be accessible.
APTARE IT Analytics 安装和升级指南 (Linux)
Last Published:
2022-09-02
Product(s):
APTARE IT Analytics (10.6)
重命名重复属性的步骤
登录到门户服务器。
在命令行:
su - aptare
在命令行,启动 sqlplus:
sqlplus <username>/<pwd>@//localhost:1521/scdb
示例:sqlplus portal/portal@//localhost:1521/scdb
要重命名属性,请执行以下 SQL 语句,使用升级消息中列出的值替代 <variables>:
UPDATE apt_attribute SET attribute_name = <attributeName> WHERE attribute_id = <AttributeID>; Commit;
示例:
此示例重命名 Location 属性,以便其不与名为 Location 的系统属性相合并。
UPDATE apt_attribute SET attribute_name = 'Location1' WHERE attribute_id = 100001; Commit;