I've just restored a client database here and discovered that they had AutoClose set ... so I thought I'd set up a set of Best-of-Breed settings which I can use after a RESTORE.Could anyone pass comment on any of these that they disagree with pleaseALTER DATABASE MyDatabaseSET -- State Options READ_WRITE, MULTI_USER, -- Cursor Options CURSOR_CLOSE_ON_COMMIT OFF, CURSOR_DEFAULT GLOBAL, -- Auto Options AUTO_CLOSE OFF, AUTO_CREATE_STATISTICS ON, AUTO_UPDATE_STATISTICS ON, AUTO_SHRINK OFF, -- SQL Options ANSI_NULL_DEFAULT OFF, ANSI_NULLS OFF, ANSI_PADDING ON, ANSI_WARNINGS OFF, ARITHABORT ON, CONCAT_NULL_YIELDS_NULL OFF, NUMERIC_ROUNDABORT OFF, QUOTED_IDENTIFIER ON, RECURSIVE_TRIGGERS OFF, -- Recovery Option RECOVERY FULL, TORN_PAGE_DETECTION ON
ThanksKristen