This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.
/*
2013年11月5日9:41:24
用户: sa
服务器: DDLUCKYWORK-PC\MSSQLSERVER2008
数据库: ShippingWeb
应用程序:
*/
/* 为了防止任何可能出现的数据丢失问题,您应该先仔细检查此脚本,然后再在数据库设计器的上下文之外运行此脚本。*/
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
GO
ALTER TABLE dbo.Import_approval ADD
AppName varchar(50) NULL
ALTER TABLE dbo.Import_approval SET (LOCK_ESCALATION = TABLE)