/* 12 de outubro de 201817:08:22 User: BETRACE Server: DEVSERVER\SQLEVOLUTION Database: BeProd_PLAS 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 GO ALTER TABLE dbo.Mov_Interrupcoes ADD strObs varchar(200) NULL GO ALTER TABLE dbo.Mov_Interrupcoes SET (LOCK_ESCALATION = TABLE) GO COMMIT select Has_Perms_By_Name(N'dbo.Mov_Interrupcoes', 'Object', 'ALTER') as ALT_Per, Has_Perms_By_Name(N'dbo.Mov_Interrupcoes', 'Object', 'VIEW DEFINITION') as View_def_Per, Has_Perms_By_Name(N'dbo.Mov_Interrupcoes', 'Object', 'CONTROL') as Contr_Per