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

7 lines
295 B
MySQL
Raw Normal View History

2017-12-19 14:55:52 +08:00
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异常';