Files
2026-04-17 14:55:32 -04:00

27 lines
1.2 KiB
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.
/*
Wednesday, September 15, 20211:56:55 PM
User:
Server: FAJITA\DEV_SQL
Database: DataPRO
Application:
*/
/* To prevent any potential data loss issues, you should review this script in detail before running it outside the context of the database designer.*/
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
ALTER TABLE dbo.DAS ADD
MaxAAFRate decimal(18, 0) NULL
ALTER TABLE dbo.DAS SET (LOCK_ESCALATION = TABLE)
COMMIT