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(20161117)services_request_log修改字段.sql
zhangdongxu 13acafd43d 上传代码
2017-12-19 14:55:52 +08:00

7 lines
295 B
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.

alter table services_request_log drop column EXCEPTION_INFO;
-- Add/modify columns
alter table SERVICES_REQUEST_LOG add EXCEPTION_INFO clob;
-- Add comments to the columns
comment on column SERVICES_REQUEST_LOG.EXCEPTION_INFO
is '请求时发生的异常记录不记录rest异常';