This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nms-nmsweb/sql/sqlupdate(20140515-20140515).sql
2018-09-27 16:21:05 +08:00

7 lines
716 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--设置监测告警时,增加指定标识字段
alter table data_police_relation add marker VARCHAR2(1024);
comment on column data_police_relation.marker is '设置告警时指定多个标识符如多个盘符、多个CPU、多个网卡如硬盘使用率所有盘存在一个盘使用率超过告警值则告警all所有盘总的使用率超过告警值则告警指定多个盘符指定盘存在一个盘使用率超过告警值则告警';
--过滤标识对应的字段
alter table data_police_relation add MARKER_FILED_ID NUMBER;
comment on column data_police_relation.MARKER_FILED_ID is '设置告警时过滤标识marker对应的字段在metadata表中的id。';