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
k18-ntcs-web-argus-service/sqlupdate/sqlupdate(20170104实时统计修改)修改实时统计表.sql
zhangdongxu 13acafd43d 上传代码
2017-12-19 14:55:52 +08:00

36 lines
1.2 KiB
SQL
Raw 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.

--B库更改
--1. 修改DF_DESTIP_COUNTRY_REPORT增加界面私有标签列SERVICE。
-- Add/modify columns
alter table DF_DESTIP_COUNTRY_REPORT add SERVICE INTEGER not null;
-- Add comments to the columns
comment on column DF_DESTIP_COUNTRY_REPORT.SERVICE
is '界面私有标签界面菜单ID,值小于10000';
--2. 修改DF_SRCIP _DOMESTIC_REPORT增加界面私有标签列SERVICE。
-- Add/modify columns
alter table DF_SRCIP_DOMESTIC_REPORT add SERVICE INTEGER not null;
-- Add comments to the columns
comment on column DF_SRCIP_DOMESTIC_REPORT.SERVICE
is '界面私有标签界面菜单ID,值小于10000';
--3. 修改DF_TAG_REPORT,增加界面私有标签列SERVICE
-- Add/modify columns
alter table DF_TAG_REPORT add SERVICE INTEGER not null;
-- Add comments to the columns
comment on column DF_TAG_REPORT.SERVICE
is '界面私有标签界面菜单ID,值小于10000';
-- Add/modify columns
--4. 修改DJ_CK_STAT_LOG增加列active_sys列
alter table DJ_CK_STAT_LOG add ACTIVE_SYS INTEGER not null;
-- Add comments to the columns
comment on column DJ_CK_STAT_LOG.ACTIVE_SYS
is 'A版4 B版2 C版1';