xinjiang/DataBase/CH_CheckItem_2022-02-24-001...

27 lines
1.0 KiB
Transact-SQL
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
2022年2月24日16:45:35
用户: sa
服务器: DESKTOP-8LU5B89
数据库: SGGLDB_TCC
应用程序:
*/
/* 为了防止任何可能出现的数据丢失问题,您应该先仔细检查此脚本,然后再在数据库设计器的上下文之外运行此脚本。*/
BEGIN TRANSACTION
SET QUOTED_IDENTIFIER ON
SET ARITHABORT ON
SET NUMERIC_ROUNDABORT OFF
SET CONCAT_NULL_YIELDS_NULL ON
SET ANSI_NULLS ON
SET ANSI_PADDING ON
SET ANSI_WARNINGS ON
COMMIT
BEGIN TRANSACTION
GO
ALTER TABLE dbo.CH_CheckItem ADD
Defects_Definition varchar(50) NULL
GO
ALTER TABLE dbo.CH_CheckItem SET (LOCK_ESCALATION = TABLE)
GO
COMMIT